/* styles.css */

/* Base + variables */
:root {
  --brand-maroon: #a01a4f;
  --search-bg: #fffaf5;
  --text-dark: #3b2a2a;
  --border-light: #e6d7cf;
  --badge-bg: #a01a4f;
  --badge-color: #ffffff;
  --header-height-mobile: 56px;
  --header-padding: 10px 16px;
  --transition-fast: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
}


/* fixed social icons */
.social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 3px;
  /* background-color: #fff; */
  border-top-right-radius: 12px;
  box-shadow: 0 0px 22px rgba(0, 0, 0, .18);
}

.social-float__btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}

.social-float__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.social-float__btn i {
  font-size: 18px;
  line-height: 1;
}

/* Brand colors */
.social-float__btn.is-fb i {
  color: #1877F2;
}

.social-float__btn.is-wa i {
  color: #25D366;
}

.social-float__btn.is-ig i {
  color: #E1306C;
}

.social-float__btn.is-pin i {
  color: #E60023;
}

.social-float__btn.is-yt i {
  color: #FF0000;
}

/* Optional: hide on very small screens */
@media (max-width: 420px) {
  .social-float {
    left: 0;
  }
}


/* Header base */
.neelghar-header {
  border-bottom: 1px solid var(--border-light);
  background-color: #ffffff;
}

/* sale baar */
.sale-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 10px;
  background: #7a0433;
  color: #fff;
}

.sale-bar__track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.sale-bar__text {
  display: inline-block;
  padding-left: 100%;
  animation: sale-marquee 14s linear infinite;
  will-change: transform;
  font-size: 13px;
  letter-spacing: .2px;
}

@keyframes sale-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.sale-bar__close {
  width: 32px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
}

.sale-bar__close:hover {
  opacity: 1;
}

/* optional: pause on hover */
.sale-bar:hover .sale-bar__text {
  animation-play-state: paused;
}

/* salebar over */

.header-inner {
  width: 100%;
  max-width: 1200px;
  /* adjust as you like: 1100, 1280, etc. */
  margin: 0 auto;
  /* centers on big screens */
}

/* Top bar */
.header-top {
  display: flex;
  align-items: center;
  padding: var(--header-padding);
  gap: 14px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 80px;
  transform: translateY(2px);
  margin: -1.5vh 0 -2.5vh 0;
}

.logo-main {
  font-size: 20px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
}

/* Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.icon-btn1 {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.icon-btn {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #e3c6a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background-color: var(--badge-bg);
  color: var(--badge-color);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search boxes */
.search-box {
  background-color: var(--search-bg);
  border-radius: 999px;
  /* border: 1px solid var(--border-light); */
  border: 1px solid #e3c6a8;
  display: flex;
  align-items: center;
  padding: 4px 10px;
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  padding: 6px 8px;
  font-size: 14px;
}

.search-box button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 4px;
  font-size: 15px;
}

/* Desktop-only search (hidden on mobile by default) */
.search-desktop {
  display: none;
}

/* Mobile search (full width) */
.search-mobile {
  margin: 0 16px 10px;
}

/* Camera icon spacing */
.camera-icon {
  margin-right: 6px;
}

/* Hamburger for mobile */
.hamburger {
  width: 24px;
  height: 20px;
  border: none;
  background: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 999px;
}

/* Navigation */
.main-nav {
  display: none;
  /* hidden on small screens */
  border-top: 1px solid #e3c6a8;
}

.main-nav.nav-open {
  display: block;
}

.main-nav ul {
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav li {
  width: 100%;
  position: relative;
}

.main-nav a {
  transition: color var(--transition-fast);
  display: block;
  /* full clickable row */
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: var(--text-dark);
}

.main-nav a:hover {
  font-weight: bold;
  text-decoration: underline;
  color: var(--brand-maroon);
  transition: 0.1s;
}

/* Hide submenu by default */
.main-nav .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* JS toggle + hover support */
.main-nav li[data-open] > .submenu,
.main-nav li:hover > .submenu,
.main-nav li:focus-within > .submenu {
  display: block;
}

/* Mobile: stacked indented */
.main-nav .submenu li a {
  padding-left: 24px;
  font-size: 13px;
}

/* Arrow for parents (rotates on open) */
.main-nav .has-submenu > a::after {
  content: "▾";
  margin-left: 4px;
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.main-nav li[data-open] .has-submenu > a::after {
  transform: rotate(180deg);
}

.channel-box {
  width: 100%;
  height: 30px;
  background-color: #a01a4f8b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.channel-box .channel-text {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 0.7em;
}

/* ====== Desktop breakpoint ====== */
@media (min-width: 992px) {
  .channel-box .channel-text {
    font-size: 0.8em;
  }

  .header-inner {
    padding: 0 24px;
  }

  .header-top {
    padding: 14px 40px;
    gap: 24px;
  }

  /* Hide mobile hamburger & search */
  .hamburger {
    display: none;
  }

  .search-mobile {
    display: none;
  }

  /* Desktop search appears in top row between logo and icons */
  .search-desktop {
    display: flex;
    flex: 1;
    max-width: 640px;
    margin-left: 40px;
    margin-right: 40px;
  }

  /* Keep logo on the far left, icons far right */
  .logo {
    min-width: 140px;
  }

  .logo img {
    display: block;
    height: 90px;
    /* increase until it looks clear (try 56–64px) */
    width: auto;
    transform: translateY(4px);
    margin: -2.5vh 0 -3vh 0;
  }

  .header-icons {
    margin-left: 0;
  }

  /* MAIN BAR (desktop) */
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7vh;
  }

  .main-nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    margin: 0;
    list-style: none;
  }

  .main-nav li {
    position: relative;
    list-style: none;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 10px 14px;
    white-space: nowrap;
  }

  /* FIRST LEVEL DROPDOWN */
  .main-nav > ul > li > .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 260px;
    max-width: 260px;
    white-space: normal;
  }

  .main-nav .submenu {
    margin: 0;
    padding-left: 0;
  }

  .main-nav .submenu li {
    list-style: none;
  }

  .main-nav .submenu a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    white-space: normal;
    word-wrap: break-word;
  }

  /* SECOND LEVEL (inside first dropdown) */
  .main-nav .submenu .submenu {
    position: static;
    margin-top: 4px;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
  }

  /* LAST TOP ITEM: ALIGN BOX TO RIGHT */
  .main-nav > ul > li:last-child > .submenu {
    left: auto;
    right: 0;
  }
}

/* <-------------------xx------  HEADER DESGINE OVER --------xx------------> */

.home-main {
  width: 100%;
  /* height: 100%; */
}


/* <-------------------xx------  CROUSEL DESGINE START --------xx------------> */

.hero-carousel {
  width: 100%;
  background-color: #000;
  height: 85vh;
}

.hero-carousel-inner {
  position: relative;
  max-width: 100%;
  /* center like your header container */
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Image fills area */
.hero-slide img {
  width: 100%;
  height: 100%;
  /* mobile height */
  object-fit: cover;
  display: block;
}

/* Text overlay */
.hero-slide-content {
  position: absolute;
  left: 8%;
  bottom: 18%;
  color: #ffffff;
  max-width: 320px;
  display: none;
}

.hero-slide-content h2 {
  font-size: 1.8rem;
  margin: 0 0 0.25rem;
}

.hero-slide-content p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background-color: #a01a4f;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.4;
}

.hero-arrow-prev {
  left: 6px;
}

.hero-arrow-next {
  right: 6px;
}

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 20px;
  height: 3px;
  /* border-radius: 999px; */
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 45px;
  background-color: #a01a4f;
}

/* Larger screens: taller hero and larger text */
@media (min-width: 768px) {
  .hero-slide img {
    height: 100%;
  }

  .hero-slide-content h2 {
    font-size: 2.4rem;
  }

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

/* <-------------------xx------  CROUSEL DESGINE OVER --------xx------------> */




/* ----------------- CORE RIBBON------------*/
/* ===== TRUST RIBBON BELOW CAROUSEL ===== */

.trust-ribbon {
  width: 100%;
  /* background: linear-gradient(90deg, #ffe3ee, #f9c2d7, #f3a6c5); */
  background-color: #6c0731;
  /* deep maroon */
  padding: 35px 4vw;
  margin: 4vh 0 4vh 0;
}

.trust-ribbon-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #F9F295;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a0173a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-text h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.trust-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #F9F295;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-ribbon {
    padding: 10px 3vw;
  }

  .trust-ribbon-inner {
    flex-direction: row;
    /* keep in one row */
    justify-content: space-between;
    gap: 8px;
  }

  .trust-item {
    flex: 1;
    gap: 6px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .trust-text h3 {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }

  .trust-text p {
    display: none;
    /* prevent wrapping */
  }
}

/* extra-tight for very small phones */
@media (max-width: 480px) {
  .trust-ribbon-inner {
    gap: 4px;
  }

  .trust-text h3 {
    font-size: 0.75rem;
  }

  .trust-text p {
    display: none;
  }
}







/* PIXEL-PERFECT img2.jpg & img3.jpg + WORKING MOBILE CAROUSEL */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

/* ========== SECTION BASE ========== */
.wedding-section {
  /* background:
    radial-gradient(circle at 20% 80%, rgba(249, 242, 149, 0.06) 0%, transparent 90%),
    linear-gradient(145deg, #1a0510 0%, #2d0a1a 30%, #4a0522 70%, #6c0731 100%); */
  padding: 60px 16px;
  position: relative;
  overflow: hidden;
}

