@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
        margin: 0;
        padding: 0;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 8%;
    background: rgba(245, 237, 230, 0.85); /* Soft Cream White with transparency */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(138, 91, 73, 0.08); /* Deep Mocha Brown shadow */
    transition: all 0.45s ease;
  }
  
  header.sticky {
    padding: 15px 8%;
    background: rgba(245, 237, 230, 0.95);
    box-shadow: 0 4px 20px rgba(138, 91, 73, 0.15); /* Deeper shadow when sticky */
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
  }
  
  .logo span {
    background: linear-gradient(to right, #8A5B49, #D9A6A0); /* Deep Mocha to Terracotta Rose gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }
  
  .logo span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #D9A6A0, #E8D5C4); /* Terracotta Rose to Champagne Beige */
    transform: scaleX(0.7);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  
  .navlist {
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .navlist li {
    list-style-type: none;
    margin: 0 20px;
    position: relative;
  }
  
  .navlist a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8A5B49; /* Deep Mocha Brown */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    transition: all 0.4s ease;
  }
  
  .navlist a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D9A6A0; /* Terracotta Rose */
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  
  .navlist a:hover {
    color: #D9A6A0; /* Terracotta Rose */
  }
  
  .navlist a:hover::before {
    visibility: visible;
    transform: scaleX(1);
  }
  
  .navlist a.active {
    color: #D9A6A0; /* Terracotta Rose */
  }
  
  .navlist a.active::before {
    visibility: visible;
    transform: scaleX(1);
    background-color: #D9A6A0; /* Terracotta Rose */
  }
  
  #menu-icon {
    font-size: 35px;
    color: #8A5B49; /* Deep Mocha Brown */
    cursor: pointer;
    z-index: 10001;
    display: none;
    transition: all 0.3s ease;
  }
  
  #menu-icon:hover {
    color: #D9A6A0; /* Terracotta Rose */
    transform: rotate(90deg);
  }
  
  /* Responsive Styles */
  @media (max-width: 1280px) {
    header {
      padding: 18px 4%;
    }
  }
  
  @media (max-width: 1090px) {
    #menu-icon {
      display: block;
      margin-left: 20px;
    }
    
    .navlist {
      position: absolute;
      top: -600px;
      right: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      background: rgba(245, 237, 230, 0.98); /* Soft Cream White */
      text-align: center;
      transition: all .45s ease;
      box-shadow: 0 8px 15px rgba(138, 91, 73, 0.1);
    }
    
    .navlist.open {
      top: 100%;
    }
    
    .navlist li {
      margin: 15px 0;
      padding: 10px 0;
      border-bottom: 1px solid rgba(138, 91, 73, 0.1); /* Deep Mocha Brown */
    }
    
    .navlist li:last-child {
      border-bottom: none;
    }
    
    .navlist a {
      font-size: 18px;
    }
    
    .navlist a::before {
      bottom: -2px;
    }
  }
  
  @media (max-width: 750px) {
    .logo {
      font-size: 24px;
    }
  }
  
  @media (max-width: 480px) {
    header {
      padding: 14px 3%;
    }
    
    .logo {
      font-size: 22px;
    }
  }
  
  /* Animation for logo on page load */
  @keyframes fadeInLogo {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .logo {
    animation: fadeInLogo 1s ease forwards;
  }
  
  /* Animation for nav items on page load */
  @keyframes fadeInNav {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navlist li {
    opacity: 0;
    animation: fadeInNav 0.5s ease forwards;
  }
  
  .navlist li:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .navlist li:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .navlist li:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .navlist li:nth-child(4) {
    animation-delay: 0.8s;
  }
  
  .navlist li:nth-child(5) {
    animation-delay: 1s;
  }
  
  /* Subtle hover effect for the entire header */
  header:hover {
    background: rgba(245, 237, 230, 0.92);
  }

  .hero-section {
  position: relative;
  height: 100vh; /* Will be modified to have a max-height on smaller screens */
  max-height: 800px; /* Added maximum height to prevent excessive tallness */
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3a1d1f; /* Rich burgundy background */
  z-index: 1;
  padding-top: 80px; /* Add padding for navbar - adjust to match your navbar height */
}

/* Crochet Pattern Background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15px 15px, transparent 12px, rgba(231, 201, 177, 0.1) 12px, rgba(231, 201, 177, 0.1) 15px, transparent 15px),
    radial-gradient(circle at 45px 45px, transparent 12px, rgba(212, 163, 137, 0.1) 12px, rgba(212, 163, 137, 0.1) 15px, transparent 15px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  z-index: 1;
}

/* Floating Yarns Animation */
.floating-yarns {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.floating-yarns img {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  transform-origin: center center;
  width: 140px; /* Base size */
  height: 140px;
  object-fit: cover;
  border: 4px solid rgba(231, 201, 177, 0.7);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 5; /* Ensure yarn is above most elements but below hero content */
  animation: rotateYarn 20s linear infinite; /* Added rotation animation */
}

@keyframes rotateYarn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-yarns img:hover {
  transform: scale(1.1) rotate(0deg); /* Stop rotation on hover for better UX */
  border-color: #d4a389;
  filter: brightness(1.1) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Trail effect for yarn images */
.yarn-trail {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(231, 201, 177, 0.8) 0%, rgba(212, 163, 137, 0.4) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeTrail 1.2s ease-out forwards;
}

@keyframes fadeTrail {
  0% { transform: scale(0.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0; }
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 550px;
  z-index: 10; /* Higher z-index to ensure it's above yarns */
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  margin-bottom: 1rem;
  color: #815846; /* Deep Mocha Brown */
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: #d4a389; /* Terracotta Rose */
  letter-spacing: 1px;
  font-weight: 400;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e7c9b1, transparent);
  bottom: 110px;
  left: 10%;
}

.shop-now-button {
  display: inline-block;
  padding: 14px 45px;
  background-color: #d4a389; /* Terracotta Rose */
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(212, 163, 137, 0.4);
}

.shop-now-button::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: 0.5s;
}

.shop-now-button:hover {
  background-color: #c2917a; /* Darker Terracotta */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 163, 137, 0.5);
}

.shop-now-button:hover::before {
  left: 100%;
}

.shop-now-button:active {
  transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .floating-yarns img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    max-height: 700px; /* Reduced max height for smaller screens */
  }
  
  .floating-yarns img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto; /* Allow content to determine height */
    min-height: 600px; /* But still ensure minimum visibility */
    max-height: 650px; /* Prevent excessive height */
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 2.5rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .shop-now-button {
    padding: 12px 35px;
    font-size: 0.9rem;
  }
  
  .floating-yarns img {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 550px;
    max-height: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .floating-yarns img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 500px;
    max-height: 550px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .hero-content {
    padding: 1.5rem;
    max-width: 88%;
    animation: float 4s ease-in-out infinite; /* Reduced animation for smaller screens */
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content::before {
    bottom: 80px; /* Adjust line position for smaller content */
  }
  
  .floating-yarns img {
    width: 80px;  /* Reduced size for mobile */
    height: 80px; /* Reduced size for mobile */
    border-width: 3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }
  
  .shop-now-button {
    padding: 10px 30px;
    font-size: 0.85rem;
  }
  
  /* Ensure all yarns are visible on mobile */
  .visible-mobile-yarns {
    z-index: 10 !important; /* Higher z-index to ensure visibility */
    opacity: 0.85 !important; /* Slightly transparent */
  }
}

/* Special handling for very small screens */
@media (max-width: 380px) {
  .hero-section {
    min-height: 450px;
    max-height: 500px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .hero-content {
    padding: 1.25rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .floating-yarns img {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
}

  /* About Section Styling */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #f1e6de 100%);
    position: relative;
    overflow: hidden;
  }
  
  .about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4b7aa' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 0 30px;
  }
  
  .about-image {
    flex: 1;
    position: relative;
    margin-right: 60px;
  }
  
  .about-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid #d4a389;
    z-index: -1;
  }
  
  .about-image::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70%;
    height: 70%;
    background-color: #e8d3c7;
    z-index: -2;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(94, 64, 55, 0.15);
    transition: all 0.5s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.02);
  }
  
  .about-content {
    flex: 1;
    padding: 20px 0;
    position: relative;
  }
  
  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #674d42;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .about-content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4a389, #edd2c3);
  }
  
  .about-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #bc8575;
    margin: 30px 0 15px;
    font-weight: 500;
  }
  
  .about-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5e4037;
    margin-bottom: 25px;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-container {
      flex-direction: column;
    }
    
    .about-image {
      margin-right: 0;
      margin-bottom: 60px;
      height: 500px;
    }
    
    .about-content h2 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 80px 0;
    }
    
    .about-image {
      height: 400px;
    }
    
    .about-content h2 {
      font-size: 2.5rem;
    }
    
    .about-content h3 {
      font-size: 1.5rem;
    }
    
    .about-content p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-section {
      padding: 60px 0;
    }
    
    .about-container {
      padding: 0 20px;
    }
    
    .about-image {
      height: 350px;
    }
    
    .about-image::before,
    .about-image::after {
      display: none;
    }
    
    .about-content h2 {
      font-size: 2rem;
    }
    
    .about-content h3 {
      font-size: 1.3rem;
    }
    
    .about-content p {
      font-size: 1rem;
    }
  }

  /* Luxury Crochet Collections Section Styling */
