/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Dosis', sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  background-color: #fffaf5;
  color: #ffffff;
  overflow-x: hidden;
}



/* Header Base */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #5F0042;
  padding: 0.3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.logo {
  height: 48px;
  border-radius: 6px;
}

header h2 {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin: 0;
}

/* Hamburger */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* Nav Menu */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#nav-menu a,
.dropbtn {
  color: #fff;
  text-decoration: none;
  font-family: 'donate', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
}

#nav-menu a:hover,
.dropbtn:hover {
  color: #f0c4e4;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5F0042;
  top: 100%;
  left: 0;
  border-radius: 6px;
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.dropdown-content a {
  display: block;
  padding: 0.7rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background-color: #7a0a6b;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #nav-menu {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 60px;
    right: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 2rem 1.5rem;
    z-index: 999;
  }

  #nav-menu.open {
    transform: translateX(0);
  }

  #nav-menu a,
  .dropbtn {
    color: #5F0042;
    font-family: 'donate', sans-serif;
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
  }

  .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    color: #5F0042;
    padding: 0.5rem 1rem;
  }

  .dropdown-content a:hover {
    background-color: #e8d5e1;
    color: #7a0a6b;
    border-radius: 8px;
  }
}

/* Hide Looksyy.in title on small screens */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Cart Button: Hidden by default */
.mobile-cart-btn {
  display: none;
  font-size: 1.8rem;
  margin-left: auto;
  padding: 0.5rem;
  text-decoration: none;
  color: #2d001f;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-cart-btn {
    display: block;
  }
}
/* Collection Dropdown (Hidden by Default on Mobile) */
.dropdown-content {
  display: none;
  flex-direction: column;
}

.dropdown-content.show {
  display: flex;
}



/* === PROMO MARQUEE === */
.promo-marquee {
  background: #e91e63;
  color: white;
  padding: 0.5rem;
  overflow: hidden;
  position: relative;
}
.promo-marquee-inner {
  display: flex;
  white-space: nowrap;
}
.marquee-track {
  animation: scrollText 30s linear infinite;
  display: flex;
}
.marquee-text {
  margin-right: 5rem;
  font-size: 1rem;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-content button {
  padding: 0.75rem 2rem;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.hero-content button:hover {
  background-color: #d81b60;
}

/* Countdown Section */
#countdown-container {
  background: #fff3f8;
  padding: 2rem;
  text-align: center;
}
#countdown-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #880e4f;
}
.time-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.time-box {
  background: white;
  border: 2px solid #f8bbd0;
  border-radius: 8px;
  padding: 1rem;
  min-width: 70px;
}
.time-box .digit {
  font-size: 2rem;
  color: #c2185b;
  font-weight: bold;
}
.time-box label {
  font-size: 0.8rem;
  color: #555;
}




/* === COUNTDOWN TIMER === */
.flip-countdown {
  background: #fff0f5;
  text-align: center;
  padding: 2rem 1rem;
}
.flip-countdown h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.time-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.time-box {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 70px;
}
.time-box .digit {
  font-size: 2rem;
  color: #e91e63;
}
.time-box label {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* === CAROUSEL === */
.carousel {
  padding: 2rem 1rem;
  background: #fff;
}
.carousel h2 {
  text-align: center;
  color: #5F0042;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
}
.slide {
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.slide:hover {
  transform: scale(1.05);
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
}
.ribbon {
  position: absolute;
  top: 8px;
  left: 75px;
  background: #e91e63;
  color: white;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 4px;
}

/* === FEATURED COLLECTION (Fixed Grid Layout) === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* default: mobile 2 columns */
  gap: 1.5rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr); /* desktop: 4 columns */
  }
}


.products h2 {
  text-align: center;
  color: #5F0042;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-card h3{
  color: rgb(167, 39, 139)
}

