/* ===========================
   QASR — Design Tokens
   Maroon:  #7a1338
   Navy:    #1d3a52
   Cream:   #f7f4ee
   Ink:     #1f2023
   =========================== */

:root {
  --maroon: #7a1338;
  --maroon-dark: #5c0e2a;
  --navy: #234258;
  --cream: #f7f4ee;
  --ink: #000000;
  --gray: #6d6a68;
  --line: #e6e2d9;
  --gold: #b48a4a;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --header-h: 76px;
}

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

html,
body {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

/* Prevent background scrolling when Modals, Offcanvas drawers, or Search drawer are open */
body.modal-open,
body.offcanvas-open,
body.search-open,
body.mobile-nav-open {
  overflow: hidden !important;
  touch-action: none;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Enforce overflow-x hidden on all page sections and wrappers */
section,
footer,
main,
.site-footer,
.row,
.hero-slider,
.trending-section,
.split-banner,
.story-strip,
.gifting-banner,
.art-section,
.testimonial-section,
.perfumer-section,
.gallery-strip,
.store-section,
.trust-strip,
.seo-block {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.section {
  padding: 70px 6vw;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: var(--maroon);
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .03em;
  padding: 9px 14px;
  font-family: var(--font-body);
}

.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 0 !important;
  z-index: 1040 !important;
  background: #ffffff !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
  overflow: visible !important;
}

@media (max-width: 991.98px) {
  .site-header {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1040 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  }
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  gap: 24px;
}

.logo {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-ring {
  font-size: 20px;
  border: 1.4px solid var(--ink);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.main-nav a::before,
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width .3s ease;
}

.main-nav a::before {
  top: 0;
}

.main-nav a::after {
  bottom: 0;
}

.main-nav a:hover::before,
.main-nav a:hover::after,
.main-nav a.active::before,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  font-weight: 700;
}

.main-nav a.sale {
  color: var(--maroon);
  font-weight: 700;
}

/* Categories Hover Dropdown */
.dropdown-hover:hover .categories-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.categories-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 260px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-top: 3px solid var(--maroon) !important;
  z-index: 1050;
}

.dropdown-hover:hover .categories-dropdown {
  transform: translateX(-50%) translateY(0);
}

.categories-dropdown .dropdown-item:hover {
  background-color: var(--cream);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover svg {
  stroke: var(--maroon);
}

.count-btn .count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--maroon);
  color: #fff;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

/* Mobile Nav Drawer */
.main-nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  border-top: 1px solid var(--line);
  z-index: 1000;
}

.main-nav-mobile.open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 20px;
}

.main-nav-mobile a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink);
  border-bottom: 1px solid #f2f2f2;
}

.main-nav-mobile a.active {
  color: var(--maroon);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.mobile-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: all .3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-drawer {
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  transition: max-height .35s ease, padding .35s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4vw;
}

.search-drawer.open {
  max-height: 70px;
  padding: 16px 4vw;
}

.search-drawer input {
  flex: 1;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--ink);
  padding: 8px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.search-drawer button {
  font-size: 22px;
  line-height: 1;
}

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 78vh;
  min-height: 460px;
  max-height: 720px;
}

.hero-slide {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%), var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
}

.hero-content {
  padding-left: 7vw;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  letter-spacing: .35em;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.hero-sub {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: .2em;
  color: #f1f5f9;
  font-weight: 500;
}

.hero-pagination {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .35;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-next,
.hero-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .7;
}

.hero-next:hover,
.hero-prev:hover {
  opacity: 1;
}

.hero-next {
  right: 18px;
}

.hero-prev {
  left: 18px;
}

.hero-next svg,
.hero-prev svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
}

.fragrance-finder-tab {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  background: var(--cream);
  color: var(--maroon);
  writing-mode: vertical-rl;
  padding: 18px 10px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 600;
  border: 1px solid var(--line);
  border-right: none;
  z-index: 90;
  box-shadow: -2px 0 8px rgba(0, 0, 0, .05);
}

/* ============ SECTION TITLE ============ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: .01em;
}

/* ============ TRENDING PRODUCTS ============ */
.trending-section {
  position: relative;
  padding-bottom: 40px;
}

