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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #3B2A23;
  background: linear-gradient(135deg, #F5EFE6 0%, #E8D5C4 50%, #F0E6D8 100%);
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(200, 169, 126, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(59, 42, 35, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C8A97E 0%, #B8956A 50%, #A67C52 100%);
  color: #3B2A23;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(200, 169, 126, 0.4), 0 0 0 1px rgba(200, 169, 126, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(200, 169, 126, 0.5), 0 0 0 2px rgba(200, 169, 126, 0.4);
}

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

/* Header */
.header {
  background: rgba(59, 42, 35, 0.95);
  backdrop-filter: blur(10px);
  color: #F5EFE6;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

.header .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Desktop Header Layout */
@media (min-width: 769px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav-container {
    display: none;
  }
}

/* Header Top - Logo and Hamburger */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-icon-mobile {
  display: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-icon-mobile a {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #C8A97E;
  color: #3B2A23;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  display: none;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F5EFE6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 80px;
  max-width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Mobile Navigation Container */
.mobile-nav-container {
  display: none; /* Hidden by default on desktop */
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

/* Hide horizontal navigation by default (desktop) */
.nav-list.horizontal {
  display: none;
}

.nav-list a {
  color: #F5EFE6;
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C8A97E;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.cta {
  margin-left: 30px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #F5EFE6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .header .container {
    gap: 10px;
  }

  /* Show mobile navigation container on mobile */
  .mobile-nav-container {
    display: block;
  }

  /* Hide regular navigation on mobile */
  .nav-list:not(.horizontal):not(.full) {
    display: none;
  }

  /* Horizontal navigation bar for key items */
  .nav-list.horizontal {
    display: flex;
    position: static;
    width: 100%;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-list.horizontal::-webkit-scrollbar {
    display: none;
  }

  .nav-list.horizontal a {
    font-size: 0.85rem;
    white-space: nowrap;
    padding: 8px 4px;
  }

  .nav-list.horizontal a[aria-label="Shopping Cart"] svg {
    width: 18px;
    height: 18px;
  }

  /* Full navigation menu for hamburger */
  .nav-list.full {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(59, 42, 35, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    gap: 40px;
    overflow-x: visible;
  }

  .nav-list.full.active {
    left: 0;
    display: flex;
  }

  .nav-list.full li {
    display: block !important;
  }

  .nav-list.full a {
    font-size: 1.2rem;
    padding: 10px;
  }

  .hamburger {
    display: flex;
    margin-left: 10px;
  }

  .cart-icon-mobile {
    display: block;
  }

  .cta {
    display: none;
  }

  .header-top {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-right {
    gap: 5px;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    max-height: 50px;
    max-width: 150px;
  }

  .nav {
    display: block;
  }

  .nav-list.full {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 80px 0;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .collection-card {
    margin-bottom: 20px;
  }

  .collection-content {
    padding: 20px;
  }

  .collection-content h2 {
    font-size: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .product-card {
    margin-bottom: 0;
  }

  .product-card h3 {
    font-size: 1rem;
    padding: 15px 15px 8px;
  }

  .product-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
  }

  .product-card img {
    height: 180px;
  }

  .product-actions {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    align-items: center;
  }

  .product-actions .btn {
    padding: 4px 8px;
    font-size: 0.6rem;
    width: 60%;
    min-width: unset;
  }

  .product-actions .add-to-cart {
    order: -1;
  }
}

/* Hero */
.hero {
  background: linear-gradient(rgba(200, 169, 126, 0.4), rgba(200, 169, 126, 0.4)), url('../threeladies.PNG') center top / contain repeat-y;
  color: #F5EFE6;
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(1px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 6px 12px rgba(0,0,0,0.9);
  font-weight: 900;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
  opacity: 0.8;
}

h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Collections */
.collections-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.collection-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(59, 42, 35, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 169, 126, 0.15);
  position: relative;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A, #A67C52);
  z-index: 1;
}

.collection-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59, 42, 35, 0.15), 0 10px 25px rgba(200, 169, 126, 0.1);
}

.collection-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.1);
}

.collection-content {
  padding: 30px;
  text-align: center;
}

.collection-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #3B2A23;
  font-weight: 600;
  position: relative;
}

.collection-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
}

.collection-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.collection-btn {
  margin-top: 20px;
  font-size: 1rem;
  padding: 14px 30px;
}

/* Product Grid */
.product-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card, .service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(59, 42, 35, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(200, 169, 126, 0.15);
}


.product-card:hover::after {
  opacity: 0.9;
  transform: scale(1);
}

.product-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 42, 35, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3, .service-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  color: #3B2A23;
}

.product-card p {
  padding: 0 20px 20px;
  font-weight: 500;
  color: #C8A97E;
  font-size: 1.1rem;
}

/* Services */
.service-card {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #F9F6F0 100%);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

/* Booking Form */
.booking {
  background: linear-gradient(135deg, #F9F6F0 0%, #E8D5C4 100%);
  padding: 80px 0;
}

#booking-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(59, 42, 35, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #3B2A23;
  font-size: 1rem;
}

input, select, textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #E8D5C4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #FAF8F5;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #C8A97E;
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

#form-message {
  margin-top: 25px;
  text-align: center;
  font-weight: 500;
  padding: 15px;
  border-radius: 10px;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #FAF8F5 0%, #F0E6D8 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(200,169,126,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  pointer-events: none;
  z-index: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info, .location {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(59, 42, 35, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.contact-info h2, .location h2 {
  text-align: left;
  margin-bottom: 25px;
  color: #3B2A23;
  position: relative;
}

.contact-info h2::after, .location h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}

.contact-info strong {
  color: #3B2A23;
}

.contact-info a {
  color: #C8A97E;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #B8956A;
}

.location p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #666;
}

.map-placeholder {
  background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B5 100%);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 2px dashed rgba(200, 169, 126, 0.3);
  color: #888;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '📍';
  font-size: 3rem;
  margin-bottom: 10px;
}

/* WhatsApp Channel Section */
.whatsapp-channel-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #25D366 0%, #20B954 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-channel-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.whatsapp-channel-btn {
  background: white;
  color: #25D366;
  border: 2px solid white;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.whatsapp-channel-btn:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-channel-btn-footer {
  background: linear-gradient(135deg, #25D366 0%, #20B954 100%);
  color: white;
  border: 2px solid #25D366;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.whatsapp-channel-btn-footer:hover {
  background: linear-gradient(135deg, #20B954 0%, #128C7E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3B2A23 0%, #2A1F1A 100%);
  color: #F5EFE6;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A, #C8A97E);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #C8A97E;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 169, 126, 0.2);
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.8);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: gentlePulse 3s infinite ease-in-out;
}

.whatsapp-float a {
  display: block;
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #25D366 0%, #20B954 50%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.whatsapp-float a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.whatsapp-float a:hover::before {
  left: 100%;
}

.whatsapp-float a:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7), 0 0 0 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.whatsapp-float a:hover svg {
  transform: scale(1.1);
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-3px);
  }
}

/* Cart */
.cart-items {
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(59, 42, 35, 0.1);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.cart-item-details p {
  color: #666;
  margin-bottom: 5px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #C8A97E;
  background: #fff;
  color: #C8A97E;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #C8A97E;
  color: #fff;
}

.quantity {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.cart-summary {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(59, 42, 35, 0.1);
  text-align: center;
}

.cart-summary h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Checkout */
.checkout {
  background: linear-gradient(135deg, #FAF8F5 0%, #F0E6D8 50%, #E8D5C4 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.checkout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(200, 169, 126, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59, 42, 35, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.checkout-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.checkout-form {
  background: linear-gradient(135deg, #fff 0%, #FAF8F5 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(59, 42, 35, 0.12), 0 5px 15px rgba(200, 169, 126, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.15);
  position: relative;
  overflow: hidden;
}

.checkout-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A, #A67C52);
  border-radius: 20px 20px 0 0;
}

.checkout-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #3B2A23;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.checkout-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
}

.order-summary {
  background: linear-gradient(135deg, #fff 0%, #FAF8F5 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(59, 42, 35, 0.12), 0 5px 15px rgba(200, 169, 126, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.15);
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.order-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A, #A67C52);
  border-radius: 20px 20px 0 0;
}

.order-summary h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #3B2A23;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.order-summary h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
}

.order-summary h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

#order-items {
  margin-bottom: 25px;
}

#order-items div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 169, 126, 0.2);
  font-size: 1rem;
  color: #555;
}

#order-items div:last-child {
  border-bottom: none;
}