.wedding-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ========== DESKTOP LAYOUT (img2.jpg) ========== */
.desktop-layout {
  display: none;
}

@media (min-width: 992px) {
  .wedding-section {
    padding: 10px 10px;
  }

  .desktop-layout {
    display: block;
  }

  .mobile-layout {
    display: none !important;
  }

  .desktop-banner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 580px;
    border-radius: 20px;
    /* overflow: hidden; */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
  }

  /* Left panel — magenta textured area */
  .banner-left {
    position: relative;
    /* background: linear-gradient(160deg, #8b1555 0%, #a01860 30%, #c4246e 60%, #8b1555 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    /* overflow: hidden; */
  }

  .banner-texture {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 30px 40px at 15% 20%, rgba(255, 220, 180, 0.18) 0%, transparent 70%),
      radial-gradient(ellipse 25px 35px at 45% 15%, rgba(255, 200, 150, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 30px 40px at 75% 35%, rgba(255, 220, 180, 0.15) 0%, transparent 70%),
      radial-gradient(ellipse 25px 35px at 25% 50%, rgba(255, 200, 150, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 30px 40px at 60% 55%, rgba(255, 220, 180, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 25px 35px at 85% 65%, rgba(255, 200, 150, 0.16) 0%, transparent 70%),
      radial-gradient(ellipse 30px 40px at 15% 75%, rgba(255, 220, 180, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 25px 35px at 50% 80%, rgba(255, 200, 150, 0.13) 0%, transparent 70%),
      radial-gradient(ellipse 30px 40px at 80% 90%, rgba(255, 220, 180, 0.15) 0%, transparent 70%),
      radial-gradient(ellipse 25px 35px at 35% 95%, rgba(255, 200, 150, 0.11) 0%, transparent 70%);
    opacity: 0.9;
    z-index: 1;
  }

  .banner-text {
    position: relative;
    z-index: 2;
    text-align: left;
  }

  .banner-text .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #f9f295;
    display: block;
    margin-bottom: 8px;
  }

  .main-title {
    line-height: 1;
  }

  .main-title .title-line-1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #f9f295;
    display: block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .main-title .title-line-2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #f9f295;
    display: block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
    text-align: right;
  }

  /* Right panel — 2x3 product grid */
  .banner-right {
    /* background: linear-gradient(180deg, #c4246e 0%, #a01860 50%, #8b1555 100%); */
    padding: 28px 28px;
    display: flex;
    align-items: center;
  }

  .product-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .grid-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .grid-card a {
    display: block;
    text-decoration: none;
    height: 100%;
  }

  .grid-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
  }

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

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

  .grid-card .card-label {
    color: #f9f295;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 4px 4px;
    letter-spacing: 0.03em;
  }
}

/* ========== MOBILE LAYOUT (img3.jpg) ========== */
.mobile-layout {
  display: block;
}

.mobile-header {
  text-align: center;
  margin-bottom: 40px;
}

.mobile-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #f9f295;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.mobile-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #f9f295;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  scroll-snap-align: center;
  padding: 0 8px;
}

.mobile-product {
  text-align: center;
}

.mobile-product a {
  text-decoration: none;
  display: block;
}

/* Arch-shaped golden frame (img3.jpg style) */
.product-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 10px 10px / 35% 35% 10px 10px;
  overflow: hidden;
  border: 1px solid #f9f295;
  background: rgba(249, 242, 149, 0.08);
  margin-bottom: 10px;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-label {
  font-family: 'Cormorant Garamond', serif;
  color: #f9f295;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.spacer-product {
  visibility: hidden;
}

/* Dots */
/* .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(249, 242, 149, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: #f9f295;
  transform: scale(1.35);
} */

/* ========== RESPONSIVE FINE-TUNING ========== */
@media (min-width: 992px) {
  .mobile-layout {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .wedding-section {
    padding: 48px 12px;
  }

  .mobile-title {
    font-size: 2.2rem;
  }

  .carousel-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .grid-card .card-image {
    height: 260px;
  }

  .main-title .title-line-1,
  .main-title .title-line-2 {
    font-size: 4rem;
  }
}


/* <-------------------xx------  FOOTER DESGINE START --------xx------------> */


.site-footer {
  position: relative;
  background: linear-gradient(180deg, #ffe6f0 15%, #f8bfd4 45%, #f39abc 100%);
  color: #7b0440;
  overflow: hidden;
  font-size: 15px;
}

.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

/* Columns */
.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li+li {
  margin-top: 6px;
}

.footer-col a {
  text-decoration: none;
  color: #7b0440;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Contact block */
.footer-label {
  margin: 0 0 4px;
  font-size: 13px;
}

.footer-phone {
  margin: 0 0 12px;
  font-weight: 600;
}

.footer-email {
  display: inline-block;
  margin-top: 4px;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #e55283;
  margin-right: 8px;
  font-size: 16px;
}

.footer-social a:last-child {
  margin-right: 0;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
}

/* Floral illustration area (use your own SVG/PNG) */
.footer-illustration {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 40%;
  /*background-image: url("images/footer-flowers.svg");*/
  /* your artwork */
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 0.9;
}

.footer-icon {
  margin-right: 6px;
  font-size: 14px;
  color: #e55283;
  /* match footer accent color */
  vertical-align: middle;
}

.footer-phone,
.footer-email {
  display: flex;
  align-items: center;
}


@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer-illustration {
    opacity: 0.3;
    /* softer behind text on phones */
    width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-inner {
    padding: 24px 16px 18px;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .footer-copy {
    text-align: center;
  }
}

/* <-------------------xx------  FOOTER DESGINE end --------xx------------> */




/* <-------------------xx------  custmer fav DESGINE START --------xx------------> */

.customer-favourites-section {
  width: 100%;
  margin-top: 3vh;
}

.customer-favourites {
  padding: 40px 0;
  background: #fff;
  max-width: 1250px;
  /* adjust to your design */
  margin: 0 auto;
  /* centers horizontally */
  padding: 0 16px;
}


.cf-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cf-header h2 {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
}

.cf-controls {
  display: flex;
  gap: 8px;
}

.cf-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.5;
}

.cf-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.cf-prev {
  left: 8px;
}

.cf-next {
  right: 8px;
}

.cf-track-wrapper {
  position: relative;
  overflow: hidden;
}

.cf-track {
  display: flex;
  gap: 20px;
  /* slightly smaller gap between cards */
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* padding: 0 40px 10px;  space on left & right after group of cards */
}

.cf-track::-webkit-scrollbar {
  display: none;
}

.cf-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 0 0 23%;
  /* ~4 cards visible */
  max-width: 260px;
}

.cf-image-wrap {
  position: relative;
  padding-top: 135%;
  /* maintain image ratio similar to reference */
  overflow: hidden;
}

.cf-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-title {
  font-size: 14px;
  font-weight: 500;
  margin: 12px 12px 4px;
  color: #333;
}

.cf-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px 12px;
  font-size: 14px;
}

.cf-price {
  font-weight: 600;
  color: #000;
}

.cf-mrp {
  text-decoration: line-through;
  color: #999;
}

.cf-off {
  color: #d32f2f;
  font-weight: 500;
}

/* Mobile & tablet responsiveness */
@media (max-width: 1024px) {
  .cf-card {
    flex: 0 0 23%;
    /* still around 4 items on medium screens */
    max-width: 230px;
  }
}

@media (max-width: 768px) {
  .cf-card {
    flex: 0 0 calc(50% - 20px);
    /* 2 cards + gap */
    max-width: none;
  }

  .cf-track {
    padding: 0 24px 10px;
    /* a bit less side padding on small screens */
  }

  .cf-header h2 {
    font-size: 22px;
  }

  .cf-price-row {
    display: block;
  }
}

/* <--------------------XX------- SHOP THE LOOK DESGINE -----------------XX-----> */
/* ===== Shop The Look: layout ===== */
.look-section {
  padding: 20px 0 0px;
  background: #fff;
}

.look-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0px;
}

.look-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 7vh;
}

.look-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.look-card {
  flex: 0 1 18%;
  min-width: 190px;
  max-width: 220px;
}

.look-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  padding-top: 177.78%;
  /* 9:16 YouTube Shorts */
}

.look-media .youtube-short {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.look-mini {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 52px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.look-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .look-card {
    flex: 0 1 30%;
    min-width: 180px;
    max-width: 220px;
  }

  .look-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .look-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 20px;
  }

  .look-row::-webkit-scrollbar {
    display: none;
  }

  .look-card {
    flex: 0 0 70%;
    min-width: 0;
    max-width: none;
  }

  .look-media {
    padding-top: 177.78%;
  }

  .look-title {
    font-size: 24px;
  }
}


/* <--------------------XX------- SHOP BY TREND DESGINE -----------------XX-----> */
.trend-section {
  width: 100%;
  background: #fff;
  margin-bottom: 5vh;
  margin-top: 7vh;
}

.trend-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.trend-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 7vh;
}

/* layout: arrows outside + carousel center */
.trend-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trend-track-wrapper {
  overflow: hidden;
  flex: 1 1 auto;
}

/* scrolling track */
.trend-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 8px 10px;
}

.trend-track::-webkit-scrollbar {
  display: none;
}

