* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #2c1810;
  background: linear-gradient(135deg, #fff8dc 0%, #f5deb3 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Pages */
.page {
  display: none;
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.page.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: absolute;
    left: 0;
    top: 10px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
    text-align: center;
    font-size: 1.1rem;
  }

  nav a:hover,
  nav a.active {
    background: rgba(139, 69, 19, 0.3);
    transform: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .cart-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .checkout-form,
  .order-summary {
    grid-column: 1 / -1;
  }

  #checkout > div {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .cart-icon {
    position: absolute !important;
    right: 0;
    top: 12px;
  }

  .saree-icon {
    top: 7px !important;
    left: 40px !important;
  }
  .dress-icon {
    left: 53px !important;
  }
  .fabric-icon {
    top: 15px !important;
    left: 48px !important;
  }
  .fabric-text {
    margin-left: 20px !important;
  }
  .saree-text {
    margin-left: 10px !important;
  }
  .dress-text {
    margin-left: 23px !important;
  }
}

.empty-cart {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
  border: 2px solid #daa520;
}

.empty-cart-icon {
  font-size: 4rem;
  color: #daa520;
  margin-bottom: 1rem;
}
