.hdr-ttl {
  display: flex;
  flex-direction: column;
  /* gap: 1px; */
}
.subtitle-txt {
  color: #636363;
  font-size: 16px;
  font-weight: 400;
}
.hdr-ttl h2 {
  /* font-family: "PublicSans Bold"; */
  font-family: "Helvetica Neue", Arial, sans-serif Bold;
  margin: 0 !important;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 25px;
}
@media (min-width: 1020px) {
  .container-lg-fluid {
    padding: 0 14px 0 20px !important;
  }
  .pd {
    margin: 0 14px 0 24px !important;
  }
  .pad {
    margin: 0 24px 0 34px !important;
  }
}
.img-label {
  margin-top: 5px;
  font-size: 15px;
  font-family: "PublicSans Extra-Light";
  color: #121212;
}


/* =============================================================================== */
/* Slider Seven cards  */

@media (min-width: 760px) {
  .polaroid-row {
    display: flex !important;
    flex-wrap: nowrap !important; /* 🔥 prevents wrapping */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
    /* box-sizing: border-box; */
  }
  .spolaroid-row::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
  }
}

@media (min-width: 1339px) {
  .product-image-w img {
    height: 144px;
    width: 144px;
  }
}

.product-image-w h5 {
  margin-top: 5px;
}
/* =============================================================================== */

@media (min-width: 1320px) {
  .banner-1 img {
    width: 1280px !important;
    border-radius: 16px;
  }
}
.banner-1 img {
  border-radius: 16px;
}
/* =============================================================================== */

/* **************************************************** */
/* Three card design  */

.card-three-section img {
  width: 90%;
  align-content: center;
  align-items: center;
}
/* **************************************************** */
.card-2x8-section .product-wrapper {
  display: grid;
  grid-auto-flow: column; 
  grid-template-rows: repeat(2, auto); 
  grid-auto-columns: calc(100% / 6.5);
  gap: 1px;
  overflow-x: auto;
  padding: 0 30px 0 10px;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.card-2x8-section .product-wrapper::-webkit-scrollbar {
  display: none;
}
.card-2x8-section .product-wrapper {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-2x8-section .product-wrap {
  scroll-snap-align: start;
}

.card-2x8-section img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  align-content: center;
  align-items: center;
}

@media (max-width: 500px) {
  .card-2x8-section .product-wrapper {
    grid-auto-columns: calc(100% / 3);
  }
  .card-2x8-section img {
    width: 126px;
    height: 126px;
  }
  .card-2x8-section .product-wrapper {
    padding: 0 10px 0 10px;
  }
}

/* **************************************************** */

@media (max-width: 800px) {
  .card-six-section .polaroid-row {
    gap: 10px;
    display: flex !important;
    flex-wrap: nowrap !important; /* 🔥 prevents wrapping */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
  }
  .spolaroid-row::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
  }
}

.card6 .product-banner img {
  background: #ffffff;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

/* Cards 5.5 shows */

.slides-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: #dd2745;
  cursor: pointer;
  background-color: transparent;
}

/* ── Scrollbar (Windows) ───────────────────────────────── */
.win ::-webkit-scrollbar {
  width: 10px;
  padding: 0;
}
.win ::-webkit-scrollbar-button {
  display: none;
}
.win ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}
.win ::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* ── Utility ───────────────────────────────────────────── */
.no-margin {
  margin: 0;
}
.fit-content {
  width: fit-content;
}
.no-background {
  background: none;
}
.img-responsive {
  max-width: 100%;
  display: block;
}

/* **************************************************** */

/* **************************************************** */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #fff8f0;
  --blush: #fdeee6;
  --rose: #e8856a;
  --rose-dk: #c45e44;
  --rose-lt: #fcddd3;
  --gold: #d4a853;
  --gold-lt: #fdf3e3;
  --charcoal: #2c2016;
  --warm-700: #5c3d28;
  --warm-500: #8c6040;
  --warm-300: #c8a882;
  --warm-100: #f5ede3;
  --border: rgba(200, 168, 130, 0.35);
  --shadow-sm: 0 2px 12px rgba(44, 32, 22, 0.08);
  --shadow-md: 0 8px 32px rgba(44, 32, 22, 0.14);
  --radius-card: 20px;
  --radius-btn: 50px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

.product-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  border-radius: 12px;
  padding: 4px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.product-grid::-webkit-scrollbar {
  display: none;
}

/* C

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-lt);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-title span {
  color: var(--rose);
}

/* ── Carousel wrapper ── */
.product-card-section {
  position: relative;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.product-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding: 10px 5px;

  scroll-behavior: smooth;
}

.product-card {
  min-width: 320px;
  max-width: 220px;
  flex: 0 0 auto;
}

/* .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
} */

/* @media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} */

@media (max-width: 780px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
  }
}

/* ── Product Card ── */
.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:nth-child(1) {
  animation-delay: 0s;
}

.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

.product-card:nth-child(4) {
  animation-delay: 0.24s;
}