.order-total {
  border-top: 2px solid #C8A97E;
  padding-top: 25px;
  margin-top: 25px;
  text-align: center;
}

.order-total h3 {
  font-size: 1.6rem;
  color: #3B2A23;
  font-weight: 700;
  margin: 0;
}

.checkout-form .btn {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 30px;
  background: linear-gradient(135deg, #C8A97E 0%, #B8956A 50%, #A67C52 100%);
  border: none;
  border-radius: 30px;
  color: #3B2A23;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
  position: relative;
  overflow: hidden;
}

.checkout-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 169, 126, 0.5);
}

.checkout-form .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.checkout-form .btn:hover::before {
  left: 100%;
}

#checkout-message {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.product-actions .btn {
  flex: 0 0 auto;
  padding: 10px 15px;
  font-size: 0.9rem;
  min-width: 100px;
}

/* Product Detail */
.product-detail {
  background: linear-gradient(135deg, #FAF8F5 0%, #F0E6D8 50%, #E8D5C4 100%);
  position: relative;
  overflow: hidden;
}

.product-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(200, 169, 126, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(59, 42, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.product-image {
  text-align: center;
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.1), rgba(184, 147, 102, 0.1));
  border-radius: 25px;
  z-index: -1;
}

.product-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(59, 42, 35, 0.15), 0 5px 15px rgba(200, 169, 126, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.product-image img:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 20px 50px rgba(59, 42, 35, 0.2), 0 8px 20px rgba(200, 169, 126, 0.15);
}

.product-info {
  padding-left: 20px;
}

.product-info h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #3B2A23;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  position: relative;
}

.product-info h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C8A97E, #B8956A);
  border-radius: 2px;
}

.product-price {
  font-size: 1.8rem;
  color: #C8A97E;
  font-weight: 700;
  margin-bottom: 25px;
  display: inline-block;
  background: rgba(200, 169, 126, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.product-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.product-detail-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.product-detail-actions .btn {
  flex: 1;
  min-width: 160px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.product-detail-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.product-detail-actions .btn:hover::before {
  left: 100%;
}

.product-detail-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 169, 126, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whatsapp-channel-section {
    margin-top: 30px;
    padding: 20px;
  }

  .whatsapp-channel-section h2 {
    font-size: 1.5rem;
  }

  .whatsapp-channel-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .product-card {
    margin-bottom: 0;
  }

  .product-card h3 {
    font-size: 1rem;
    padding: 15px 15px 8px;
  }

  .product-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
  }

  .product-card img {
    height: 180px;
  }

  /* Ensure collections grid shows 2 columns on mobile */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .collection-card {
    margin-bottom: 15px;
  }

  .collection-content {
    padding: 15px;
  }

  .collection-content h2 {
    font-size: 1.2rem;
  }

  .collection-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .collection-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}