body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #333;
}

.cart-badge, .wishlist-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #8B0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.cart-icon, .wishlist-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header {
    background-color: #8B0000;
    color: white;
    padding: 1rem 0 0 0;
    font-family: 'Montserrat', sans-serif;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.logo img {
    height: 50px;
}

.search-bar {
    flex: 1;
    max-width: 700px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 0.15rem 0.75rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.2rem;
    font-size: 0.7rem;
    background: transparent;
    color: #333;
    text-align: center;
    align-items: center;
}

.search-button {
    background: none;
    border: none;
    color: #8B0000;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-actions a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.header-actions a:hover {
    opacity: 1;
}

.main-nav {
    background-color: #8B0000;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    padding: 0.5rem 0;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
}

.membership-container {
  max-width: 600px;
  margin: 3rem auto;
  background: white;
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.membership-container h1 {
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: #8B0000;
}

.membership-container p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: #555;
}

.membership-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.membership-form input[type="text"],
.membership-form input[type="email"],
.membership-form input[type="tel"],
.membership-form input[type="number"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.dob-inputs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dob-inputs input {
  flex: 1;
}

.register-button {
  background-color: #8B0000;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-button:hover {
  background-color: #6a0000;
}