.product-card:nth-child(5) {
  animation-delay: 0.32s;
}

.product-card:nth-child(6) {
  animation-delay: 0.4s;
}

/* ── Image area ── */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--warm-100);
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.wishlist-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.wishlist-btn svg {
  width: 16px;
  height: 16px;
}

.wishlist-btn.active svg {
  fill: var(--rose);
  stroke: var(--rose);
}

/* ── Card body ── */
.card-body {
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.card-name {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2e2d42;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  /* margin-top: auto; */
}

.card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.card-price .currency {
  font-size: 15px;
  font-weight: 600;
  margin-right: 1px;
}

.card-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--warm-700);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--warm-700);
}
.star-icon {
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.rating-count {
  color: #572bc7;
  font-weight: 400;
}

/* ── Delivery tag ── */
.delivery-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  width: fit-content;
}

.delivery-tag.same-day {
  background: #eaf4ec;
  color: #2a7a3b;
}

.delivery-tag.next-day {
  background: var(--gold-lt);
  color: #7a5a18;
}

.delivery-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ── Add to cart button ── */
.btn-add {
  margin-top: 12px;
  width: 90px;
  padding: 6px;
  background: #572bc7;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s ease;
}

.btn-add:hover {
  background: #fff;
  color: #572bc7;
  border: 1px solid #572bc7;
  transform: scale(1.02);
}

.btn-add:active {
  transform: scale(0.98);
}

/* ── Nav arrows ── */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}

.nav-arrow:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.nav-arrow:hover svg path {
  stroke: #fff;
}

.nav-arrow:active {
  transform: scale(0.94);
}

.nav-arrow svg {
  width: 18px;
  height: 18px;
}

.nav-arrow svg path {
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

/* Other style  */

/* =============================================================================== */
@media (min-width: 1320px) {
  .sel-panel {
    /* max-width: 1270px; */
    display: flex;
    /* justify-content: center; */
  }
}

/* ── Section wrapper ── */
#selection-panel {
  /* display: flex; */
  margin-bottom: 24px;
  /* justify-content: center; */
}

/* ── Panel container ── */
.sel-panel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  border: 1.5px solid #6c3e27;
  border-radius: 12px;
  padding: 2px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.sel-panel::-webkit-scrollbar {
  display: none;
} /* Chrome/Safari */

/* ── Individual tile ── */
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #6c3e27;
  padding: 2px 35px 0px;
  min-width: 120px;
  flex: 0 0 auto;
  gap: 8px;
  border-right: 1.5px solid #6c3e27;
  transition: background 0.18s ease;
}
.tile:last-child {
  border-right: none;
}
.tile:hover {
  background: #fff5f3;
  border-radius: 10px;
}

.tile img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: sepia(30%) saturate(60%) hue-rotate(330deg) brightness(0.75);
}

.tile h5 {
  /* width: 50px; */
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: #5a3e38;
  white-space: nowrap;
}

/* ── Mobile: 4×2 grid ── */
@media (max-width: 600px) {
  .sel-panel {
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0;
  }

  .tile {
    flex: 0 0 25%; /* 4 columns */
    width: 25%;
    min-width: 0;
    border-right: 1.5px solid #e8d5d0;
    border-bottom: 1.5px solid #e8d5d0;
    padding: 14px 6px 10px;
    gap: 8px;
  }

  /* Remove right border on every 4th tile */
  .tile:nth-child(4n) {
    border-right: none;
  }

  /* Remove bottom border on last row */
  .tile:nth-last-child(-n + 4) {
    border-bottom: none;
  }

  .tile h5 {
    white-space: normal;
    font-size: 11px;
    font-family: "PublicSans Extra-Light";
    text-align: center;
  }

  
  .tile img {
    width: 36px;
    height: 36px;
  }
}

/* =============================================================================== */

/* **************************************************** */
/* card-two-section */

.card-two-section img {
  background: #ffffff;
  border-radius: 10px;
  /* object-fit: fill !important; */
  width: 650px !important;
}
@media (max-width: 460px) {
  .card-two-section img {
    object-fit: fill !important;
  }
}

/* **************************************************** */
/* Product Card  */
.card-body p {
  line-height: 1 !important;
}

/* **************************************************** */
.banner-section img {
  border-radius: 16px !important;
}
/* **************************************************** */

/* ── Section wrapper ───────────────────────────────────── */
/* .home-slides {
  padding: 0 16px;
} */

/* ── Slides container ──────────────────────────────────── */
/* Hide scrollbar visually but keep scroll behavior */
.slides-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
}
.slides-container::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* ── Individual tile ───────────────────────────────────── */
.slides-tiles {
  width: auto;
  height: auto;
  padding-right: 10px;
  flex-shrink: 0;
}
/* .slides-container .slides-tiles:last-child {
  padding-right: 48px;
} */

.br-tile.slides-slicktile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.slides-img-container {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}
.slides-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slides-container-text {
  text-align: center;
  color: #000;
}