/* cards: desktop = 2 at once */
.trend-card {
  flex: 0 0 calc(50% - 16px);
  /* exactly 2 cards visible on big screen */
  max-width: calc(50% - 16px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: #f5f5f5;
}

.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* optional overlay content styling */
.trend-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  max-width: 60%;
  color: #fff;
}

.trend-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.trend-content p {
  font-size: 16px;
  margin-bottom: 16px;
}

.trend-cta {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

/* arrow buttons outside carousel */
.trend-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.trend-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* tablet: still 2 cards */
@media (max-width: 1024px) {
  .trend-card {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

/* phone: 1 card at a time */
@media (max-width: 768px) {
  .trend-row {
    gap: 8px;
  }

  .trend-card {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .trend-content {
    left: 20px;
    bottom: 20px;
    max-width: 70%;
  }

  .trend-title {
    font-size: 26px;
  }
}





/* =====xx--------------------- AUTH MODAL ------------------xx===== */

/* Overlay */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: #faf5f698;
  /* was 0.45 – more faded page, modal stands out */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


/* Show modal */
.auth-modal-overlay.show {
  display: flex;
}

/* Modal box */
.auth-modal {
  background: #fff;
  border-radius: 6px;
  max-width: 380px;
  /* a bit wider */
  width: 95%;
  max-height: 95vh;
  /* taller */
  height: 80vh;
  /* fixed tall look */
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

/* Close button */
.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid #e5d5cf;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Hero image (desktop only) */
.auth-hero {
  display: none;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

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

/* Content */
.auth-step {
  display: none;
  padding: 18px 24px 24px;
}

.auth-step.active {
  display: block;
}

.auth-title {
  font-size: 1.4rem;
  text-align: center;
  margin: -2vh 0 8px;
  color: #3b3430;
}

.auth-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #8a7c73;
  margin: 0 0 20px;
}

.auth-phone-row,
.auth-name-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
}

.auth-phone-code select,
.auth-title-select select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e4d6cf;
  background: #faf6f4;
  font-size: 0.9rem;
  color: #3b3430;
}

.auth-phone-code span {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #e4d6cf;
  background: #faf6f4;
  font-size: 0.9rem;
}

/* Input wrapper */
.auth-input-wrap {
  position: relative;
  margin-bottom: 6px;
}

.auth-input-wrap input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #e4d6cf;
  font-size: 0.9rem;
  color: #3b3430;
  outline: none;
}

.auth-input-wrap input::placeholder {
  color: #b8a79a;
}

.auth-input-wrap input:focus {
  border-color: #a0173a;
}

/* Error text (use via JS if you want) */
.auth-error {
  display: block;
  color: #e24b4b;
  font-size: 0.75rem;
  margin-top: 2px;
  visibility: hidden;
  /* show via JS when invalid */
}

/* Primary button */
.auth-primary-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 0;
  margin-top: 8px;
  background: #a0173a;
  /* solid brand maroon instead of #f4b9c7 */
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.auth-primary-btn:hover {
  background: #7c1230;
  /* darker on hover */
}

#pwPhoneText,
#createPhoneText {
  border: 1px solid #e4d6cf;
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
}

.pw-toggle {
  margin-left: 0px;
  border: none;
  background: none;
  font-size: 0.8rem;
  cursor: pointer;
  color: #a0173a;
}


/* Terms text */
.auth-terms {
  text-align: center;
  font-size: 0.75rem;
  color: #8a7c73;
  margin-top: 12px;
}

.auth-terms a {
  color: #a0173a;
  text-decoration: none;
}

/* OTP row */
.auth-otp-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 6px;
}

.auth-link-btn {
  border: none;
  background: none;
  color: #a0173a;
  font-size: 0.85rem;
  cursor: pointer;
}

.auth-otp-timer {
  font-size: 0.85rem;
  color: #8a7c73;
}

/* Small devices (phone layout like phone_log.jpg) */
@media (max-width: 768px) {

  .auth-modal {
    max-width: 330px;
    width: 94%;
    height: 60%;
    max-height: 95vh;
    border-radius: 7px;
    justify-content: center;
  }


  .auth-hero {
    display: none;
  }

  .auth-step {
    padding: 24px 18px 20px;
  }
}

/* Larger screens: show hero image (like lap_log.jpg) */
@media (min-width: 769px) {
  .auth-hero {
    display: block;
  }

  .auth-step {
    padding: 24px 24px 28px;
  }
}


/* ACCOUNT MODAL */
.acc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 9999;
}

.acc-modal-overlay.show {
  display: flex;
}

.acc-modal {
  margin: 70px 40px 0 0;
  width: 260px;
  background: #fff7f0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff2e5;
}

.acc-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7e0d4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-name {
  font-size: 0.9rem;
}

.acc-edit {
  border: none;
  background: none;
  font-size: 0.75rem;
  cursor: pointer;
}

.acc-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.acc-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #3b3430;
  text-decoration: none;
}

.acc-menu li a:hover {
  background: #f7e0d4;
}

.acc-footer {
  padding: 10px 16px 12px;
  border-top: 1px solid #f0e5df;
}

.acc-logout-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  border: 1px solid #a0173a;
  padding: 8px 0;
  color: #a0173a;
  text-decoration: none;
  font-size: 0.9rem;
}



/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  width: 100%;
  padding: 0px 4vw 20px;
  /* background: linear-gradient(135deg, #ffe6f0, #f7bfd7, #f3a2c5); */
  margin-bottom: 5vh;
  display: none;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testi-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #3b3430;
}

.testi-carousel {
  position: relative;
  /* background: rgba(255,255,255,0.9); */
  border-radius: 20px;
  padding: 0px 26px 32px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.12); */
}

/* Slides track */
.testi-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Individual slide */
.testi-slide {
  min-width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.testi-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testi-user img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 3px solid #f3a2c5; */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.testi-content h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.testi-tag {
  margin: 2px 0 10px;
  font-size: 1.5rem;
  color: #ff9b1a;
}

.sr-only {
  font-size: 0.9rem;
}

.testi-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4f433e;
}

/* Navigation arrows */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 18px;
  color: #a0173a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-nav.prev {
  left: 14px;
}

.testi-nav.next {
  right: 14px;
}

.testi-nav:hover {
  background: #a0173a;
  color: #fff;
}

/* Dots */
.testi-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2c7d4;
  cursor: pointer;
}

.testi-dots .dot.active {
  background: #a0173a;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 0px 4vw 10px;
  }

  .testi-carousel {
    padding: 20px 18px 26px;
  }

  .testi-text {
    font-size: 0.85rem;
  }

  .testi-nav.prev {
    left: 6px;
  }

  .testi-nav.next {
    right: 6px;
  }
}

@media (max-width: 480px) {
  .testi-title {
    font-size: 1.4rem;
  }

  .testi-user img {
    width: 68px;
    height: 68px;
  }

  .testi-text {
    font-size: 0.8rem;
  }
}






/* --------------XX------------------- PRODUCT LIST PAGE DESGINE ------------XX-------------- */
/* ===== PRODUCT LIST PAGE ===== */

.pl-page {
  padding: 16px 4vw 70px;
  background: #fff;
}

.pl-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.pl-breadcrumb a {
  color: #9a8175;
  text-decoration: none;
}

.pl-breadcrumb span {
  color: #3b3430;
}

.pl-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* show filters button */
.pl-show-filters-btn {
  border: 1px solid #e3d7d0;
  background: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* desktop sort dropdown (lap_sort.jpg style) */
.pl-sort-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pl-sort-desktop span {
  color: #9a8175;
}

.pl-sort-dropdown {
  position: relative;
  min-width: 170px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #e3d7d0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.pl-sort-menu {
  position: absolute;
  right: 5px;
  list-style: none;
  padding: 4px 0;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e3d7d0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  z-index: 20;
}

.pl-sort-menu.show {
  display: block;
}

.pl-sort-menu li {
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
}

.pl-sort-menu li:hover {
  background: #faf4f1;
}

/* layout */
.pl-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  margin-top: 8px;
}

/* filter desktop */
#filterDesktop {
  border-right: 1px solid #f0e5df;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 150px);
}

.pl-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.pl-filter-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
}

.pl-link-btn {
  border: none;
  background: none;
  color: #a0173a;
  font-size: 0.8rem;
  cursor: pointer;
}