.trendingSwiper {
  padding: 4px 4px 10px;
}

.product-card {
  text-align: center;
  cursor: pointer;
}

.product-img {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 2px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-name {
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 6px;
  min-height: 34px;
  line-height: 1.4;
  font-weight: 500;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--maroon);
}

.product-price .strike {
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 6px;
}

.trending-nav {
  position: absolute;
  top: -68px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.trending-nav:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.trending-nav:hover svg {
  stroke: #fff;
}

.trending-nav svg {
  width: 16px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
}

.trending-next {
  right: 6vw;
}

.trending-prev {
  right: calc(6vw + 44px);
}

/* ============ FOR HIM / FOR HER SPLIT ============ */
.split-banner {
  width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.split-banner .row {
  width: 100%;
  margin: 0;
  min-height: 480px;
}

.split-half {
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .5)), var(--img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 46px;
  overflow: hidden;
}

.split-half::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .6s ease;
  z-index: -1;
}

.split-half:hover::before {
  transform: scale(1.08);
}

.split-label {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: .12em;
}

/* ============ STORY STRIP ============ */
.story-strip {
  padding-top: 60px;
  padding-bottom: 60px;
}

.story-card {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 45%), var(--img);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  cursor: pointer;
}

.story-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.05);
  z-index: 1;
}

.story-card:hover .story-video {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.story-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0;
}

.play-btn {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-bottom: auto;
  transition: all 0.3s ease;
}

.story-card:hover .play-btn {
  background: var(--gold, #b48a4a);
  color: #ffffff;
  transform: scale(1.1);
}

.contact-card {
  background: var(--maroon);
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 16px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 22px;
  font-size: 12px;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: all .25s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--maroon);
}

/* ============ GIFTING BANNER ============ */
.gifting-banner {
  width: 100%;
  min-height: 460px;
  background: #f3e3da;
  overflow: hidden;
}

.gifting-banner .row {
  width: 100%;
  margin: 0;
}

.gifting-img {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.gifting-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6vw;
}

.gifting-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--maroon-dark);
  line-height: 1.15;
  margin-bottom: 22px;
}

.gifting-text p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4a4340;
  margin-bottom: 30px;
  max-width: 480px;
}

.btn-outline {
  border: 1px solid var(--maroon-dark);
  color: var(--maroon-dark);
  padding: 12px 32px;
  font-size: 12.5px;
  letter-spacing: .1em;
  font-weight: 600;
  border-radius: 2px;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: var(--maroon-dark);
  color: #fff;
}

/* ============ ART OF PERFUMES (EXACT MATCH TO REFERENCE) ============ */
.art-section {
  width: 100%;
  min-height: 480px;
  background: #201f22;
  overflow: hidden;
}

.art-section .row {
  width: 100%;
  margin: 0;
}

.art-img-container,
.art-text-container {
  perspective: 1000px;
  background: #201f22;
  min-height: 480px;
}

.art-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, filter 0.4s ease;
  transform-style: preserve-3d;
}

.art-img.flip-anim {
  transform: rotateY(90deg) scale(0.92);
  opacity: 0.2;
  filter: blur(4px);
}

.artSwiper.flip-text-anim .swiper-slide-active {
  transform: rotateY(-90deg) scale(0.92);
  opacity: 0.2;
  filter: blur(4px);
}

.art-text {
  background: #201f22;
  color: #ffffff;
  padding: 60px 8vw;
  position: relative;
}

.artSwiper {
  width: 100%;
  max-width: 520px;
}

.art-slide-title {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}

.art-slide-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1cfcb;
  max-width: 440px;
}

.art-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 10px;
}

.art-arrow-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.25);
}

.art-prev {
  left: 24px;
}

.art-next {
  right: 24px;
}

.art-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.art-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #ffffff;
  opacity: 0.35;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.art-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

/* ============ TESTIMONIALS ============ */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 14px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-count {
  font-size: 14px;
  color: var(--gray);
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
  padding-bottom: 2px;
}

