/* ===== Base ===== */
* { 
  margin: 0; padding: 0; box-sizing: border-box; 
}
body { 
   font-family: 'Poppins', sans-serif;
   color: #3b2f2f; /* warmer dark text */
   scroll-behavior: smooth; 
   background: #fff; 
  }

a { 
  text-decoration: none; 
  color: inherit; 
}
img { 
  width: 100%; display: block;
 }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #faf0f4;
  border-bottom: 2px solid #e4b980; /* soft gold underline */
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
   /* height: 80px;fixed height to align same everywhere */
 /* soft gold underline  border-bottom: 2px solid #e4b980; */

}

/* ===== Natural Wave Effect on Text Color ===== */
.wave-text {
    display: flex !important ;
    align-items: center;
    gap: 15px;  
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    /* Responsive font size that scales with viewport width */
   /* font-size: clamp(1.8rem, 4vw, 2.5rem); */
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
    text-align: center;
    /* Gradient with multiple shades to mimic waves */
    background: linear-gradient(
  90deg,
  #f6d365 0%,
  #fda085 25%,
  #f6d365 50%,
  #fda085 75%,
  #f6d365 100%
);
    background-size: 200% 100%; /* twice as wide for smooth horizontal flow */
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* Animate gradient horizontally only */
    animation: wave-color 4s linear infinite;
  }
  
  @keyframes wave-color {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
  }
  
.nav-logo-title-img{
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 4px;
}

/* ===== Desktop Navbar ===== */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
nav a:hover { color: #666; }

/* ===== Hero ===== */
.hero {
  background: url('../images/banner.webp') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; text-align: center;
  position: relative;
  margin-top: 0;

}
.hero::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem;
}
.hero h1 { font-size: 2.5rem;font-weight: 500; margin-bottom: 1rem; font-family: 'Playfair Display', serif;}

 
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, #d16ba5, #c777b9, #ba83ca);
  color: #fff; border-radius: 30px; transition: 0.3s;
  margin-top: 10px;
}
.btn:hover { transform: scale(1.05); }



/* ===== Product Section ===== */
.section { 
  margin: 0rem auto;
  padding: 0 0.3rem; 
  background: #fff8f9;
  }

.section h2 { 
  text-align: center; 
  font-family: 'Playfair Display', serif; 
  font-weight: 600;
 /* matches gradient tone  color: #c777b9; */
  color: #d2a74a;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 1px;
}
.collection1-header{
  margin-bottom: 1rem; 
  padding-top: 1rem;
}
.collection-icon {
  background:#fff8f9;
  width: 40px;
  height: 35px;
  object-fit: contain;
  animation: gentle-bounce 3s ease-in-out infinite;
}

.products { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;     /* centers the entire grid */
  justify-items: center;       /* centers each card */
  align-items: start;          /* aligns top edges */
  padding: 0.5rem;
  margin: 0 auto;
  max-width: 1200px;           /* keeps grid neat on large screens */
  box-sizing: border-box;

}

.product {
  width: 100%;
  max-width: min(100%, 300px);  /* responsive upper limit */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(3deg) rotateY(-2deg); }
}

.product:hover { transform: translateY(-5px);  }

.image-container { 
  position: relative;
  width: 100%;
  aspect-ratio: 3/4; /* keeps it square */
  max-height: 300px;   /* 👈 limits image size */
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
 }