.pl-icon-round {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e3d7d0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pl-filter-scroll {
  flex: 1;
  padding-right: 8px;
  overflow-y: auto;
}

.pl-filter-group {
  border-top: 1px solid #f2e7e1;
}

.pl-filter-summary {
  width: 100%;
  padding: 10px 2px 10px 0;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3b3430;
  cursor: pointer;
}

.pl-filter-body {
  padding: 0 0 10px 0;
  font-size: 0.85rem;
  /* display: flex;
  flex-direction: row; */
}

.pl-checkbox-row {
  display: flex;
  align-items: center;
}

.pl-filter-group .pl-filter-summary i {
  transition: transform 0.2s ease;
}

.pl-filter-group.collapsed .pl-filter-summary i {
  transform: rotate(-90deg);
}

.pl-filter-placeholder {
  font-size: 0.8rem;
  color: #9a8175;
}

.pl-radio-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.pl-radio-row input {
  accent-color: #a0173a;
}

.pl-count-light {
  color: #b0a098;
  font-size: 0.8rem;
  margin-left: 2px;
}

.pl-filter-footer {
  padding-top: 8px;
}

.pl-apply-btn {
  width: 100%;
  border-radius: 999px;
  border: none;
  background: #a0173a;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  cursor: pointer;
}

/* products grid & cards */
.pl-products {
  min-width: 0;
}

.pl-heading {
  font-size: 1.4rem;
  margin: 0 0 14px;
}

.pl-count {
  font-size: 0.9rem;
  color: #9a8175;
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.pl-card {
  background: #fff;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* product card image sizing – fixed height */
.pl-img-wrap {
  position: relative;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  height: 320px;
  /* pick a height that matches your design */
}

.pl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fill area, crop if needed */
  display: block;
}




/* New Arrivals ribbon (only when .new) */
.pl-tag-new {
  display: none;
}

.pl-card.new .pl-tag-new {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: linear-gradient(180deg, #f6247a, #fbb34b);
  color: #fff;
  padding: 8px 6px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pl-card-actions {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.pl-round-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pl-title {
  margin: 8px 0 0px;
  font-size: 0.85rem;
  color: #757474;
  margin-left: 0.7vw;
}

.pl-price {
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.7vw;
}

/* mobile bar */
.pl-mobile-bar {
  display: none;
}

/* modals shared */
.pl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
}

.pl-modal-overlay.show {
  display: flex;
}

.pl-modal {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 90vh;
  overflow: hidden;
}

.pl-modal-wide {
  max-width: 520px;
}

.pl-modal-close {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e3d7d0;
  background: #fff;
  cursor: pointer;
}

.pl-modal-title {
  font-size: 1rem;
  margin: 0;
}

/* mobile sort modal */
#sortMobileModal .pl-modal {
  position: relative;
  padding: 22px 20px 16px;
}

.pl-sort-list {
  list-style: none;
  padding: 16px 0 12px;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.pl-sort-list li {
  padding: 10px 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.pl-sort-list li.active {
  color: #a0173a;
  font-weight: 600;
}

.pl-modal-primary {
  width: 100%;
  border-radius: 999px;
  border: none;
  background: #a0173a;
  color: #fff;
  padding: 11px 0;
  font-size: 0.9rem;
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* mobile filter modal */
.pl-modal-header {
  position: relative;
  padding: 14px 18px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pl-reset-link {
  border: none;
  background: none;
  color: #a0173a;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 7vw;
}

.pl-mobile-filter-body {
  display: flex;
  min-height: 260px;
  max-height: 380px;
  border-top: 1px solid #f0e5df;
}

.pl-mobile-filter-tabs {
  width: 35%;
  border-right: 1px solid #f0e5df;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.pl-mobile-filter-tabs .tab {
  padding: 10px 12px;
  text-align: left;
  border: none;
  background: none;
  font-size: 0.8rem;
  cursor: pointer;
}

.pl-mobile-filter-tabs .tab.active {
  background: #fee0ea;
  border-left: 3px solid #a0173a;
}

.pl-mobile-filter-panel {
  flex: 1;
  padding: 10px 14px;
  overflow-y: auto;
}

.pl-filter-panel-inner {
  min-height: 200px;
}

.pl-search-input {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #e3d7d0;
  font-size: 0.85rem;
}

.pl-modal-footer {
  display: flex;
  gap: 10px;
  padding: 10px 18px 16px;
}

.pl-modal-secondary {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  background: #fff;
  color: #3b3430;
  padding: 10px 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.pl-filter-group.collapsed .pl-filter-body {
  display: none;
}

.pl-filter-group.collapsed .pl-filter-summary i {
  transform: rotate(-90deg);
}

/* PAGINATION */
.pl-pagination {
  margin: 24px 0;
  display: flex;
  gap: 8px;
}

.pl-page-link {
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #ddd;
  font-size: 14px;
}

.pl-page-link.active {
  background: #000;
  color: #fff;
  border-color: #000;
}




/* responsive */
@media(max-width:992px) {
  .pl-layout {
    grid-template-columns: 1fr;
  }

  #filterDesktop {
    display: none !important;
    /* force hide sidebar on tablets/phones */
  }

  .pl-show-filters-btn {
    display: none;
    /* hide desktop show button on small screens */
  }
}

@media(max-width:768px) {
  .pl-topbar {
    display: none;
  }

  .pl-page {
    padding: 8px 3vw 80px;
  }

  .pl-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #f0e5df;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
  }

  .pl-mobile-bar button {
    border: none;
    background: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
}



/* =========xx======== PRODUCT DETAIL PAGE =========xx========== */


/* main layout */

.pd-page {
  padding: 16px 5vw 80px;
  background: #fff;
}

/* breadcrumb */
.pd-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: #9a8175;
}

.pd-breadcrumb a {
  color: #9a8175;
  text-decoration: none;
}

.pd-breadcrumb span {
  color: #3b3430;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* RIGHT AND LEFT PRODUCT SUGGESTION */
.edge-card {
  --card-w: 240px;
  --peek-w: 78px;
  --card-h: 78px;
  --out-gap: 10px;

  position: fixed;
  top: 55%;
  z-index: 9999;

  width: var(--card-w);
  height: var(--card-h);
  background: #fff;
  border-radius: 7px;
  overflow: hidden;

  display: grid;
  grid-template-columns: var(--peek-w) 1fr;
  align-items: stretch;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  text-decoration: none;
  color: #111;

  transition: transform .25s ease, box-shadow .25s ease;
}

/* peek image */
.edge-card__peek {
  width: var(--peek-w);
  height: var(--card-h);
  background: #f3f3f3;
  overflow: hidden;
}

.edge-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text area */
.edge-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.edge-card__title {
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.edge-card__price {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

/* hover polish */
.edge-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

/* slide out */
.edge-card--left {
  left: 0;
  transform: translateX(calc(-1 * (var(--card-w) - var(--peek-w)))) translateY(-50%);
}

.edge-card--left:hover {
  transform: translateX(var(--out-gap)) translateY(-50%);
}

.edge-card--right {
  right: 0;
  transform: translateX(calc(var(--card-w) - var(--peek-w))) translateY(-50%);
}

.edge-card--right:hover {
  transform: translateX(calc(-1 * var(--out-gap))) translateY(-50%);
}

/* >>> LEFT card RTL (image on right, text on left) <<< */
.edge-card--left {
  direction: rtl;
  /* flips grid columns RTL */
  /* [web:287] */
}

.edge-card--left .edge-card__body {
  direction: ltr;
  /* keep text normal */
  /* [web:287] */
}

/* Mobile */
@media (max-width: 600px) {
  .edge-card {
    --card-w: 210px;
    --peek-w: 70px;
    --card-h: 70px;
    --out-gap: 8px;
  }
}

/* product detail content */
.pd-gallery {
  display: block;
}

/* wrapper = thumbs + stage */
.pd-wrap {
  display: flex;
  gap: 16px;
  align-items: stretch;
  max-width: 620px;
  position: relative;
}

/* NEW: thumbs wrapper with buttons */
.pd-thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}

/* up/down buttons */
.pd-thumbs-btn {
  width: 100%;
  padding: 6px 0;
  background: transparent;
  border: 0px solid #e6e6e6;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.pd-thumbs-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* thumbs scroll area */
.pd-thumbs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  max-height: 620px;
  padding: 8px 0;
  position: relative;
}

/* thumbs */
.pd-thumb {
  flex: 0 0 auto;
  flex-shrink: 0;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 5 / 5;
  overflow: hidden;
  position: relative;
}

.pd-thumb.active {
  border-color: #a0173a;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb img,
.pd-thumb-play {
  pointer-events: none;
}

/* Play icon on video thumbnail */
.pd-thumb-play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
}

.pd-thumb-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* right stage */
.pd-stage {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* main carousel box */
.pd-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

/* slides */
.pd-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.pd-slide.active {
  display: block;
}

.pd-slide img,
.pd-slide video {
  width: 100%;
  height: 75vh;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
}

/* HOVER ZOOM - MAIN FEATURE */
.pd-zoom-img {
  transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.pd-zoom {
  cursor: zoom-in !important;
}

.pd-zoom:active {
  cursor: grabbing !important;
}


/* DESKTOP HOVER */
@media (hover: hover) {
  .pd-slide[data-type="image"] .pd-zoom:hover .pd-zoom-img {
    transform: scale(1.6);
  }

  .pd-slide[data-type="image"] .pd-zoom:hover {
    cursor: zoom-in;
  }
}

/* CLICK/HOLD ZOOM */
.pd-slide[data-type="image"] .pd-zoom:active .pd-zoom-img {
  transform: scale(2.2);
}

.pd-slide[data-type="image"] .pd-zoom:active {
  cursor: grab;
}

/* MOBILE TOUCH */
@media (hover: none) and (pointer: coarse) {
  .pd-slide[data-type="image"] .pd-zoom:active .pd-zoom-img {
    transform: scale(1.8);
  }
}

/* YouTube iframe */
.pd-yt {
  width: 100%;
  height: 100%;
  background: #000;
}

.pd-yt iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  display: block;
}

/* Stop iframe stealing clicks */
.pd-slide[data-type="video"] iframe {
  pointer-events: none;
}

.pd-slide.active[data-type="video"] iframe {
  pointer-events: auto;
}

.pd-bad-video {
  padding: 14px;
}

/* dots */
.pd-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.pd-dot {
  width: 7px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.pd-dot.active {
  background: #fff;
  width: 20px;
}

/* RESPONSIVE */
@media (max-width:767px) {
  .pd-wrap {
    flex-direction: column;
    max-width: 100%;
    align-items: stretch;
  }

  .pd-thumbs-wrap {
    order: 2;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .pd-thumbs-btn {
    width: 32px;
    height: 64px;
  }

  .pd-thumbs {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    max-height: none;
  }

  .pd-thumb {
    width: 80px;
    flex: 0 0 80px;
    aspect-ratio: 5 / 5;
  }

  .pd-stage {
    order: 1;
  }

  .pd-carousel {
    height: 100%;
  }
}

/* color otion */
.pd-color-section {
  margin-top: 12px;
}

.pd-color-label {
  font-size: 14px;
  margin-bottom: 4px;
}

.pd-color-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #999;
}

.cart-item-color {
  font-size: 13px;
  margin-top: 4px;
}

.pd-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pd-color-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  width: 42px;
  height: 60px;
  overflow: hidden;
}

.pd-color-item.active {
  border-color: #a0173a;
}

.pd-color-name {
  margin-block-start: 0;
  margin-block-end: 0;
  text-align: center;
  color: #000;
  font-size: 0.9em;
}

.pd-color-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* details column */
.pd-details {
  position: relative;
}

/* top right icons */
.pd-top-right-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
}

.pd-share-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f0e0d6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  min-width: 220px;
  display: none;
  z-index: 20;
}

.pd-share-menu.show {
  display: block;
}

.pd-share-item {
  width: 100%;
  padding: 6px 12px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 1em;
}

.pd-share-item i {
  font-size: 1.8em;
  color: #e24b4b;
}

.pd-share-item:hover {
  background: #fdf5f7;
}


.pd-icon-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e3d7d0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-wishlist-btn.active i {
  color: #e63c6b;
}

/* meta */
.pd-meta {
  padding-right: 70px;
  /* space for icons */
}

.pd-fabric {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8175;
  margin: 0 0 4px;
}

.pd-title {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #3b3430;
}

.pd-sku {
  font-size: 0.8rem;
  color: #9a8175;
  margin: 0 0 2vh;
}

/* price box */
.pd-price-box {
  margin-top: 2vh;
  margin-bottom: 10px;
}

.pd-price-label {
  color: #db3a63;
  font-size: 0.85rem;
  margin: 0;
}

.pd-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2px 0;
}

.pd-tax {
  font-size: 0.8rem;
  color: #9a8175;
  margin: 0;
}

/* EMI box */
.pd-emi-box {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fdf5ee;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* < !-- Whatshap enquiry --> */
.wa-enquire {
  margin: 4vh 0 2vh 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.1em;
  border: 0px solid rgba(0, 0, 0, .08);
}

.wa-enquire i {
  font-size: 1.1em;
  color: #25D366;
}

.wa-enquire:hover {
  filter: brightness(.95);
  text-decoration: underline;
}

/* color selection row */
.pd-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2vh 0 3vh 0;
}

.pd-add-btn {
  flex: 1;
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
}

/* divider */
.pd-divider {
  margin: 20px 0 16px;
  border: none;
  border-bottom: 1px solid #eee0d9;
}

/* delivery section */
.pd-subtitle {
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.pd-pincode-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.pd-country-btn {
  min-width: 80px;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  background: #fff;
  padding: 8px 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.pd-pin-input-wrap {
  flex: 1;
  position: relative;
}

.pd-pin-input-wrap input {
  width: 100%;
  padding: 8px 32px 8px 10px;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  font-size: 0.9rem;
}

.pd-pin-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #f4e7df;
  cursor: pointer;
}

.pd-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.pd-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.pd-benefits i {
  margin-top: 2px;
  color: #a0173a;
}

/* mobile sticky bar */
.pd-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #f0e5df;
  padding: 8px 5vw 10px;
  display: none;
  z-index: 999;
}

.pd-mobile-add {
  width: 85%;
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Responsive (mobile view like phone_det.jpg) ===== */
@media (max-width: 768px) {
  .pd-page {
    padding: 8px 4vw 70px;
  }

  .pd-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .pd-details {
    order: 2;
  }

  .pd-gallery {
    order: 1;
  }

  .pd-top-right-icons {
    position: static;
    justify-content: flex-end;
    margin-bottom: 8px;
  }

  .pd-meta {
    padding-right: 0;
  }

  .pd-cta-row {
    display: none;
    /* desktop add button hidden, use mobile bar */
  }

  .pd-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


/* Section wrapper PRODUCT DETAIL CONTENT */
.pd-specs {
  margin: auto;
  width: 90%;
  margin-bottom: 4vh;
  padding-top: 24px;
  border-top: 1px solid #eee0d9;
}

.pd-specs-title {
  font-size: 1.7rem;
  margin: 0 0 20px;
}

/* tabs */
.pd-specs-tabs {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.pd-specs-tab {
  border: none;
  background: none;
  padding: 0 0 6px;
  cursor: pointer;
  color: #9a8175;
  position: relative;
}

.pd-specs-tab.active {
  color: #3b3430;
  font-weight: 600;
}

.pd-specs-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a0173a;
}

/* content */
.pd-specs-content {
  display: none;
}

.pd-specs-content.active {
  display: block;
}

/* tables (desktop layout like prodet_lap) */
.pd-specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  background: #fff;
  border: 1px solid #f0e5df;
  border-radius: 4px;
  padding: 16px 18px;
}

.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pd-specs-table th,
.pd-specs-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f6ece5;
}

.pd-specs-table th {
  font-weight: 500;
  color: #9a8175;
  width: 40%;
}

.pd-specs-table td {
  color: #3b3430;
  background: #fef6f0;
}

/* text for other tabs */
.pd-specs-text {
  font-size: 0.9rem;
  color: #3b3430;
  background: #fff;
  border: 1px solid #f0e5df;
  border-radius: 4px;
  padding: 14px 16px;
}

/* MORE INFO block */
.pd-more {
  margin-top: 8px;
  padding: 18px 18px 16px;
  background: #fdf5ee;
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  font-size: 0.85rem;
}

.pd-more-left,
.pd-more-right {
  color: #3b3430;
}

.pd-more-text {
  margin: 0 0 14px;
  line-height: 1.5;
}

.pd-more-pairs p {
  margin: 0 0 4px;
  display: flex;
  justify-content: space-between;
  max-width: 320px;
}

.pd-more-pairs span {
  color: #9a8175;
}

.pd-more-pairs strong {
  font-weight: 600;
}

.pd-more-title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.pd-more-text-small {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: #7a6a62;
}

.pd-more-contact p {
  margin: 0 0 6px;
  display: flex;
  justify-content: space-between;
  max-width: 260px;
}

.pd-more-contact span {
  color: #9a8175;
}

.pd-more-contact a {
  color: #a0173a;
  text-decoration: none;
  font-weight: 500;
}

/* mobile: stack tables like prodet_ph */
@media (max-width:768px) {
  .pd-specs {
    margin-top: 28px;
  }

  .pd-specs-tabs {
    font-size: 0.8rem;
    gap: 16px;
    overflow-x: auto;
  }

  .pd-specs-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border: none;
  }

  .pd-specs-table {
    border: 1px solid #f0e5df;
    border-radius: 0;
  }

  .pd-specs-table+.pd-specs-table {
    border-top: none;
  }

  .pd-more {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 14px 14px 12px;
  }

  .pd-more-pairs p,
  .pd-more-contact p {
    max-width: none;
  }
}

/* ===== RECOMMEND PRODUCTS ===== */
.rp-wrap {
  max-width: 100%;
  /* decrease carousel section width here */
  margin: 18px auto;
  padding: 0 14px;
}

.rp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rp-title {
  margin: 0 auto 2vh auto;
  font-size: 30px;
  font-weight: 600;
  color: #111;
}

/* ===== Row: left button | track | right button ===== */
.rp-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Side buttons outside carousel */
.rp-sidebtn {
  flex: 0 0 46px;
  /* fixed button space */
  border: 0px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  font-size: 2em;
  margin-top: -11vh;
}

.rp-sidebtn:active {
  transform: translateY(1px);
}

/* ===== Track takes remaining width automatically ===== */
.rp-track {
  flex: 1 1 auto;
  min-width: 0;
  /* critical for flex + overflow scrolling */
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 6px 6px;

  /* hide scrollbar but keep scrolling */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rp-track::-webkit-scrollbar {
  display: none;
}

/* ===== Card design (similar to screenshot style) ===== */
.rp-card {
  flex: 0 0 300px;
  /* card width */
  scroll-snap-align: start;
  text-decoration: none;
  color: #111;
  background: #fff;
}

.rp-imgbox {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f4f4f4;
}

.rp-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-name {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
  /* height: 3.9em; */
  overflow: hidden;
}

.rp-price {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.rp-mrp {
  color: #8a8a8a;
  text-decoration: line-through;
  margin-right: 8px;
}

.rp-sale {
  color: #c11a1a;
  font-weight: 800;
}


/* ===== OPTIONAL: badges/ribbon (if you enable HTML) ===== */
.rp-badge-left {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #1f7a3a;
  text-transform: uppercase;
}

.rp-ribbon {
  position: absolute;
  top: 0;
  right: 10px;
  width: 46px;
  height: 58px;
  background: #a0173a;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  text-align: center;
  padding-top: 6px;
  line-height: 1.05;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 86%, 0 100%);
}

.rp-ribbon span {
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .rp-wrap {
    max-width: 980px;
  }

  .rp-card {
    flex-basis: 270px;
  }

  .rp-imgbox {
    height: 350px;
  }

  .rp-track {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .rp-wrap {
    max-width: 720px;
  }

  .rp-card {
    flex-basis: 240px;
  }

  .rp-imgbox {
    height: 320px;
  }

  .rp-sidebtn {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

@media (max-width: 640px) {

  /* usually better UX: hide side buttons and let swipe scroll */
  .rp-sidebtn {
    display: none;
  }

  .rp-row {
    gap: 0;
  }

  .rp-track {
    padding-left: 0;
    padding-right: 0;
  }

  .rp-card {
    flex-basis: 220px;
  }

  .rp-imgbox {
    height: 300px;
  }
}

/* section wrapper CUSTOMER REVIEW */
.pd-reviews {
  margin-top: 40px;
  padding-top: 24px;
  /* border-top:1px solid #eee0d9; */
  width: 90%;
  margin: auto;
}

.pd-rev-title {
  text-align: center;
  font-size: 1.7rem;
  margin: 0 0 18px;
}

/* top summary layout */
.pd-rev-summary {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr auto;
  align-items: center;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto 20px;
}

.pd-rev-score-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-rev-score-num {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ff9b1a;
}

.pd-rev-stars {
  color: #ff9b1a;
  letter-spacing: 1px;
}

.pd-rev-based {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #000;
}

/* rating bars */
.pd-rev-bars {
  font-size: 0.85rem;
}

.pd-rev-bar-row {
  display: grid;
  grid-template-columns: 14px 14px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pd-rev-bar-track {
  height: 6px;
  border-radius: 999px;
  background: #f0f2f5;
  overflow: hidden;
}

.pd-rev-bar-fill {
  height: 100%;
  width: 0;
  background: #ff9b1a;
}

.pd-rev-count {
  text-align: right;
}

/* write button */
.pd-rev-write {
  display: flex;
  justify-content: flex-end;
  margin-left: 3vw;
}

.pd-rev-write-btn {
  border-radius: 999px;
  border: none;
  padding: 10px 22px;
  background: #ff9b1a;
  color: #000;
  font-size: 0.9rem;
  cursor: pointer;
}

/* review item */
.pd-rev-list {
  border-top: 1px solid #eee0d9;
  padding-top: 18px;
  margin-top: 4vh;
  margin-bottom: 4vh;
}

.pd-rev-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 2vh;
  border-bottom: 1px solid rgba(189, 189, 189, 0.664);
}

.pd-rev-avatar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8dde5;
}

.pd-rev-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 950px;
  margin-bottom: 2vh;
}

.pd-rev-title-small {
  margin: 2px 0 4px;
  font-size: 0.95rem;
}

.pd-rev-date {
  font-size: 0.8rem;
  color: #7a6a62;
  font-weight: bold;
}

.pd-rev-author {
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: #555;
}

.pd-rev-country {
  font-size: 0.75rem;
  margin-left: 4px;
}

.pd-rev-text {
  margin: 0;
  font-size: 0.9rem;
}

/* responsive */
@media (max-width:768px) {
  .pd-rev-summary {
    grid-template-columns: minmax(0, 1fr);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pd-rev-bars {
    min-width: 260px;
  }

  .pd-rev-write {
    justify-content: center;
  }

  .pd-rev-item {
    flex-direction: row;
  }

  .pd-rev-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .pd-rev-date {
    margin-top: 2vh;
    font-weight: 300;
  }
}


/* overlay */
.rev-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.rev-modal-overlay.show {
  display: flex;
}

/* modal box */
.rev-modal {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px 18px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.rev-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e3d7d0;
  background: #fff;
  cursor: pointer;
}

.rev-modal-title {
  text-align: center;
  font-size: 1.05rem;
  margin: 0 0 16px;
}

/* rating */
.rev-rating {
  margin-bottom: 14px;
}

.rev-rating-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.rev-stars {
  font-size: 1.6rem;
  color: #d0d7e5;
  cursor: pointer;
}

.rev-stars span {
  margin-right: 3px;
}

.rev-stars span.active {
  color: #ff9b1a;
}

/* fields */
.rev-field {
  margin-bottom: 12px;
}

.rev-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: #7a6a62;
}

.rev-field input,
.rev-field textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e3d7d0;
  font-size: 0.85rem;
  padding: 8px 10px;
  resize: vertical;
}

/* buttons */
.rev-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.rev-btn-secondary {
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  background: #fff;
  color: #3b3430;
  padding: 8px 18px;
  font-size: 0.85rem;
  cursor: pointer;
}

.rev-btn-primary {
  border-radius: 999px;
  border: none;
  background: #244c7a;
  color: #fff;
  padding: 9px 20px;
  font-size: 0.85rem;
  cursor: pointer;
}

/* responsive */
@media (max-width:768px) {
  .rev-modal {
    margin: 0 16px;
    padding: 18px 16px 16px;
  }
}




/* ===== Wishlist Page ===== */

.wl-page {
  padding: 24px 5vw 80px;
  background: #fff;
}

.wl-title {
  font-size: 1.6rem;
  margin: 0 0 20px;
}

/* grid */
.wl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* card */
.wl-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2vh;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.wl-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f4e1d5;
  height: 360px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.wl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

/* icons on top right */
.wl-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wl-icon-heart,
.wl-icon-more {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.wl-icon-heart i {
  color: #e63c6b;
}

.wl-icon-more i {
  color: #555;
}

/* text */
.wl-name {
  margin: 10px 0 4px;
  font-size: 0.85rem;
  margin-left: 1vw;
}

.wl-name a {
  text-decoration: none;
  color: #757474;
}

.wl-price {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 10px 1vw;
}

/* button */
.wl-cta {
  margin-top: auto;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width:1024px) {
  .wl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:768px) {
  .wl-page {
    padding: 16px 4vw 70px;
  }

  .wl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .wl-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}

@media (max-width:480px) {
  .wl-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* ===== Cart page ===== */

.cart-page {
  padding: 20px 5vw 80px;
  background: #fff;
  font-size: 0.9rem;
}

/* steps */
.cart-steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.cart-steps .step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9a8175;
}

.step-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d9dde3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.step.active .step-circle {
  border-color: #00a368;
}

.step.active span:last-child {
  color: #00a368;
}

.step.done .step-circle {
  background: #00a368;
  border-color: #00a368;
  color: #fff;
}

/* layout */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 24px;
}

/* items list */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* single item card */
.cart-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 16px 18px 10px;
}

.cart-item-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.cart-thumb {
  position: relative;
  width: 140px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5e0d3;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* info */
.cart-info {
  min-width: 0;
}

.cart-name {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.cart-name a {
  text-decoration: none;
  color: #3b3430;

}

.cart-price {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-mrp {
  text-decoration: line-through;
  font-weight: 400;
  color: #9a8175;
  font-size: 0.85rem;
  margin-left: 4px;
}

.cart-off {
  color: #e53935;
  font-size: 0.8rem;
  margin-left: 4px;
}

.cart-tax {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: #9a8175;
}

/* qty row */
.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  overflow: hidden;
}

.cart-qty-btn {
  width: 28px;
  height: 26px;
  border: none;
  background: #f7f1ed;
  cursor: pointer;
}

.cart-qty span {
  min-width: 24px;
  text-align: center;
}

/* heart */
.cart-wish-btn {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* footer row */
.cart-item-footer {
  margin-top: 10px;
  border-top: 1px solid #f1e5de;
  padding-top: 8px;
}

.cart-delete {
  border: none;
  background: none;
  color: #d26b5f;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* summary column */
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* login + coupons */
.cart-login-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #f0e5df;
  background: #fdf5ee;
}

.cart-login-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-login-title {
  margin: 0;
  font-size: 0.9rem;
}

.cart-login-link {
  margin: 0;
  font-size: 0.8rem;
  color: #a0173a;
}

.cart-login-arrow {
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
}

/* summary box */
.cart-summary-box {
  padding: 14px 16px 16px;
  border-radius: 10px;
  border: 1px solid #f0e5df;
  background: #fff;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5vh;
  font-size: 0.85rem;
}

.cart-row-discount span:last-child {
  color: #e53935;
}

.cart-summary-remove {
  border: none;
  background: none;
  cursor: pointer;
  margin-left: 4px;
}

.cart-row-total {
  font-weight: 600;
}

.cart-primary-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  padding: 11px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}

.cart-secondary-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  background: #fff;
  color: #3b3430;
  padding: 10px 0;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width:992px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary {
    order: -1;
  }
}

@media (max-width:768px) {
  .cart-page {
    padding: 16px 4vw 80px;
  }

  .cart-item-main {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cart-wish-btn {
    position: absolute;
    right: 0px;
    top: 120px;
    width: 30px;
    height: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .cart-item {
    padding: 12px 12px 8px;
  }

  .cart-thumb {
    width: 110px;
    height: 150px;
  }
}

/* overlay */
.cpn-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 11000;
}

.cpn-overlay.show {
  display: flex;
}

/* modal box */
.cpn-modal {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cpn-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e3d7d0;
  background: #fff;
  cursor: pointer;
}

.cpn-title {
  font-size: 1rem;
  margin: 0 0 14px;
}

/* input row */
.cpn-input-row {
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  padding: 4px 6px 4px 14px;
  margin-bottom: 16px;
}

.cpn-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.cpn-apply-link {
  border: none;
  background: none;
  color: #a0173a;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 10px;
}

/* available coupons */
.cpn-subtitle {
  font-size: 0.9rem;
  margin: 0 0 8px;
}

/* coupon card */
.cpn-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #f0e5df;
  background: #fdf5ee;
  padding: 14px 16px;
  font-size: 0.85rem;
}

.cpn-code {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.cpn-main {
  margin: 0 0 4px;
  font-weight: 600;
}

.cpn-text {
  margin: 0;
  font-size: 0.8rem;
  color: #7a6a62;
}

.cpn-tnc {
  color: #244c7a;
  font-weight: 600;
}

/* status pill */
.cpn-pill {
  align-self: center;
  border-radius: 999px;
  border: none;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  background: #f7e0eb;
  color: #a0173a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cpn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a0173a;
}

/* responsive */
@media (max-width:768px) {
  .cpn-modal {
    margin: 0 12px;
    padding: 16px 14px 18px;
  }

  .cpn-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .cpn-pill {
    justify-content: flex-start;
  }
}



/* ===== Address page ===== */
.addr-page {
  padding: 20px 5vw 80px;
  background: #fff;
  font-size: 0.9rem;
}

/* progress bar */
.addr-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.addr-step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9a8175;
}

.addr-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d9dde3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: #fff;
}

.addr-step.done .addr-circle {
  background: #00a368;
  border-color: #00a368;
  color: #fff;
}

.addr-step.done span:last-child {
  color: #00a368;
}

.addr-circle-active {
  border-color: #00a368;
  color: #00a368;
}

.addr-step.active span:last-child {
  color: #00a368;
}

/* layout */
.addr-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.addr-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* address card */
.addr-address-card {
  border-radius: 10px;
  border: 1px solid #e3d7d0;
  padding: 14px 16px;
  background: #fff;
}

.addr-address-card.selected {
  border-color: #a0173a;
  box-shadow: 0 0 0 1px rgba(160, 23, 58, 0.15);
}

.addr-address-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.addr-badge {
  font-size: 0.8rem;
  color: #a0173a;
  font-weight: 600;
}

.addr-menu-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.addr-name {
  margin: 0 0 4px;
  font-weight: 600;
}

.addr-text {
  margin: 0 0 4px;
  font-size: 0.85rem;
}

.addr-phone {
  margin: 0 0 8px;
  font-size: 0.85rem;
}

/* add new address form card */
.addr-address-form {
  border-radius: 10px;
  border: 1px dashed #e3d7d0;
  padding: 14px 16px 16px;
  background: #fff;
}

.addr-subtitle {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.addr-field {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.addr-field span {
  display: block;
  margin-bottom: 3px;
  color: #7a6a62;
}

.addr-field input,
.addr-field textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e3d7d0;
  padding: 7px 8px;
  font-size: 0.85rem;
}

/* buttons */
.addr-primary-btn {
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  padding: 9px 18px;
  font-size: 0.9rem;
  cursor: pointer;
}

.addr-secondary-btn {
  margin-top: 6px;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid #e3d7d0;
  background: #fff;
  color: #3b3430;
  padding: 8px 16px;
  font-size: 0.85rem;
  cursor: pointer;
}

.addr-secondary-btn:hover {
  background: #a0173a;
  color: #fff;
}

/* right side */
.addr-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addr-delivery-box {
  border-radius: 10px;
  border: 1px solid #f0e5df;
  padding: 12px 14px;
  background: #fff;
}

.addr-delivery-title {
  margin: 0 0 8px;
  font-size: 0.85rem;
}

.addr-delivery-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.addr-delivery-row img {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .addr-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .addr-summary {
    order: -1;
  }
}

@media (max-width: 768px) {
  .addr-page {
    padding: 16px 4vw 70px;
  }

  .addr-steps {
    gap: 24px;
  }
}


/* ===== Checkout (payment) ===== */

.co-page {
  padding: 20px 5vw 80px;
  background: #fff;
  font-size: 0.9rem;
}

/* layout */
.co-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.co-main {
  display: flex;
  flex-direction: column;
}

/* headings */
.co-title {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.co-note {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: #a0173a;
}

/* payment cards */
.co-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.co-pay-card {
  border-radius: 10px;
  border: 1px solid #e3d7d0;
  background: #fff;
  padding: 14px 12px;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
}

.co-pay-card.active {
  border-color: #00a368;
  box-shadow: 0 0 0 1px rgba(0, 163, 104, 0.15);
}

.co-pay-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #7a6a62;
}

/* place order button in summary */
.co-place-btn {
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 999px;
  background: #a0173a;
  color: #fff;
  padding: 13px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}


/* responsive */
@media (max-width:992px) {
  .co-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary {
    order: -1;
  }
}

@media (max-width:768px) {
  .co-page {
    padding: 16px 4vw 80px;
  }

  .co-pay-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* ===== Order success ===== */

.os-page {
  padding: 20px 5vw 80px;
  background: #fff;
  font-size: 0.9rem;
}

.os-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: flex-start;
}

/* hero */
.os-hero {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.os-tick {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00a368;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.os-title {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.os-sub {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.os-order-id {
  margin: 0;
  font-size: 0.85rem;
  color: #7a6a62;
}

/* shared card */
.os-card {
  border-radius: 10px;
  border: 1px solid #f0e5df;
  background: #fff;
  padding: 14px 16px 12px;
  margin-bottom: 14px;
}

.os-card-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* order items */
.os-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f7ede6;
}

.os-item:last-of-type {
  border-bottom: none;
}

.os-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.os-item-info {
  min-width: 0;
}

.os-item-name {
  margin: 0 0 2px;
  font-size: 0.9rem;
}

.os-item-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #7a6a62;
}

.os-item-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* totals */
.os-total {
  margin-top: 6px;
}

.os-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.os-row-total {
  font-weight: 600;
}

/* side column */
.os-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.os-side-label {
  margin: 0 0 2px;
  font-size: 0.8rem;
  color: #7a6a62;
}

.os-side-text {
  margin: 0 0 8px;
  font-size: 0.85rem;
}

/* actions */
.os-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.os-btn-primary,
.os-btn-secondary {
  width: 100%;
  border-radius: 999px;
  padding: 10px 0;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.os-btn-primary {
  background: #a0173a;
  color: #fff;
}

.os-btn-secondary {
  background: #fff;
  color: #3b3430;
  border: 1px solid #e3d7d0;
}

/* responsive */
@media (max-width:992px) {
  .os-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .os-side {
    order: -1;
  }
}

@media (max-width:768px) {
  .os-page {
    padding: 16px 4vw 70px;
  }
}



/* CONTACT PAGE */
/* Layout basics */
.contact-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #fff;
}

.contact-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero */
.contact-hero {
  padding: 40px 0 24px;
  text-align: center;
  background: #fdf5f7;
}

.contact-hero h1 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-hero p {
  max-width: 520px;
  margin: 0 auto;
  color: #555;
}

/* Details grid */
.contact-details {
  padding: 32px 0 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.contact-card a {
  color: #c2185b;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Social list */
.contact-social {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.contact-social li {
  margin-bottom: 6px;
}

/* Map */
.contact-map {
  padding: 0 0 40px;
}

.contact-map h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .contact-hero {
    padding: 28px 0 18px;
  }

  .contact-hero h1 {
    font-size: 1.6rem;
  }
}



/* ABOUT PAGE */
.about-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #fff;
}

.about-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero */
.about-hero {
  padding: 48px 0 28px;
  text-align: center;
  background: #fdf5f7;
  border-bottom: 1px solid #f0e0d6;
}

.about-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #b56a7c;
  margin-bottom: 6px;
}

.about-hero h1 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Sections */
.about-section {
  padding: 36px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.about-text h2,
.about-values h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

/* Highlight box */
.about-highlight {
  background: #fff7f8;
  border-radius: 10px;
  padding: 18px 16px;
  border: 1px solid #f3d8df;
}

.about-highlight h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.about-highlight ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #444;
}

.about-highlight li {
  margin-bottom: 6px;
}

/* Values */
.about-values {
  background: #fffaf4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.value-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1e0d4;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #444;
}

/* CTA */
.about-cta {
  padding: 40px 0 48px;
  text-align: center;
  background: #fdf5f7;
  border-top: 1px solid #f0e0d6;
}

.about-cta h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-cta p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: #555;
  font-size: 0.98rem;
}

.btn-primary {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: #b0174b;
  color: #fff;
  font-size: 0.96rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #930f3d;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 32px 0 22px;
  }

  .about-hero h1 {
    font-size: 1.7rem;
  }

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

  .about-section {
    padding: 28px 0;
  }
}


/* --------------xx----------SEE ORDERS --------------XX----------------- */

.orders-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.orders-header h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.orders-header p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.orders-empty {
  margin-top: 20px;
  color: #666;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-card {
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #f0e0d6;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.order-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  border-color: #e0b9c5;
}

.order-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}


.order-id {
  font-weight: 600;
  font-size: 0.98rem;
}

.order-date {
  font-size: 0.86rem;
  color: #777;
}

.order-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.8rem;
}

.order-status {
  padding: 2px 8px;
  border-radius: 999px;
  background: #e9f5ff;
  color: #246eb3;
}

.order-pay {
  padding: 2px 8px;
  border-radius: 999px;
  background: #fdf0f4;
  color: #b0174b;
}

.order-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 4px;
}

.order-total-label {
  color: #666;
}

.order-total {
  font-weight: 600;
}

.order-link {
  color: #b0174b;
  font-size: 0.86rem;
}


.order-thumb {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f3f0;
}

.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-main-info {
  flex: 1 1 auto;
  min-width: 0;
}

.order-info-line {
  font-size: 1rem;
  color: rgba(0, 128, 0);
  margin-top: 2px;
}

.order-items {
  color: #555;
}

@media (max-width: 600px) {
  .order-card-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .order-status-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
  }
}


/* --------------xx----------TRACK ORDERS --------------XX----------------- */
.to-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header */
.to-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.to-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.to-sub {
  margin-top: 4px;
  color: #555;
  font-size: 0.95rem;
}

.to-sub-small {
  margin-top: 2px;
  color: #777;
  font-size: 0.86rem;
}

.to-amount-box {
  text-align: right;
}

.to-amount-label {
  font-size: 0.85rem;
  color: #777;
}

.to-amount-val {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Timeline */
.to-timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0 24px;
}

.to-step {
  flex: 1 1 0;
  text-align: center;
  position: relative;
}

.to-step::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #e4d2c5;
  z-index: 0;
}

.to-step:last-child::after {
  display: none;
}

.to-step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #e4d2c5;
  background: #fff;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}

.to-step-label {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #777;
}

.to-step.done .to-step-circle {
  background: #b0174b;
  border-color: #b0174b;
  color: #fff;
}

.to-step.done .to-step-label {
  color: #333;
}

/* Layout */
.to-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 22px;
}