.testimonial-section {
  position: relative;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  height: 100%;
  background: #fff;
}

.review-date {
  font-size: 11.5px;
  color: var(--gray);
  margin-bottom: 10px;
}

.review-name {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verified {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.testi-nav {
  position: absolute;
  top: 38%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  background: #fff;
  transition: all .25s ease;
  z-index: 5;
}

.testi-nav:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

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

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

/* ============ PERFUMER SECTION ============ */
.perfumer-section {
  width: 100%;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.perfumer-section .row {
  width: 100%;
  margin: 0;
}

.perfumer-img {
  position: relative;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1547887537-6158d64c35b3?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 460px;
}

.perfumer-overlay {
  position: absolute;
  inset: 0;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.perfumer-overlay .tag {
  font-size: 12px;
  color: #c9a15a;
  margin-bottom: 24px;
  max-width: 320px;
  letter-spacing: .02em;
}

.perfumer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: .05em;
}

.perfumer-brand .x {
  color: var(--gold);
}

.perfumer-caption {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.perfumer-caption em {
  font-style: italic;
  color: var(--gold);
}

.perfumer-sub {
  font-size: 11.5px;
  letter-spacing: .15em;
  color: #b7b2a9;
  margin-bottom: 26px;
}

.watch-yt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  padding: 12px 22px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 3px;
  width: fit-content;
  transition: all .25s ease;
}

.watch-yt:hover {
  background: var(--maroon);
  color: #fff;
}

.yt-icon {
  color: #e21b1b;
  font-size: 12px;
}

.perfumer-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw;
}

.perfumer-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 22px;
}

.perfumer-text p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #cfcac2;
}

/* ============ GALLERY STRIP ============ */
.gallery-strip {
  padding: 55px 6vw;
}

.gallery-card {
  aspect-ratio: 1/1.15;
  background-size: cover;
  background-position: center;
  background-image: var(--img);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .4s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-cta {
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 20px;
}

.gallery-cta strong {
  font-family: var(--font-display);
  font-size: 22px;
}

/* ============ STORE LOCATOR ============ */
.store-section {
  background: var(--cream);
  text-align: center;
}

.store-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-maroon {
  background: var(--maroon);
  color: #fff;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease;
}

.btn-maroon:hover {
  background: var(--maroon-dark);
}

.store-search {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.store-search input {
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 13px;
  width: 220px;
  font-family: var(--font-body);
}

.btn-outline-dark {
  background: var(--ink);
  color: #fff;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 300px;
}

.trust-icon {
  font-size: 22px;
  color: var(--maroon);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.trust-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============ SEO BLOCK ============ */
.seo-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.seo-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.seo-block p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
}

.know-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: .05em;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #d8d5cf;
  padding: 60px 4vw 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.footer-brand .logo-ring {
  border-color: #fff;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  white-space: normal;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #b8b4ac;
  margin-bottom: 10px;
  transition: color .2s ease;
  white-space: nowrap;
}

.footer-col a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s ease;
}

.social-icons a:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
  font-size: 12px;
  color: #8f8b83;
}