.collections-section {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #f8f4f0, #f5ede7);
  font-family: 'Cormorant Garamond', serif;
}

.collections-section h2 {
  font-size: 3.5rem;
  color: #5e4433; /* Deep Mocha Brown */
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
}

.collections-section h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #c7937a; /* Terracotta Rose */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.collections-section > p {
  font-size: 1.2rem;
  color: #ad8c7b; /* Soft Terracotta */
  text-align: center;
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-filters button {
  background: transparent;
  border: 1px solid #d4b9a9; /* Champagne Beige */
  color: #8d6e5d; /* Muted Mocha */
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.category-filters button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #c7937a; /* Terracotta Rose */
  transition: all 0.3s ease;
  z-index: -1;
}

.category-filters button:hover {
  color: #fff;
  border-color: #c7937a; /* Terracotta Rose */
}

.category-filters button:hover::before {
  width: 100%;
}

.category-filters button.active {
  background-color: #c7937a; /* Terracotta Rose */
  color: #fff;
  border-color: #c7937a; /* Terracotta Rose */
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

/* Product Card */
.product-card {
  position: relative;
  background-color: #faf6f3; /* Soft Cream White */
  box-shadow: 0 10px 30px rgba(107, 82, 61, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0; /* Start invisible for animation */
  transform: translateY(40px); /* Start below for animation */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(107, 82, 61, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 130%; /* Maintain aspect ratio */
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.product-info {
  padding: 1.8rem 1.5rem;
  background: rgba(250, 246, 243, 0.95); /* Soft Cream White with opacity */
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-card:hover .product-info {
  background: rgba(255, 252, 250, 0.98);
}

.product-info h3 {
  font-size: 1.2rem;
  color: #5e4433; /* Deep Mocha Brown */
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.product-info h3::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #c7937a; /* Terracotta Rose */
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.product-card:hover .product-info h3::after {
  width: 60%;
}

.product-info p {
  color: #ad8c7b; /* Soft Terracotta */
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* Product Tags */
.tag {
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: #c7937a; /* Terracotta Rose */
  color: white;
  font-size: 0.7rem;
  padding: 0.4rem 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
}

.tag.best-seller {
  background-color: #c7937a; /* Terracotta Rose */
}

.tag.limited {
  background-color: #5e4433; /* Deep Mocha Brown */
}

/* Hover effect with overlay */
.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(94, 68, 51, 0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

/* "View Details" button that appears on hover */
.product-image::before {
  content: 'View Details';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5e1d5; /* Dusty Blush Pink */
  color: #5e4433; /* Deep Mocha Brown */
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  z-index: 4;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
}

.product-card:hover .product-image::before {
  bottom: 20px;
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collections-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .collections-section {
    padding: 3rem 1.5rem;
  }
  
  .collections-section h2 {
    font-size: 2.5rem;
  }
  
  .category-filters button {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .collections-section h2 {
    font-size: 2.2rem;
  }
  
  .collections-section > p {
    font-size: 1rem;
  }
  
  .category-filters {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  
  .category-filters button {
    width: 80%;
    max-width: 200px;
  }
}

  /* Luxurious Client Gallery - "Crochet Babes in Real Life" */

/* Gallery Section Styling */
.client-gallery {
  padding: 5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #FAF3E0; /* Soft Cream White */
  position: relative;
  overflow: hidden;
}

.client-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(to right, #E9BE9F 0%, #D4A28A 50%, #9A6B55 100%); /* Champagne to Terracotta to Mocha */
  z-index: 2;
}

/* Section Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #704632; /* Deep Mocha Brown */
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #D4A28A; /* Terracotta Rose */
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 25px rgba(112, 70, 50, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  height: 400px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(112, 70, 50, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

/* Caption Styling */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(112, 70, 50, 0.8) 0%, rgba(112, 70, 50, 0) 100%);
  color: #FAF3E0; /* Soft Cream White */
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  font-weight: 500;
  letter-spacing: 1px;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Call to Action */
.gallery-cta {
  text-align: center;
  padding: 2rem;
  background-color: #F9EAD3; /* Lighter Champagne Beige */
  border-radius: 8px;
  margin-top: 2rem;
}

.gallery-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #704632; /* Deep Mocha Brown */
  margin-bottom: 0;
}

.gallery-cta a {
  color: #D4857B; /* Dusty Blush Pink */
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.gallery-cta a:hover {
  color: #9A6B55; /* Darker Mocha */
}

.gallery-cta a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D4857B; /* Dusty Blush Pink */
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.gallery-cta a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Featured Badge - Special styling for featured images */
.gallery-item.featured::before {
  content: 'Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #D4857B; /* Dusty Blush Pink */
  color: #FAF3E0; /* Soft Cream White */
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  border-radius: 20px;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(212, 133, 123, 0.3);
}

/* Zoom View Styling */
.zoom-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(112, 70, 50, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.zoom-view.active {
  opacity: 1;
  pointer-events: all;
}

.zoom-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.zoom-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.zoom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: #FAF3E0; /* Soft Cream White */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #704632; /* Deep Mocha Brown */
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background-color: #D4857B; /* Dusty Blush Pink */
  color: #FAF3E0; /* Soft Cream White */
  transform: rotate(90deg);
}

.zoom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: rgba(112, 70, 50, 0.8);
  color: #FAF3E0; /* Soft Cream White */
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .gallery-item {
    height: 380px;
  }
}

@media screen and (max-width: 992px) {
  .client-gallery {
    padding: 4rem 2rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .client-gallery {
    padding: 3rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .gallery-item {
    height: 320px;
  }
}

@media screen and (max-width: 576px) {
  .client-gallery {
    padding: 2.5rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  
  .gallery-item {
    height: 400px;
  }
  
  .caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for Gallery Items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Staggered animation delay for gallery items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-item:nth-child(15) { animation-delay: 1.5s; }

/* ===== INSPIRATION SECTION ===== */
.inspiration-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EBE0 50%, #FAF7F2 100%);
  position: relative;
  overflow: hidden;
}

.inspiration-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 165, 140, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 20s ease-in-out infinite;
}

.inspiration-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 190, 183, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 25s ease-in-out infinite reverse;
}

.inspiration-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  color: #5C4033;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.inspiration-section > p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  color: #8B6F5C;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Gallery Grid */
.inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 60px;
}

/* Individual Card */
.inspo-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(92, 64, 51, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FAF7F2;
}

.inspo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(218, 165, 140, 0.3) 0%, rgba(223, 190, 183, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.inspo-card:hover::before {
  opacity: 1;
}

.inspo-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(92, 64, 51, 0.25);
}

.inspo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.inspo-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(92, 64, 51, 0.95) 0%, rgba(92, 64, 51, 0.7) 50%, transparent 100%);
  padding: 40px 25px 30px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.inspo-card:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: #FAF7F2;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #DFBEB7;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.inspo-card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section */
.inspiration-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.inspiration-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, #DAA58C 0%, #DFBEB7 100%);
  color: #FAF7F2;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(218, 165, 140, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.inspiration-cta .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C89078 0%, #D4ADA7 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.inspiration-cta .btn:hover::before {
  opacity: 1;
}

.inspiration-cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(218, 165, 140, 0.5);
}

.inspiration-cta .btn i {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.inspiration-cta .btn:hover i {
  animation: pulse 0.6s ease-in-out;
}

/* Animations */
@keyframes floatBlob {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inspiration-section {
    padding: 80px 5%;
  }

  .inspiration-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .inspo-card {
    border-radius: 15px;
  }

  .overlay {
    padding: 30px 20px 25px;
  }

  .inspiration-cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .inspiration-section {
    padding: 60px 4%;
  }

  .inspiration-section > p {
    margin-bottom: 50px;
  }

  .inspiration-gallery {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .inspo-card:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

/* High-res screens */
@media (min-width: 1600px) {
  .inspiration-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Luxurious Testimonial Section Styling */

/* Main Section Styling */
.testimonials {
  padding: 100px 5%;
  background-color: #f9f3ec; /* Soft Cream White */
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(225, 193, 162, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(204, 143, 118, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  color: #6b4226; /* Deep Mocha Brown */
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #e1c1a2, #cc8f76); /* Champagne Beige to Terracotta Rose */
}

/* Testimonial List Layout */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual Testimonial Card */
.testimonial {
  background-color: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(107, 66, 38, 0.08);
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(225, 193, 162, 0.2); /* Champagne Beige (transparent) */
  line-height: 1;
  z-index: 0;
}

.testimonial::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #e1c1a2, #cc8f76, #e4b4b7); /* Champagne Beige to Terracotta Rose to Dusty Blush */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(107, 66, 38, 0.12);
}

.testimonial:hover::after {
  transform: scaleX(1);
}

/* Testimonial Text */
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a3526; /* Softer Mocha */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 500;
}

/* Client Name Styling */
.testimonial h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #cc8f76; /* Terracotta Rose */
  letter-spacing: 1px;
  margin: 0;
  text-align: right;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 4%;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .testimonial-list {
    gap: 20px;
  }
  
  .testimonial {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 50px 5%;
  }
  
  .testimonials h2 {
    font-size: 1.8rem;
  }
  
  .testimonial p {
    font-size: 1.1rem;
  }
  
  .testimonial::before {
    font-size: 60px;
    top: 15px;
    left: 15px;
  }
}

  /* Custom Orders Section Styling */
.custom-orders-section {
    background: linear-gradient(135deg, #f7f3eb 0%, #f8efe8 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 35px rgba(139, 98, 84, 0.08);
    max-width: 800px;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
  }
  
  .custom-orders-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #d4a389 0%, #c87f64 50%, #92604a 100%);
  }
  
  .custom-orders-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: #92604a; /* Deep Mocha Brown */
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .custom-orders-section .slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #d4a389; /* Terracotta Rose */
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  }
  
  .custom-orders-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #8a7268; /* Softer Mocha */
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .custom-order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group:nth-child(5),
  .form-group:nth-child(6),
  .form-group:nth-child(7),
  .form-group:last-child {
    grid-column: span 2;
  }
  
  .custom-order-form label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #92604a; /* Deep Mocha Brown */
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
  }
  
  .custom-order-form input,
  .custom-order-form select,
  .custom-order-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e6dad3; /* Light Beige */
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6d4d42; /* Deeper Mocha */
    transition: all 0.3s ease;
  }
  
  .custom-order-form input:focus,
  .custom-order-form select:focus,
  .custom-order-form textarea:focus {
    outline: none;
    border-color: #d4a389; /* Terracotta Rose */
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(212, 163, 137, 0.15);
  }
  
  .custom-order-form input::placeholder,
  .custom-order-form textarea::placeholder {
    color: #cbb8b2; /* Muted Dusty Rose */
    font-style: italic;
  }
  
  .custom-order-form input[type="file"] {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }
  
  .custom-order-form input[type="file"]::file-selector-button {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 16px;
    margin-right: 20px;
    border: none;
    border-radius: 8px;
    background-color: #f0e6e2; /* Soft Cream White */
    color: #92604a; /* Deep Mocha Brown */
    transition: all 0.2s ease;
    cursor: pointer;
  }
  
  .custom-order-form input[type="file"]::file-selector-button:hover {
    background-color: #e3d5cf; /* Slightly Darker Cream */
  }
  
  .custom-order-form button {
    grid-column: span 2;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #d9b3a3 0%, #c87f64 100%); /* Blend of Dusty Blush to Terracotta */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(200, 127, 100, 0.25);
    width: auto;
    max-width: 320px;
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
  }
  
  .custom-order-form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      rgba(255, 255, 255, 0) 0%, 
      rgba(255, 255, 255, 0.2) 50%, 
      rgba(255, 255, 255, 0) 100%);
    transition: all 0.5s ease;
  }
  
  .custom-order-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 127, 100, 0.3);
    background: linear-gradient(135deg, #c87f64 0%, #b86e53 100%); /* Deeper Terracotta */
  }
  
  .custom-order-form button:hover::before {
    left: 100%;
  }
  
  .form-group.success input,
  .form-group.success select,
  .form-group.success textarea {
    border-color: #a2c5a9;
  }
  
  .form-group.error input,
  .form-group.error select,
  .form-group.error textarea {
    border-color: #e8a49a;
  }
  
  .error-message {
    color: #c87f64;
    font-size: 12px;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .form-group.error .error-message {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* File upload styling enhancement */
  .file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
  }
  
  .file-upload-text {
    font-size: 12px;
    color: #b09a90;
    margin-top: 8px;
    display: block;
  }
  
  /* Submission feedback */
  .submission-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 5px solid #d4a389;
    max-width: 400px;
  }
  
  .submission-feedback.active {
    opacity: 1;
    visibility: visible;
  }
  
  .submission-feedback h3 {
    color: #92604a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .submission-feedback p {
    color: #8a7268;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
  }
  
  .submission-feedback button {
    background-color: #d9b3a3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .submission-feedback button:hover {
    background-color: #c87f64;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Loading indicator */
  .loading-indicator {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    margin: 15px auto;
  }
  
  .loading-indicator:before {
    content: '';
    width: 50px;
    height: 5px;
    background: rgba(146, 96, 74, 0.1);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 50%;
    animation: shadow 0.5s linear infinite;
  }
  
  .loading-indicator:after {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(#d9b3a3, #c87f64);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: jump 0.5s linear infinite;
  }
  
  @keyframes jump {
    15% {
      border-radius: 50% 50% 25% 25%;
      transform: translateY(10px);
    }
    30% {
      border-radius: 50% 50% 20% 20%;
      transform: translateY(15px);
    }
    50% {
      border-radius: 50% 50% 15% 15%;
      transform: translateY(25px);
    }
    75% {
      border-radius: 50% 50% 35% 35%;
      transform: translateY(15px);
    }
    100% {
      border-radius: 50%;
      transform: translateY(0);
    }
  }
  
  @keyframes shadow {
    0%, 100% {
      transform: scale(1);
      opacity: 0.3;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.1;
    }
  }
  
  /* Responsiveness */
  @media screen and (max-width: 768px) {
    .custom-orders-section {
      padding: 40px 25px;
      margin: 40px auto;
    }
    
    .custom-orders-section h2 {
      font-size: 34px;
    }
    
    .custom-order-form {
      grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5),
    .form-group:nth-child(6),
    .form-group:nth-child(7),
    .form-group:last-child {
      grid-column: span 1;
    }
    
    .custom-order-form button {
      width: 100%;
      max-width: none;
    }
  }
  
  @media screen and (max-width: 480px) {
    .custom-orders-section {
      padding: 30px 20px;
      border-radius: 15px;
    }
    
    .custom-orders-section h2 {
      font-size: 30px;
    }
    
    .custom-orders-section .slogan {
      font-size: 14px;
    }
    
    .custom-order-form input,
    .custom-order-form select,
    .custom-order-form textarea {
      padding: 12px 15px;
    }
  }

  /* Luxurious Contact Section Styling */

.contact-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #f2e6df 100%);
    padding: 5rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(156, 104, 80, 0.08);
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
  }
  
  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e8c5b6 0%, #c89f94 50%, #8c5e58 100%);
  }
  
  .contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #63413a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }
  
  .contact-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d9b3a3;
    transition: width 0.4s ease;
  }
  
  .contact-section h2:hover::after {
    width: 100%;
  }
  
  .contact-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #8c5e58;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 80%;
  }
  
  .contact-section p strong {
    color: #63413a;
    font-weight: 600;
  }
  
  .social-icons {
    margin-top: 3rem;
    position: relative;
  }
  
  .social-icons h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #63413a;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .social-icons a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 179, 163, 0.15);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
  }
  
  .social-icons a:hover {
    transform: translateY(-5px);
  }
  
  .social-icons a:hover::before {
    transform: scale(1.6);
  }
  
  .social-icons img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
  }
  
  
  /* Custom Floating Effect */
  .social-icons a:nth-child(2) {
    animation: float 6s ease-in-out infinite;
  }
  
  .social-icons a:nth-child(3) {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
  }
  
  .social-icons a:nth-child(4) {
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Contact Form Animation */
  .contact-section {
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .contact-section {
      padding: 4rem 2rem;
    }
    
    .contact-section h2 {
      font-size: 2.8rem;
    }
    
    .contact-section p {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .contact-section {
      padding: 3rem 1.5rem;
      border-radius: 0.8rem;
    }
    
    .contact-section h2 {
      font-size: 2.5rem;
    }
    
    .social-icons a {
      margin-right: 1.2rem;
    }
  }
  
  @media (max-width: 576px) {
    .contact-section {
      padding: 2.5rem 1.2rem;
      margin: 2rem auto;
    }
    
    .contact-section h2 {
      font-size: 2.2rem;
    }
    
    .contact-section p {
      font-size: 1rem;
    }
    
    .social-icons h3 {
      font-size: 1.2rem;
    }
    
    .social-icons a {
      margin-right: 1rem;
    }
    
    .social-icons img {
      width: 28px;
      height: 28px;
    }
  }

  /* Footer Styling */
.site-footer {
  background: linear-gradient(135deg, #f5e6d8 0%, #e8d0c8 100%);
  padding: 1.5rem 1.5rem; /* Reduced from 3rem to 1.5rem top/bottom padding */
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 15px rgba(138, 106, 94, 0.1);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c98b7d, #8b5a4c, #c98b7d);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem; /* Reduced from 1.5rem to 0.75rem */
  position: relative;
}

/* Brand & Slogan */
.brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; /* Reduced from 2rem to 1.6rem */
  margin-bottom: 0.25rem; /* Reduced from 0.5rem to 0.25rem */
  color: #6e4c41;
  font-weight: 600;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
}

.slogan {
  font-style: italic;
  color: #c98b7d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; /* Reduced from 1.2rem to 1rem */
  margin-bottom: 0.75rem; /* Reduced from 1.5rem to 0.75rem */
  letter-spacing: 0.5px;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 1rem; /* Reduced from 1.25rem to 1rem */
  margin: 0.75rem 0; /* Reduced from 1.5rem to 0.75rem */
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; /* Reduced from 45px to 38px */
  height: 38px; /* Reduced from 45px to 38px */
  border-radius: 50%;
  background: #f5e6d8;
  color: #c98b7d;
  font-size: 1.25rem; /* Reduced from 1.5rem to 1.25rem */
  transition: all 0.3s ease;
  border: 2px solid rgba(201, 139, 125, 0.3);
  box-shadow: 0 3px 10px rgba(110, 76, 65, 0.1);
}

.social-links a:hover {
  transform: translateY(-5px);
  background: #c98b7d;
  color: #f5e6d8;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(201, 139, 125, 0.4);
}

/* Developer Contact */
.developer-contact {
  margin-top: 0.5rem; /* Reduced from 1rem to 0.5rem */
  font-size: 0.85rem; /* Reduced from 0.9rem to 0.85rem */
  color: #8b5a4c;
}

.developer-contact a {
  color: #c98b7d;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.developer-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c98b7d;
  transition: width 0.3s ease;
}

.developer-contact a:hover {
  color: #8b5a4c;
}

.developer-contact a:hover::after {
  width: 100%;
}

/* Copyright */
.copyright {
  margin-top: 0.5rem; /* Reduced from 1rem to 0.5rem */
  font-size: 0.85rem; /* Reduced from 0.9rem to 0.85rem */
  color: #8b5a4c;
  opacity: 0.8;
  font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    gap: 0.75rem; /* Reduced from 1.5rem to 0.75rem */
  }
  
  .site-footer {
    padding: 1.25rem 1rem; /* Reduced from 2.5rem to 1.25rem */
  }
  
  .brand h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem to 1.5rem */
  }
  
  .slogan {
    font-size: 0.95rem; /* Reduced from 1.1rem to 0.95rem */
  }
}

/* Subtle Animation */
@keyframes softPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}