.to-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0e0d6;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  padding: 16px 16px 14px;
}

.to-card-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

/* Items */
.to-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5e7de;
}

.to-item:last-child {
  border-bottom: none;
}

.to-item-thumb {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f3f0;
}

.to-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.to-item-info {
  flex: 1 1 auto;
}

.to-item-name {
  font-size: 0.95rem;
}

.to-item-meta {
  font-size: 0.82rem;
  color: #777;
  margin-top: 2px;
}

.to-item-price {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Totals */
.to-total-box {
  margin-top: 10px;
  font-size: 0.9rem;
}

.to-row {
  display: flex;
  justify-content: space-between;
  margin: 3px 0;
}

.to-row-total span:last-child {
  font-weight: 600;
}

/* Side */
.to-side-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.to-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.to-btn,
.to-btn-secondary {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #b0174b;
  background: #b0174b;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}

.to-btn-secondary {
  background: #fff;
  color: #b0174b;
}

/* Responsive */
@media (max-width: 800px) {
  .to-layout {
    grid-template-columns: 1fr;
  }

  .to-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-timeline {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .to-step::after {
    display: none;
  }

  .to-amount-label {
    text-align: start;
    font-size: 1rem;
  }
}


/* =================BLOG DESGINE===================== */

:root {
  --brand: #a0173a;
  --brand2: #c02a52;
  --pink: #f7e9ee;
  --text: #121212;
  --muted: #666;
  --card: #fff;
  --border: #f1f1f1;
  --shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

/* ===== CREATIVE HERO ===== */
.blog-hero {
  background: var(--pink);
  padding: 52px 16px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}


.blog-hero__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== WRAP ===== */
.blog-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 70px;
}

/* ===== GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

/* ===== CARD ===== */
.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

/* media with fixed ratio */
.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eee;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .55) 100%);
}