.payment-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.payment-badges span {
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ============ SCROLL TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 150;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ REVEAL ANIMATION BASE ============ */
.reveal {
  opacity: 0;
}

.reveal-up {
  opacity: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .perfumer-section {
    flex-direction: column;
  }

  .art-section {
    flex-direction: column;
  }

  .art-img {
    min-height: 280px;
  }

  .gifting-banner {
    flex-direction: column;
  }

  .gifting-img {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-bottom: 1px solid var(--line);
    z-index: 150;
  }

  .main-nav.open {
    max-height: 420px;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 6vw;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 4vw;
  }

  .logo {
    order: 0;
    margin: 0 auto;
  }

  .mobile-toggle {
    order: -1;
  }

  .header-icons {
    order: 1;
  }

  .split-banner,
  .split-banner .row {
    min-height: auto;
    height: auto;
  }

  .split-half {
    min-height: 280px;
    height: 280px;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 46px 5vw;
  }

  .hero-content {
    padding-left: 6vw;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 60px);
  }

  .heroSwiper {
    height: 62vh;
    min-height: 380px;
  }

  .gifting-text,
  .perfumer-text,
  .art-text {
    padding: 8vw 6vw;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-controls {
    flex-direction: column;
  }

  .store-search input {
    width: 60vw;
  }

  .fragrance-finder-tab {
    display: none;
  }

  .trending-nav {
    display: none;
  }
}




/* Card Animations for Smooth Filter Switching */
.product-card-col {
  animation: cardFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Circular Icon Badges */
.icon-badge-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background-color: var(--maroon, #7a1338);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(122, 19, 56, 0.15);
}

.shop-hero {
  background: var(--cream, #f7f4ee);
}

.shop-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--ink, #201f22);
}

.text-gold {
  color: var(--gold, #b48a4a) !important;
}

.bg-maroon {
  background-color: var(--maroon, #7a1338) !important;
}

.text-maroon {
  color: var(--maroon, #7a1338) !important;
}

.btn-maroon {
  background-color: var(--maroon, #7a1338);
  color: #ffffff;
  border: 1px solid var(--maroon, #7a1338);
  transition: all 0.25s ease;
}

.btn-maroon:hover {
  background-color: var(--maroon-dark, #5c0e2a);
  color: #ffffff;
  border-color: var(--maroon-dark, #5c0e2a);
}

.btn-outline-maroon {
  border-color: var(--maroon, #7a1338);
  color: var(--maroon, #7a1338);
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline-maroon:hover {
  background-color: var(--maroon, #7a1338);
  color: #ffffff;
}

/* Search Box */
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  font-size: 1rem;
}

.btn-clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.btn-clear-search:hover {
  color: #333;
}

.search-box input {
  height: 44px;
  border-radius: 6px;
  border-color: #ddd;
  font-size: 0.95rem;
}

.search-box input:focus {
  border-color: var(--maroon, #7a1338);
  box-shadow: 0 0 0 0.2rem rgba(122, 19, 56, 0.15);
}

/* Filter Sidebar */
.filter-title {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink, #201f22);
}

.custom-checkbox .form-check-input:checked {
  background-color: var(--maroon, #7a1338);
  border-color: var(--maroon, #7a1338);
}

.custom-checkbox .form-check-label {
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
}

.extra-small {
  font-size: 0.75rem;
}

/* Product Card Styling */
.product-card-shop {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  background: #f9f9f9;
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-shop:hover .product-img-wrapper img {
  transform: scale(1.06);
}

/* Badges & Wishlist Icon */
.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--maroon, #7a1338);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.03em;
}

.badge-tag {
  position: absolute;
  top: 38px;
  left: 12px;
  background: rgba(35, 66, 88, 0.9);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
}

.btn-wishlist-card {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.95rem;
  z-index: 2;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-wishlist-card:hover,
.btn-wishlist-card.active {
  background: #ffffff;
  color: #e63946;
  transform: scale(1.1);
}

/* Card Body */
.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888888;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-title-text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink, #201f22);
  margin-bottom: 6px;
  line-height: 1.3;
}

.notes-badge-wrap {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.note-badge {
  background: #f0ede6;
  color: #555;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 12px;
}

.stars {
  color: #f59e0b;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon, #7a1338);
}

.original-price {
  font-size: 0.88rem;
  color: #999;
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* Active Filter Chips */
.filter-chip {
  background: #eef2f5;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-chip button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
}

.filter-chip button:hover {
  color: var(--maroon, #7a1338);
}

/* Gold Utility Styles for Luxury Showcase */
.bg-gold {
  background-color: var(--gold, #b48a4a) !important;
  color: #111111 !important;
}

.btn-gold {
  background-color: var(--gold, #b48a4a);
  color: #111111;
  border: 1px solid var(--gold, #b48a4a);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #9a7337;
  color: #ffffff;
  border-color: #9a7337;
}

.border-gold {
  border-color: var(--gold, #b48a4a) !important;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold, #b48a4a);
  color: #111111 !important;
  border-color: var(--gold, #b48a4a);
  transform: translateY(-3px);
}

.hover-gold:hover {
  color: var(--gold, #b48a4a) !important;
  transition: color 0.2s ease;
}

/* Newsletter Input High-Contrast Placeholder */
.newsletter-input {
  color: #ffffff !important;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
  opacity: 1;
}

.newsletter-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

.newsletter-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVE ENHANCEMENTS (All Pages)
   ========================================================= */
@media (max-width: 991px) {
  .heroSwiper {
    height: 50vh;
    min-height: 360px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  .hero-content {
    padding-left: 5vw;
    max-width: 90%;
  }

  .shop-title {
    font-size: 1.4rem !important;
  }

  /* Filter Sidebar Offcanvas styling */
  .filter-sidebar {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    position: static !important;
  }

  /* Cart Offcanvas mobile sizing */
  .offcanvas.offcanvas-end {
    width: 88vw !important;
    max-width: 380px !important;
  }
}

/* ===== SPACING UTILITIES USED ON CHECKOUT FORM ===== */
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3\.5 { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ===== CHECKOUT PAYMENT OPTION CARDS ===== */
.payment-option-card {
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.payment-option-card:hover {
  border-color: var(--bs-maroon, #7a1f2b);
}
.payment-option-card:has(input:checked) {
  border-color: var(--bs-maroon, #7a1f2b);
  background: #fbf3f1;
  box-shadow: 0 0 0 1px var(--bs-maroon, #7a1f2b);
}

@media (max-width: 767px) {
  .announce-bar {
    font-size: 11px;
    padding: 7px 10px;
  }

  .header-inner {
    padding: 0 12px;
    height: 64px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header-icons {
    gap: 10px;
  }

  .icon-btn {
    width: 28px;
    height: 28px;
  }

  /* Swiper product cards mobile sizing */
  .trending-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .product-card-shop {
    margin-bottom: 10px;
  }

  .product-img-wrapper {
    height: 200px !important;
  }

  .product-title-text {
    font-size: 1rem !important;
  }

  .current-price {
    font-size: 1.05rem !important;
  }

  /* Banners Mobile Stack */
  .split-banner,
  .split-banner .row {
    min-height: auto !important;
  }

  .split-half {
    min-height: 240px !important;
    padding-bottom: 24px !important;
  }

  /* Checkout Mobile Styling */
  #checkoutMainRow {
    flex-direction: column-reverse;
  }

  .sticky-top {
    position: sticky !important;
    position: -webkit-sticky !important;
  }

  /* About Us & Contact Us Mobile Hero */
  section[style*="min-height: 440px"],
  section[style*="min-height: 380px"] {
    min-height: 300px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Modal Padding Mobile */
  .modal-body {
    padding: 1.25rem !important;
  }

  /* Checkout card body & payment options tighter on mobile */
  #checkoutMainRow .card-body.p-4 {
    padding: 1.1rem !important;
  }

  .payment-option-card {
    padding: 0.85rem !important;
  }

  #btnPlaceOrder {
    font-size: 1rem !important;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    letter-spacing: 0.2em;
    font-size: 11px;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 12px;
  }

  /* Product Cards 2 per row on small phones */
  .products-section .col-12.col-sm-6 {
    width: 50% !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .product-card-body {
    padding: 10px !important;
  }

  .product-card .btn-add-cart {
    font-size: 0.75rem !important;
    padding: 6px 8px !important;
  }

  /* Checkout on very small phones */
  .payment-option-card {
    flex-direction: column;
  }

  .payment-option-card .fa-solid.fs-5,
  .payment-option-card .fa-brands.fs-5 {
    font-size: 1rem !important;
  }

  #checkoutMainRow .card-header.p-3 h5 {
    font-size: 0.95rem;
  }
}

/* ============ PDP DUAL ACTION BUTTONS (ADD TO CART & BUY NOW) ============ */
.btn-pdp-action {
  height: 40px !important;
  min-height: 40px !important;
  background-color: #7a1338 !important;
  border: 1px solid #7a1338 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.04em !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 12px !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: 0 4px 10px rgba(122, 19, 56, 0.25) !important;
  text-transform: uppercase !important;
}

.btn-pdp-action:hover,
.btn-pdp-action:active,
.btn-pdp-action:focus {
  background-color: #5c0d2a !important;
  border-color: #5c0d2a !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(122, 19, 56, 0.4) !important;
}

/* Avoid overlap of scroll-top button and footer elements on mobile screens */
.pm-card {
  background: #ffffff !important;
  border-radius: 2px !important;
  padding: 1px 3px !important;
  height: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  user-select: none !important;
  transition: transform 0.2s ease !important;
}
.pm-card:hover {
  transform: translateY(-1px) !important;
}

@media (min-width: 992px) {
  .text-nowrap-desktop {
    white-space: nowrap !important;
  }
}

@media (max-width: 767px) {
  .scroll-top {
    bottom: 75px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
    opacity: 0.75 !important;
  }
  .pm-card {
    height: 14px !important;
    padding: 1px 2px !important;
  }
  .footer-links li {
    margin-bottom: 5px !important;
  }
  .footer-links a {
    font-size: 11px !important;
  }
  .social-icons {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }
  .social-icons a {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    font-size: 12px !important;
  }
}

/* ============ MOBILE STICKY BOTTOM NAV BAR ============ */
.mobile-bottom-bar {
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb !important;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.06) !important;
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px)) 0 !important;
  z-index: 1045 !important;
}

.mobile-bottom-bar .nav-tab {
  color: #4b5563 !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2px 0 !important;
  transition: color 0.15s ease !important;
}

.mobile-bottom-bar .nav-tab .tab-icon {
  font-size: 20px !important;
  line-height: 1 !important;
  margin-bottom: 2px !important;
}

.mobile-bottom-bar .nav-tab .tab-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.1px !important;
}

/* Active Tab Maroon brand color matching luxury theme */
.mobile-bottom-bar .nav-tab.active {
  color: #7a1338 !important;
}

.mobile-bottom-bar .nav-tab.active .tab-label {
  font-weight: 700 !important;
}

.mobile-bottom-bar .cart-badge-count {
  position: absolute !important;
  top: -4px !important;
  right: -8px !important;
  background: #dc2626 !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  padding: 2px 5px !important;
  border-radius: 10px !important;
  line-height: 1 !important;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 80px !important;
  }
  .scroll-top {
    bottom: 78px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
    line-height: 38px !important;
    opacity: 0.9 !important;
    box-shadow: 0 4px 14px rgba(122, 19, 56, 0.35) !important;
    z-index: 1025 !important;
  }
  .toast-container {
    bottom: 75px !important;
  }
}

/* ============ SIMPLE & LUXURY ACCOUNT DASHBOARD PILLS ============ */
.custom-account-pills .nav-link {
  color: #334155 !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
}

.custom-account-pills .nav-link.active {
  background: #7a1338 !important;
  color: #ffffff !important;
  border-color: #7a1338 !important;
  box-shadow: 0 2px 8px rgba(122, 19, 56, 0.25) !important;
}

/* ============ COMPREHENSIVE MOBILE RESPONSIVE UI POLISH ============ */
@media (max-width: 991px) {
  :root {
    --header-h: 58px !important;
  }
  
  .announce-bar {
    font-size: 11px !important;
    padding: 6px 12px !important;
    line-height: 1.35 !important;
  }
  
  .header-inner {
    padding: 0 12px !important;
    gap: 10px !important;
  }
  
  .logo-text {
    font-size: 20px !important;
    letter-spacing: .08em !important;
  }
  
  .logo-ring {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
  }

  .shop-title {
    font-size: 1.4rem !important;
  }

  .shop-subtitle {
    font-size: 0.85rem !important;
  }

  /* Full-width offcanvas drawers on mobile */
  .offcanvas-end,
  .offcanvas-start {
    width: 88vw !important;
    max-width: 360px !important;
  }
}

@media (max-width: 575px) {
  .announce-bar {
    font-size: 10.5px !important;
    padding: 5px 8px !important;
  }
  
  .shop-hero {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .display-5 {
    font-size: 1.8rem !important;
  }

  .display-6 {
    font-size: 1.5rem !important;
  }
}

/* ============ GLOBAL FORM INPUTS: ELEGANT BORDER-BOTTOM ONLY ============ */
.form-control,
.form-select,
.input-group-text {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 2px solid #cbd5e1 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
  transition: border-color 0.25s ease !important;
}

.form-control:focus,
.form-select:focus {
  border-bottom-color: #7a1338 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.input-group {
  border-bottom: 2px solid #cbd5e1 !important;
  border-radius: 0 !important;
  transition: border-color 0.25s ease !important;
}

.input-group:focus-within {
  border-bottom-color: #7a1338 !important;
}

.input-group .form-control,
.input-group .input-group-text {
  border-bottom: none !important;
}

/* ============ OVERRIDE BOOTSTRAP BLUE NAV-PILLS WITH SIGNATURE MAROON #7a1338 ============ */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
#accountTabs .nav-link.active {
  background-color: #7a1338 !important;
  color: #ffffff !important;
  border-color: #7a1338 !important;
  box-shadow: 0 4px 12px rgba(122, 19, 56, 0.3) !important;
}

.nav-pills .nav-link,
#accountTabs .nav-link {
  color: #7a1338 !important;
  font-weight: 600 !important;
  transition: all 0.2s ease-in-out !important;
}

.nav-pills .nav-link:hover,
#accountTabs .nav-link:hover {
  background-color: rgba(122, 19, 56, 0.08) !important;
  color: #7a1338 !important;
}

/* ============ SEARCH BOX ICON & PADDING FIX ============ */
.search-box {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

.search-box .search-icon {
  position: absolute !important;
  left: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  pointer-events: none !important;
  z-index: 10 !important;
  font-size: 14px !important;
}

.search-box .form-control,
.form-control.ps-5 {
  padding-left: 32px !important;
}

/* ============ STICKY 3-TAB GENDER FILTER BAR ============ */
.sticky-category-tabs-wrap {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 58px !important;
  z-index: 1030 !important;
  background: #ffffff !important;
}

@media (min-width: 992px) {
  .sticky-category-tabs-wrap {
    top: 76px !important;
  }
}

.gender-tab-pill {
  border: 1.5px solid #e2e8f0 !important;
  color: #334155 !important;
  background: #ffffff !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  letter-spacing: 0.04em !important;
  padding: 6px 12px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

@media (max-width: 575.98px) {
  .gender-tab-pill {
    font-size: 10.5px !important;
    padding: 6px 2px !important;
    letter-spacing: 0 !important;
  }
}

.gender-tab-pill:hover,
.gender-tab-pill.active {
  background: #7a1338 !important;
  color: #ffffff !important;
  border-color: #7a1338 !important;
  box-shadow: 0 4px 12px rgba(122, 19, 56, 0.3) !important;
}

.gender-tab-pill.pill-couple.active {
  background: linear-gradient(135deg, #7a1338 0%, #a3184b 100%) !important;
  border-color: #7a1338 !important;
  box-shadow: 0 4px 12px rgba(122, 19, 56, 0.35) !important;
}

/* ============ ELEGANT DESKTOP FILTER SIDEBAR ============ */
.filter-sidebar {
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.filter-item-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 11px 16px !important;
  margin-bottom: 8px !important;
  border-radius: 12px !important;
  color: #334155 !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  border: 1px solid transparent !important;
}

.filter-item-btn:last-child {
  margin-bottom: 0 !important;
}

.filter-item-btn:hover {
  background: #f8fafc !important;
  color: #7a1338 !important;
  border-color: #cbd5e1 !important;
  transform: translateX(2px) !important;
}

.filter-item-btn.active {
  background: #7a1338 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: #7a1338 !important;
  box-shadow: 0 4px 14px rgba(122, 19, 56, 0.28) !important;
}

.filter-item-btn.active .badge {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border: none !important;
}

.filter-item-btn.active i {
  color: #ffffff !important;
}

/* ============ DESKTOP TOOLBAR & SIDEBAR VERTICAL GAP FIX ============ */
@media (min-width: 992px) {
  .shop-toolbar {
    position: relative !important;
    top: auto !important;
    margin-bottom: 2.25rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
  }

  .filter-sidebar {
    top: 96px !important;
    position: sticky !important;
    position: -webkit-sticky !important;
    z-index: 100 !important;
  }
}

@media (max-width: 991.98px) {
  .shop-toolbar {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 58px !important;
    z-index: 1020 !important;
    margin-bottom: 1.25rem !important;
  }
}

/* ============ MOBILE STICKY CATEGORY TABS (BORDERLESS & EQUAL PADDING) ============ */
.mobile-sticky-tabs {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 58px !important;
  z-index: 1025 !important;
  background: #ffffff !important;
  border-top: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 6px 10px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

/* ============ ELEGANT SINGLE-LINE ADD TO CART BUTTONS ============ */
.btn-maroon,
.btn-add-cart {
  background-color: #7a1338 !important;
  color: #ffffff !important;
  border: 1px solid #7a1338 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: 0 2px 6px rgba(122, 19, 56, 0.2) !important;
  line-height: 1.2 !important;
}

.btn-maroon:hover,
.btn-add-cart:hover {
  background-color: #5c0e2a !important;
  border-color: #5c0e2a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(122, 19, 56, 0.35) !important;
}

@media (max-width: 575.98px) {
  .btn-add-cart,
  .product-card-col .btn-maroon,
  .product-card-shop .btn-maroon,
  .product-card .btn-maroon {
    font-size: 11px !important;
    padding: 7px 6px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
  }

  .btn-add-cart i,
  .btn-maroon i {
    font-size: 12px !important;
    margin-right: 3px !important;
  }
}

/* ============ ACCOUNT MODAL NAV TABS SINGLE LINE ============ */
#accountTabs {
  gap: 8px !important;
}

#accountTabs .nav-item {
  flex: 1 1 0% !important;
}

#accountTabs .nav-link {
  width: 100% !important;
  white-space: nowrap !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  letter-spacing: 0.03em !important;
}

#accountTabs .nav-link.active {
  background-color: #7a1338 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(122, 19, 56, 0.25) !important;
}

#accountTabs .nav-link:not(.active) {
  background-color: #f8fafc !important;
  color: #7a1338 !important;
  border: 1px solid #cbd5e1 !important;
}

@media (max-width: 575.98px) {
  #accountTabs .nav-link {
    font-size: 11px !important;
    padding: 7px 6px !important;
    letter-spacing: 0 !important;
  }
}

/* ============ ELEGANT CUSTOM QUANTITY STEPPER ============ */
.qty-stepper {
  display: inline-flex !important;
  align-items: center !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 50px !important;
  background: #ffffff !important;
  padding: 2px 4px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.2s ease-in-out !important;
  user-select: none !important;
}

.qty-stepper:hover,
.qty-stepper:focus-within {
  border-color: #7a1338 !important;
  box-shadow: 0 2px 8px rgba(122, 19, 56, 0.15) !important;
}

.qty-stepper .qty-btn {
  width: 28px !important;
  height: 28px !important;
  border: none !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  color: #334155 !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.15s ease-in-out !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.qty-stepper .qty-btn:hover {
  background: #7a1338 !important;
  color: #ffffff !important;
}

.qty-stepper .qty-btn:active {
  transform: scale(0.9) !important;
}

.qty-stepper .qty-input {
  width: 36px !important;
  height: 28px !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #0f172a !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 28px !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* ============ PDP STICKY BOTTOM DUAL ACTION BAR (MOBILE) ============ */
.btn-pdp-action {
  font-weight: 700 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
}

@media (max-width: 991px) {
  .pdp-action-bar-container {
    position: fixed !important;
    bottom: 53px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    padding: 8px 12px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.16) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    z-index: 1040 !important;
  }

  .pdp-action-bar-container .btn-pdp-action {
    font-size: 13px !important;
    padding: 10px 4px !important;
    box-shadow: 0 2px 8px rgba(122, 19, 56, 0.2) !important;
  }

  .pdp-main-section {
    padding-bottom: 140px !important;
  }

  .scroll-top {
    bottom: 130px !important;
  }
}