.image-container img { 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills space nicely */
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.image-container .img2 { opacity: 0; }

.product:hover .img1 { opacity: 0; }
.product:hover .img2 { opacity: 1; transform: scale(1.08); }

.product-info { 
  text-align: center;
  padding: 1rem; 
  background-color: #fff0f5;
}
.product-info h3 { font-size: 1rem; margin-bottom: 0.5rem; }

.product-info p { 
  color: #5c4b51; /* warmer gray tone */
  /* font-size: 0.8rem; */
  font-size: 11px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Product Info - Price */
.product-info .price {
    margin: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
  }
  .product-info .original-price {
    text-decoration: line-through;
    color: #999;
  }
  .product-info .offered-price {
    font-weight: bold;
    color: #d16ba5;
 /* highlight color for offer */
  }
  
  /* Order Button */
  .product-info .order-btn {
    display: inline-block;
    margin-top: 0rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(90deg, #d16ba5, #c777b9, #ba83ca);
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
    font-size: 12px !important;
    white-space: nowrap;
    
  }

  .product-info .order-btn:hover {
    transform: scale(1.05);
  }

 /* ===== insta reels ===== */

 #insta-reels {
  background: #fff8f9;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
 
}

.insta-title {
  font-family: "Poppins", sans-serif;
  color: #c777b9; /* matches gradient tone */
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.insta-scroll {
  display: flex;
  gap: 30px;
  transform: translateX(0);
  transition: transform 1s ease-in-out;
  padding: 5px;
  animation: scroll-left 50s linear infinite; /* repeats smoothly forever */

}

/* Wrapper adds left-right padding */
.insta-scroll-wrapper {
  margin: 0 auto;
  padding: 10px 0;  /* less top-bottom padding so whole fits in view */
  overflow: hidden;
  width: 90%;
}
.instagram-media {
  width: 250px !important;   /* adjust to your liking: 220–280px works well */
  height: 450px !important;  /* keeps consistent small video boxes */
  margin: 0 !important;      /* remove excess space Instagram adds */
  border-radius: 10px;       /* optional: soft corners for elegance */
  overflow: hidden;
}
/* Animation starts only when .start-scroll is added by JS */
.insta-scroll.start-scroll {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mobile view — disable auto-scroll */
@media (max-width: 768px) {
  .insta-scroll-wrapper {
    width: 95%;
    padding: 10px 0;
  }

  .insta-scroll {
    flex-direction: row;          /* keep horizontal */
    gap: 15px;                    /* smaller spacing */
    animation: scroll-left 45s linear infinite; /* scroll a bit faster */
  }

  .instagram-media {
    width: 180px !important;      /* smaller boxes fit mobile screen */
    height: 320px !important;
  }
 
}



/* ===== Footer ===== background: #f1f1f1; text-align: center; color: #666;  */
footer { 
    padding: 1.5rem;
    background: #faf0f4;
    color: #555;
    text-align: center; 
    
}

/* ===== Bottom Nav (Mobile) ===== */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0;
  width: 100%; background: #fff;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  z-index: 2000;
  justify-content: space-around;
  padding: 0.4rem 0;
  
}
.bottom-nav a {
  display: flex; 
  flex-direction: column; 
  align-items: center;
  font-size: 0.8rem; 
  color: #555;
}

.nav-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-bottom: 4px;
}

.bottom-nav a .icon { font-size: 1.2rem; }

@media (max-width: 768px) {
  nav ul 
  { display: none;}
  .bottom-nav 
  { display: flex; }
  .nav-container {
    justify-content: center;
  }
 
}

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


header .wave-text {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  vertical-align: middle;
}


/* ===== WWL Section Container ===== */
.WWL-section {
  background: #fff8f9; /* soft blush */
  padding: 1rem 1rem 1rem;
  text-align: center;
}

/* ===== Title Area ===== */
.WWL-header, .collection1-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.WWL-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: gentle-bounce 3s ease-in-out infinite;
}

.WWL-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #d2a74a;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #e4b980, #f6d365);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* Gentle animation for the gift icon */
@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}


/* ===== Wrapped With Love (WWL) Category Grid Section ===== */
.WWL-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: #fff8f9; /* soft blush tone */
  justify-items: center;
}

/* Each WWL Card */
.WWL-category-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  max-width: 260px;
  width: 100%;
}

.WWL-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  border-radius: 1rem;
}

/* Hover effect (zoom + soft lift) */
.WWL-category-card:hover img {
  transform: scale(1.08);
}

.WWL-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Optional overlay label (visible on hover only) */
.WWL-category-card::after {
  content: attr(data-name);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.8rem 0;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.WWL-category-card:hover::after {
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .WWL-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .WWL-category-card {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .WWL-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .WWL-category-card {
    max-width: 100%;
    border-radius: 0.8rem;
  }

  .WWL-category-card::after {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

.section-divider {
  border: 0;
  height: 1px;
  background-color: #d0e8d0;
  margin: 10px auto;
  width: 100%;
}

.trans{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* Container alignment */
.offer-banner {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 0;
  
}

.offer-banner p {
  color: #c0392b; /* goldenrod */
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  animation: blink 3s infinite ease-in-out;
  padding-top: 1%;
}

/* Smooth blink effect */
@keyframes blink {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.2; }
}

.off, .offproductpage{
  background-color: #fff8f9; /* very light blush */;
  min-height: clamp(1.2rem, 2.5vw, 1.8rem); /* responsive height */
}


/* 📱 Mobile layout spacing fixes */
@media (max-width: 480px) {

  .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;  /* smaller gap */
    padding: 0.2rem;
  }

  .product-info {
    padding: 0.5rem !important;
      display: flex;
      flex-direction: column;
  }

  .image-container {
    max-height: 220px !important;
  }

  .product {
    animation: none !important;   /* remove floating animation */
  }
}


/* in footer policy */
.container2{
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 10px;
}
.container2 p a {
  color: #555; 
  text-decoration: none;
}


.policy-page {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

.policy-page h1 {
  font-size: 2rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

.policy-page h2 {
  color: #555;
  margin-top: 2rem;
  font-size: 1.4rem;
  border-bottom: 1px solid #c8e6c9;
  padding-bottom: 0.3rem;
}

.policy-page ul,
.policy-page ol {
  margin-left: 1.2rem;
}

.offer-label {
  margin-top: 4px;
margin-bottom: 0.5rem;
min-height: 18px;   /* 👈 IMPORTANT */
  
}
.offer-label p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c0392b;
  margin: 0;
  animation: textBlink 1.6s infinite;

}

@keyframes textBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ===== Product Card Link Wrapper ===== */
.product-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