/* BODY */
.blog-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* META */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 13px;
}

.blog-card__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: #bbb;
  display: inline-block;
}

/* LIMIT TITLE LINES (keeps card height consistent) */
.blog-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .2px;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* limit title to 2 lines [web:720] */
  overflow: hidden;
}

/* LIMIT EXCERPT LINES (keeps card height consistent) */
.blog-card__excerpt {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 14px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* limit excerpt to 3 lines [web:720] */
  overflow: hidden;
}

/* CTA */
.blog-card__cta {
  margin-top: auto;
}

/* ONE BUTTON - LIGHT COLOR */
.btn {
  display: inline-block;
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 13px;
  border: 1px solid transparent;
  user-select: none;
  text-align: center;
}

.btn--light {
  background: #fff4f7;
  /* light */
  color: var(--brand);
  border-color: rgba(160, 23, 58, .22);
}

.btn--light:hover {
  background: #ffe6ee;
}

/* LOAD MORE */
.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.load-more {
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
  text-decoration: none;
  color: #222;
}

.load-more:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .blog-hero h1 {
    font-size: 34px;
  }

  .blog-hero {
    padding: 50px 16px;
  }
}

/* Blog detail page desgine */
:root {
  --brand: #a0173a;
  --text: #121212;
  --border: #f1f1f1;
  --shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.bd-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 70px;
}