.product-card {
  display: none;
  padding: 0.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card.visible {
  display: block;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.product-info {
  padding: 0.8rem 1rem;
  text-align: center;
}

.product-info h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}



.product-info p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

/* === Show More Button === */
.show-more-btn {
  margin: 1.5rem auto;
  display: block;
  background: #e91e63;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.show-more-btn:hover {
  background: #c2185b;
}


/* === SHOP NOW BUTTON === */
.shop-now-btn {
  display: block;
  margin: 2rem auto;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  background: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* === OUTRO === */
.outro {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff0f5;
}
.outro a {
  font-size: 1.2rem;
  color: #e91e63;
  text-decoration: none;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .carousel-container {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
}



/* Price Block Styling */
.price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.price-block .mrp-price {
  font-size: 1rem;
  color: #979696;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-block .offer-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #8f0064;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

a {
text-decoration: none;
}

.stock {
color: #5F0042; /* plum for stock text */
margin-bottom: 1rem;
}



/* 🔥 BADGE STYLES */

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.badge.new { background-color: #6a0dad; }
.badge.sale { background-color: #e91e63; }
.badge.discount { background-color: #ff9800; }
.badge.low-stock { background-color: #ff5722; }
.badge.sold { background-color: #9e9e9e; }

.product-card.sold-out img {
  filter: grayscale(90%) brightness(0.7);
}
.product-card.sold-out {
  opacity: 0.8;
}

/* ======================
   🛍️ Shop Filter Section
========================= */
.shop-filter {
  padding: 2rem;
  text-align: center;
}

.filters button {
  background-color: #4d004d;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.filters button:hover {
  background-color: #cc00cc;
}

/* ======================
   🏷️ Ribbon Tag
========================= */
.ribbon {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #ff3399;
  color: white;
  padding: 0.3rem 3.2rem;
  transform: rotate(45deg);
  font-size: 0.6rem;
  font-weight: bold;
  z-index: 10;
  text-align: center;
  box-shadow: 0 0 8px rgba(255, 51, 153, 0.4);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  pointer-events: none;
}

.slide {
  position: relative;
}

/* ======================
   🧱 Product Section
========================= */
.products {
  padding: 2rem;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
/* ======================
   🧾 Product Card
========================= */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  display: none;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  border: 1px solid #f2f2f2;
  padding: 0.6rem 0.5rem; /* 🆕 Compact spacing */
}

.product-card.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* 💡 Product Image */
.product-img-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.product-img.hover-img {
  opacity: 0;
}

.product-img-container:hover .default-img {
  opacity: 0;
  transform: scale(1.05);
}

.product-img-container:hover .hover-img {
  opacity: 1;
  transform: scale(1.05);
}


/* 🏷️ Product Title */
.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.6rem 0 0.3rem;
  line-height: 1.2;
}

/* 💰 Price Section */
.price-block {
  padding: 0.2rem 0.3rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #444;
}

.price-block .mrp-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.3rem;
  font-size: 0.75rem;
}

.price-block .offer-price {
  color: #d00060;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-block .stock {
  display: block;
  margin-top: 3px;
  font-size: 0.7rem;
  color: #28a745;
}

/* 📱 Responsive Design for Mobile */
@media (max-width: 600px) {
  .products {
    padding: 1rem;
  }

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

  .product-card {
    padding: 0.4rem 0.3rem;
    font-size: 0.75rem;
    transform: scale(0.9);
  }

  .product-card h3 {
    font-size: 0.85rem;
    margin: 0.4rem 0 0.2rem;
  }

  .product-img-container {
    aspect-ratio: 3 / 4;
  }

  .price-block {
    padding: 0.2rem 0.2rem;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .price-block .mrp-price {
    font-size: 0.65rem;
    margin-right: 0.2rem;
  }

  .price-block .offer-price {
    font-size: 0.8rem;
  }

  .price-block .stock {
    font-size: 0.65rem;
    margin-top: 2px;
  }

  .product-card .badge.new {
    font-size: 0.6rem;
    padding: 1px 4px;
  }

  .show-more-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}



/* Add subtle hover animation */
.product-card:hover .price-block {
  color: #222;
}

.badge.new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3366;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(255, 51, 102, 0.4);
}

/* ======================
   ➕ Show More Button
========================= */
.show-more-btn {
  background: black;
  color: white;
  padding: 10px 20px;
  margin: 2rem auto 0;
  display: block;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.show-more-btn:hover {
  background: #222;
}


/* 👇 Shrink hero height on portrait mode */
@media screen and (orientation: portrait) {
  .hero {
    height: 45vh; /* or try 50vh / 40vh depending on how small you want */
  }

  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content button {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}


/* collection css*/

/* === COLLECTION ACCORDION SECTION === */

.collection-accordion {
  padding: 4rem 1rem;
  background: #2d001f;
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.collection-accordion h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #fff;
}

/* === DESKTOP ACCORDION STYLE === */
.accordion {
  display: flex;
  justify-content: center;
  gap: 16px;
  height: 400px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  transition: gap 0.3s ease;
}

.accordion li {
  position: relative;
  flex: 0 0 80px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.75;
  transition: flex 0.3s ease, transform 0.3s ease;
}

.accordion li:hover {
  flex: 0 1 260px;
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

.accordion li img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: grayscale(0.4);
  transition: filter 0.3s ease;
}

.accordion li:hover img {
  filter: grayscale(0);
}

.accordion li .content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion li:hover .content {
  opacity: 1;
}

.accordion li .content span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.accordion li:hover .content span {
  opacity: 1;
  transform: scale(1);
}






/* === MOBILE FALLBACK: GRID STYLE === */
@media (max-width: 768px) {
  .collection-accordion {
    background: #fff;
    color: #2d001f;
    padding: 2.5rem 1rem;
  }

  .collection-accordion h2 {
    color: #2d001f;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .accordion li {
    position: relative;
    flex: none;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: transform 0.2s ease;
  }

  .accordion li:active {
    transform: scale(0.98);
  }

  .accordion li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .accordion li .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .accordion li .content span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 1;
    transform: none;
  }

  .accordion li.coming-soon {
    pointer-events: none;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .accordion {
    grid-template-columns: 1fr;
  }
}