.bd-cover {
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}

.bd-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-meta {
  margin-top: 14px;
  color: #777;
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.bd-title {
  margin: 10px 0 10px;
  font-size: 34px;
  letter-spacing: .3px;
  color: var(--text);
}

.bd-excerpt {
  margin: 0 0 14px;
  color: #555;
  line-height: 1.85;
  font-size: 15px;
}

.bd-content {
  color: #222;
  line-height: 1.95;
  font-size: 15px;
}

.bd-content p {
  margin: 0 0 14px;
}

/* === ALL images in SAME LINE (row) and CENTER aligned === */
.bd-inline-images {
  display: flex;
  justify-content: center;
  /* center items in row [web:873] */
  flex-wrap: wrap;
  /* wrap to next line on small screens [web:878] */
  gap: 12px;
  margin: 18px 0 22px;
}

.bd-inline-images img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  display: block;
}

/* Links */
.bd-links {
  margin-top: 26px;
}

.bd-links h2 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 900;
}

.bd-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.bd-link-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bd-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.bd-link-img {
  height: 280px;
  background: #eee;
}

.bd-link-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-link-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bd-link-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #111;
  line-height: 1.35;
}

.bd-link-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  background: #fff4f7;
  color: var(--brand);
  border-color: rgba(160, 23, 58, .22);
}

.bd-link-note {
  font-size: 12px;
  color: #777;
  margin-top: -6px;
}

@media (max-width: 600px) {
  .bd-title {
    font-size: 26px;
  }

  .bd-inline-images img {
    width: 140px;
    height: 140px;
  }
}

/* ===============REward modal desgine ===================*/
.rw-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  /* background: rgba(10, 8, 18, .62); */
  backdrop-filter: blur(6px);
  z-index: 99999;
}

.rw-overlay.rw-show {
  display: flex;
}

.rw-modal {
  width: min(560px, 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(255, 0, 128, .35), transparent 70%),
    radial-gradient(900px 380px at 90% 10%, rgba(0, 204, 255, .30), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
}

.rw-modal::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(300px 160px at 15% 20%, rgba(255, 255, 255, .22), transparent 70%),
    radial-gradient(260px 160px at 90% 40%, rgba(255, 255, 255, .16), transparent 70%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.rw-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.rw-close:hover {
  background: rgba(0, 0, 0, .35);
}

.rw-badge {
  display: inline-block;
  margin: 18px 18px 6px 18px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .18);
}

.rw-title {
  margin: 6px 18px 8px 18px;
  font-size: 28px;
  line-height: 1.1;
}

.rw-desc {
  margin: 0 18px 14px 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 14.5px;
  line-height: 1.45;
}

.rw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 18px 14px 18px;
}

.rw-step {
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
}

.rw-stepTop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.rw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2aa1, #35d5ff);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}

.rw-stepTitle {
  font-weight: 700;
  font-size: 13px;
}

.rw-stepSub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .78);
}

.rw-ctaRow {
  display: flex;
  gap: 10px;
  padding: 0 18px 16px 18px;
  align-items: center;
}

.rw-ctaPrimary {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  border-radius: 14px;
  text-decoration: none;
  color: #081018;
  font-weight: 800;
  background: linear-gradient(135deg, #35d5ff, #ff2aa1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.rw-ctaPrimary:hover {
  filter: brightness(1.05);
}

.rw-ctaGhost {
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .18);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.rw-ctaGhost:hover {
  background: rgba(0, 0, 0, .28);
}

.rw-footNote {
  padding: 0 18px 18px 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
}

/* Responsive */
@media (max-width: 520px) {
  .rw-title {
    font-size: 24px;
  }

  .rw-steps {
    grid-template-columns: 1fr;
  }

  .rw-ctaRow {
    flex-direction: column;
  }

  .rw-ctaGhost,
  .rw-ctaPrimary {
    width: 100%;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: no-preference) {
  .rw-modal {
    transform: translateY(10px) scale(.98);
    opacity: 0;
  }

  .rw-overlay.rw-show .rw-modal {
    animation: rwPop .35s ease-out forwards;
  }

  @keyframes rwPop {
    to {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
}

















/* ALL RESPONSIVE CODE */
/* Extra Small - Phones portrait (0-479px) */
@media (max-width: 479px) {
  
}

/* Small - Phones landscape/small tablets (480-767px) */
@media (min-width: 480px) and (max-width: 767px) {

}

/* Medium - Tablets portrait (768-991px) */
@media (min-width: 768px) and (max-width: 991px) {
  
}

/* Large - Tablets landscape/small laptops (992-1199px) - YOUR CURRENT DESKTOP */
@media (min-width: 992px) and (max-width: 1199px) {
  
}

/* Extra Large - Laptops (1200-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  
}

/* 2XL - Large desktops/TVs (1400px+) */
@media (min-width: 1400px) {
  
}
