/** Shopify CDN: Minification failed

Line 415:0 All "@import" rules must come first
Line 430:9 Expected identifier but found whitespace
Line 430:11 Unexpected "{"
Line 430:20 Expected ":"
Line 430:62 Expected ":"
Line 2487:0 All "@import" rules must come first

**/
.search-wrapper form input.search-input:focus {
    box-shadow: none;
}

/* ============================================
   section-header.css — Shopify Header Section
   ============================================ */

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    color: #ffffff;
    font-size: 13px;
    
    letter-spacing: 0.02em;
    height: 61px;
}

.announcement-track {
    overflow: hidden;
    white-space: nowrap;
}

.announcement-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}

.announcement-bar:hover .announcement-inner {
    animation-play-state: paused;
}

.announcement-item {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 0 100px;
}


.announcement-item a {
    color: inherit;
    text-decoration: none;
}

.announcement-item a:hover {
    text-decoration: underline;
}

.announcement-bar {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.announcement-bar::after {
       content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    width: 232px;
    height: 61px;
    background: linear-gradient(97deg, #1e1e1e 10%, #1e1e1e00);
}

.announcement-bar::before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: unset;
    right: 0;
    width: 232px;
    height: 61px;
    background: linear-gradient(270deg, #1E1E1E 10%, rgba(30, 30, 30, 0) 100%);
    z-index: 99;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Main Header ---------- */
.site-header {
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* ---------- Logo ---------- */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    display: block;
    height: auto;
}

.logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    
    letter-spacing: 0.05em;
}

/* ---------- Navigation ---------- */
.header-nav {
    flex: 1;
    margin: 0 0 0 40px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    color: #1a1a1a;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    display: block;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.2s ease;
}

.nav-item:hover>a::after,
.nav-item.active>a::after {
    width: 100%;
}

.nav-item.active>a {
    font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 200;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.15s;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* ---------- Actions ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Search */
.search-wrapper form {
      display: flex;
    align-items: center;
    border-radius: 70px;
    overflow: hidden;
    background: #F9F9F9;
    border: 1px solid #EEEEEE;
    width: 350px;
    padding: 7px 10px;
}

.search-input {
       border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 13px;
    width: 100%;
    outline: none;
    color: #292D32;
}

.search-input::placeholder {
    color: #292D32;
        font-size: 14px;

}

.search-btn {
    border: none;
    background: transparent;
    /* padding: 8px 10px; */
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #555;
}
.search-wrapper form button.search-btn svg {
    width: 24px;
    padding: 0;
    height: 24px;
    color: #444444;
}

.search-btn:hover {
    color: #000;
}

/* Icon buttons */
.header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.15s;
}

.header-icon:hover {
    background: #f0f0f0;
}

.header-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
}

/* Badge */
.badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 16px;
    height: 16px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

.badge:empty,
.badge[textContent="0"] {
    display: none;
}

/* ---------- Mobile Toggle ---------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li.active>a {
    font-weight: 700;
}

.mobile-nav.is-open {
    display: block;
}



/* banner section css  */
/* ============================================
   section-hero-slider.css
   Luxury Dark Perfume Brand Hero Slider
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---------- Variables ---------- */
:root {
  --hero-gold: #c4956a;
  --hero-gold-light: #d4a978;
  --hero-red: #8b1a1a;
  --hero-white: #f5f0eb;
  --hero-transition: 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Slider Container ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: {{ section.settings.slide_height | default: 620 }}px;
  overflow: hidden;
  background: #0a0404;
}

/* Fallback for when Liquid can't set the height in CSS */
.section-hero-slider .hero-slider {
  height: var(--slide-height, 620px);
}

/* ---------- Track ---------- */
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---------- Slides ---------- */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--hero-transition), visibility var(--hero-transition);
  z-index: 0;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* ---------- Background Image ---------- */
.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-bg img,
.slide-bg .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.slide.is-active .slide-bg img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Decorative gradient vignette */
/* .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
} */

/* ---------- Content ---------- */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 7%;
}

.slide-content--center {
  justify-content: center;
  text-align: center;
  padding: 0 15%;
}

.slide-content--right {
  justify-content: flex-end;
  text-align: right;
}

.slide-inner {
  max-width: 560px;
}

/* Animate content in */
.slide-eyebrow,
.slide-heading,
.slide-subheading,
.slide-btns {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.is-active .slide-eyebrow { opacity: 1; transform: none; transition-delay: 0.2s; }
.slide.is-active .slide-heading  { opacity: 1; transform: none; transition-delay: 0.35s; }
.slide.is-active .slide-subheading { opacity: 1; transform: none; transition-delay: 0.5s; }
.slide.is-active .slide-btns    { opacity: 1; transform: none; transition-delay: 0.65s; }

/* Eyebrow */
.slide-eyebrow {
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero-gold);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--hero-gold);
  flex-shrink: 0;
}

.slide-content--center .slide-eyebrow { justify-content: center; }
.slide-content--right .slide-eyebrow  { justify-content: flex-end; }

/* Heading */
.slide-heading {
  
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--hero-white);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

/* Subheading */
.slide-subheading {
 
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
  margin: 0 0 36px;
}

/* Buttons */
.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.slide-content--center .slide-btns { justify-content: center; }
.slide-content--right .slide-btns  { justify-content: flex-end; }

.btn {
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--hero-gold);
  color: #1a0a0a;
}

.btn--primary:hover {
  background: var(--hero-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 149, 106, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--hero-white);
  border: 1px solid rgba(245, 240, 235, 0.4);
  padding: 13px 32px;
}

.btn--secondary:hover {
  border-color: var(--hero-white);
  background: rgba(245, 240, 235, 0.08);
}

/* ---------- Arrows ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--hero-gold);
  border-color: var(--hero-gold);
  color: #1a0a0a;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow--prev { left: 24px; }
.slider-arrow--next { right: 24px; }

/* ---------- Dots ---------- */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.is-active {
  background: var(--hero-gold);
  width: 28px;
  border-radius: 3px;
}

/* ---------- Progress Bar ---------- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 20;
}

.slider-progress-bar {
  height: 100%;
  background: var(--hero-gold);
  width: 0;
  animation: progressFill linear forwards;
  animation-duration: 5000ms;
}

@keyframes progressFill {
  from { width: 0; }
  to   { width: 100%; }
}


/* section # 2 */

section#collection-listing-template--26231068787007__collection_listing_bhBcYL {
    padding: 80px 0;
    background: #FFEFE3;
}

.collection-listing__grid.collection-listing__grid--3 {
    display: flex;
    gap: 24px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.collection-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius, 12px);
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.collection-listing__grid.collection-listing__grid--3 .collection-card:first-child {
    flex: 0 0 47%;
}
/* ---------- Image Wrap ---------- */
.collection-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--card-radius, 12px);
  /* Aspect ratio controlled by setting */
}

.collection-card__img,
.collection-card__img-wrap .placeholder-svg {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card__img-wrap:hover .collection-card__img {
  transform: scale(1.05);
}

/* Overlay */
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.collection-card__img-wrap:hover .collection-card__overlay {
  opacity: 1;
}

/* Badge */
.collection-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #c4956a;
  color: #fff;
 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

/* ---------- Footer ---------- */
.collection-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 4px;
  gap: 12px;
}

.collection-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.collection-card__title {
 
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.01em;
}

.collection-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.collection-card__title a:hover {
  color: #c4956a;
}

.collection-card__subtitle {
 
  font-size: 11px;
  font-weight: 400;
  color: #888;
  margin: 0;
  letter-spacing: 0.05em;
}

/* Explore link */
.collection-card__link {
 display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s, gap 0.2s;
    flex-shrink: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: right;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.collection-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.collection-card__link:hover {
  color: #c4956a;
  gap: 10px;
}

.collection-card__link:hover svg {
  transform: translateX(3px);
}



/* sec # 3 */

.best-sellers {
  padding: 64px 0px;
  background: var(--bs-bg, #ffffff);
}

/* ---------- Header ---------- */
.best-sellers__header {
  text-align: center;
  margin-bottom: 24px;
}

.best-sellers__title {
  margin: 0;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

/* ---------- Tabs ---------- */
.best-sellers__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.bs-tab {
  font-family: Inter Tight;
  font-size: 18px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  margin-bottom: -1px;
  color: #666666;
}

.bs-tab:hover {
  color: #1a1a1a;
}

.bs-tab.is-active {
  color: #8F6240;
  border-bottom: 2px solid #8F6240;
  text-underline-offset: 6px;
}

/* ---------- Panels ---------- */
.bs-panel {
  display: none;
}

.bs-panel.is-active {
  display: block;
  animation: fadeInPanel 0.35s ease;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Grid ---------- */
.bs-grid {
  display: grid;
  gap: 24px;
  margin: 0 auto;
}

.bs-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bs-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bs-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bs-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ---------- Product Card ---------- */
.bs-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0 0 40px 0;
}

/* ---------- Image Wrap ---------- */
.bs-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
}

.bs-card__img-link {
  display: block;
  width: 100%;
  height: 400px;
}

.bs-card__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.bs-card__img--primary {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bs-card__img--secondary {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bs-card__img-wrap:hover .bs-card__img--primary {
  opacity: 0;
}

.bs-card__img-wrap:hover .bs-card__img--secondary {
  opacity: 1;
}

.bs-card__img-wrap:hover .bs-card__img--primary:only-child {
  opacity: 1;
  transform: scale(1.04);
}

/* ---------- Hover Action Buttons ---------- */
.bs-card__actions {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bs-card__img-wrap:hover .bs-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.bs-card__action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: #1a1a1a;
}

.bs-card__action-btn svg {
  width: 22px;
  height: 19px;
}

.bs-card__action-btn:hover {
  background: #1a1a1a;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Wishlist active */
.bs-action--wishlist.is-wishlisted {
  /* background: #e53e3e; */
  color: #fff;
}

.bs-action--wishlist.is-wishlisted svg {
  fill: currentColor;
}

/* Cart loading/added states */
.bs-action--cart.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.bs-action--cart.is-added {
  background: #1a1a1a;
  color: #fff;
}

/* ---------- Badge ---------- */
.bs-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.bs-card__badge--sale {
  background: #c4956a;
  color: #fff;
}

.bs-card__badge--soldout {
  background: #555;
  color: #fff;
}

/* ---------- Card Info ---------- */
.bs-card__info {
  padding: 12px 2px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Rating */
.bs-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;

}

.bs-stars {
  color: #f5a623;
  font-size: 21px;
  letter-spacing: 1px;
}

.bs-rating-count {
  font-size: 14px;
  color: #000;
}

/* Title */
.bs-card__name {
  color: #1a1a1a;
  margin: 0;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.bs-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bs-card__name a:hover {
  color: #c4956a;
}

/* Price */
.bs-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.bs-card__price {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 7px 0 0 0;
}

.bs-card__price--sale {
  color: #c4956a;
}

.bs-card__price--compare {
  color: #aaa;
  text-decoration: line-through;
  font-size: 11px;
}

/* ---------- Explore Button ---------- */
.bs-explore {
  text-align: center;
  margin-top: 48px;
}

.bs-explore__btn {
display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 10px 30px;
    text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.bs-explore__btn:hover {
  background: #c4956a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.3);
}


/* section # 4 */

/* ---------- Section ---------- */
.trust-bar {
  width: 100%;
  padding: 60px 0;
}

/* ---------- Inner ---------- */
.trust-bar__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* ---------- Item ---------- */
.trust-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 24px;
  text-align: center;
}

/* Vertical layout: icon on top */
.trust-bar__item {
  flex-direction: column;
  gap: 6px;
}

/* Horizontal layout override via section setting */
.trust-bar--horizontal .trust-bar__item {
  flex-direction: row;
  text-align: left;
  gap: 14px;
}

/* ---------- Icon ---------- */
.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.trust-bar__icon--svg svg {
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.85;
}

/* ---------- Text ---------- */
.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-bar__title {
  text-transform: uppercase;
  margin: 0;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.trust-bar__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 12px 0;
}

/* ---------- Divider ---------- */
.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}


/* sec # 5 */
.product-collection__eyebrow {
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4956a;
  margin: 0 0 10px;
}

/* Subtitle */
.product-collection__subtitle {
 
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}

/* Tighten header spacing for this section */
.product-collection .best-sellers__header {
  margin-bottom: 36px;
}


/* sec # 6 */

/* ---------- Section ---------- */
.heading-banner {
  width: 100%;
}

/* ---------- Title Row ---------- */
.heading-banner__top {
  padding: 24px 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.heading-banner__title {
  
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.2;
}

/* ---------- Image Wrap ---------- */
.heading-banner__img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto !important;

}

.heading-banner__img,
.heading-banner__img-wrap .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Overlay ---------- */
.heading-banner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Banner Content (optional center text) ---------- */
.heading-banner__content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 12px;
}

.heading-banner__content--left {
  align-items: flex-start;
  text-align: left;
  padding-left: 7%;
}

.heading-banner__content--center {
  align-items: center;
  text-align: center;
}

.heading-banner__content--right {
  align-items: flex-end;
  text-align: right;
  padding-right: 7%;
}

.heading-banner__banner-heading {
  
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.heading-banner__banner-subtext {
 
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
}

.heading-banner__btn {
  display: inline-block;
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.92);
  padding: 13px 36px;
  margin-top: 8px;
  transition: background 0.25s, transform 0.2s;
}

.heading-banner__btn:hover {
  background: #c4956a;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Product Labels (blocks) ---------- */
.heading-banner__label {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.heading-banner__label-eyebrow {
 
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.heading-banner__label-name {
  
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  display: block;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.heading-banner__label-link {
 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
  pointer-events: all;
  margin-top: 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.heading-banner__label-link:hover {
  opacity: 1;
}
.heading-banner__img-wrap img.heading-banner__img {
    height: 780px;
    object-fit: cover;
    object-position: center;
}


/* sec # 7 */

/* ---------- Section ---------- */
.image-text {
  padding: 80px 40px;
}

/* ---------- Inner ---------- */
.image-text__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Image right — swap order */
.image-text__inner--right .image-text__media {
  order: 2;
}

.image-text__inner--right .image-text__content {
  order: 1;
}

/* ---------- Media ---------- */
.image-text__media {
  position: relative;
}

.image-text__img,
.image-text__img-placeholder {
  width: 100%;
  display: block;
  object-fit: contain;
  height: 800px !important;
}

/* .image-text__img-placeholder {
  aspect-ratio: 3 / 4;
  background: #e0d9d2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */

/* .image-text__img-placeholder .placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
} */

/* ---------- Content ---------- */
.image-text__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.image-text__eyebrow {
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* Title */
.image-text__title {
  margin: 0 0 28px;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 60px;
  line-height: 63px;
  letter-spacing: 0%;
  width: 80%;
}

/* Paragraphs */
.image-text__para {
  margin: 0 0 18px;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.image-text__para:last-of-type {
  margin-bottom: 0;
}

/* Button */
.image-text__btn {
  padding: 20px 20px;
  display: flex;
  align-items: start;
  width: fit-content;
  margin: 30px 0 0 0;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.image-text__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Center-aligned button */
.image-text__content[style*="center"] .image-text__btn {
  align-self: center;
}

.image-text__content[style*="right"] .image-text__btn {
  align-self: flex-end;
}


/* footer sec css */

/* ---------- Footer ---------- */

footer#footer-sections--26231069245759__new_footer_ByG6Er {
  padding: 100px 0 20px 0;
  background: black !important;
}

.site-footer {
  width: 100%;
}

/* ---------- Main Area ---------- */
.footer__main {
  margin: 0 0 120px 0;
}

.footer__columns {
  display: flex;
  gap: 21px;
}

/* ---------- Column ---------- */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 140px;
  flex: 1;
}

.footer__col-title {
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: start;
  margin: 10px 0 10px 0;
}

/* ---------- Links ---------- */
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white !important;
  text-decoration: none;
}

.footer__links a:hover {
  opacity: 1;
  color: #ffffff !important;
}

/* ---------- Contact ---------- */
.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
  display: flex;
  align-items: center;
}

.footer__contact-icon svg {
  width: 24px;
  height: 24px;
  color: #ffff;
}

.footer__contact-list a,
.footer__contact-list span {
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white !important;
  text-decoration: none;
}

.footer__contact-list a:hover {
  opacity: 1;
}

/* ---------- Social ---------- */
.footer__col--social {
  flex: 0.8;
}

.footer__social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.footer__social-icon:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.footer__social-icon svg {
  width: 16px;
  height: 16px;
  color: white !important;

}

/* ---------- Bottom Bar ---------- */
.footer__bottom {
  padding: 18px 60px;
  border-radius: 40px;
  background: white !important;
  color: black !important;
}

.footer__bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  margin: 0;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__bottom-links a {
  text-decoration: none;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: black !important;
}

.footer__bottom-links a:hover {
  opacity: 1;
}


/* contact us section  */


/* ---------- Section ---------- */
.contact-section {
  padding: 64px 0px;
}

.contact-section__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Form Card ---------- */
.contact-form-wrap {
 padding: 50px;
    border: 1px solid #e8e8e8;
    background: #eeeeee3d !important;
}

.contact-form__title {
  margin: 0 0 10px;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.contact-form__desc {
  margin: 0 0 28px;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: black !important;
  width: 90%;
}

.contact-form__success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 16px;
 
  font-size: 13px;
  margin-bottom: 20px;
}

.contact-form__error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
 
  font-size: 13px;
  margin-bottom: 20px;
}

/* ---------- Form Fields ---------- */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form__field {
  margin-bottom: 12px;
}

.contact-form__field:last-of-type {
  margin-bottom: 0;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  background: #ffff;
 
  font-size: 13px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  border-radius: 16px !important;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #aaa;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
  background: #fff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ---------- Submit Button ---------- */
.contact-form__submit {
  width: 100%;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 16px !important;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.contact-form__submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.contact-form__submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.contact-form__submit:hover svg {
  transform: translateX(3px);
}

/* ---------- Info Panel ---------- */
.contact-info {
  padding-top: 8px;
}

.contact-info__title {
  margin: 0 0 14px;
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.contact-info__desc {
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: black !important;
}

/* ---------- Info Items ---------- */
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid #000000;
}

.contact-info__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info__label {
  font-family: Playfair Display;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.contact-info__value {
  text-decoration: none;
  transition: opacity 0.2s;
  color: black !important;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

a.contact-info__value:hover {
  opacity: 1;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bs-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bs-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .best-sellers {
    padding: 48px 0px;
  }
   .footer__main {
    padding: 48px 32px 40px;
  }

  .footer__bottom {
    padding: 16px 32px;
    margin: 0 16px 16px;
  }

  .footer__columns {
    gap: 24px;
  }
}
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .search-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .search-input {
        width: 140px;
    }
    nav#mobile-nav {
    position: absolute;
    width: 100%;
    top: 106px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
}
.hero-slider {
    height: 80vw;
    min-height: 480px;
    max-height: 640px;
  }

  .slide-content {
    padding: 0 6%;
    align-items: flex-end;
    padding-bottom: 72px;
  }

  .slide-content--center,
  .slide-content--right {
    justify-content: flex-start;
    text-align: left;
  }

  .slide-content--center .slide-eyebrow,
  .slide-content--right .slide-eyebrow { justify-content: flex-start; }

  .slide-content--center .slide-btns,
  .slide-content--right .slide-btns { justify-content: flex-start; }

  .slide-inner { max-width: 100%; }

  .slider-arrow { display: none; }

  .slide-heading { font-size: clamp(32px, 9vw, 52px); }

  .slide-bg::after {
    background:
      linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  }
  .bs-grid--3,
  .bs-grid--4,
  .bs-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .best-sellers {
    padding: 40px 0px;
  }

  .bs-grid {
    gap: 16px;
  }

  /* Always show actions on mobile */
  .bs-card__actions {
    opacity: 1;
    transform: translateX(0);
  }

   .trust-bar {
    padding: 24px 20px;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 24px;
  }

  .trust-bar__item {
    padding: 0 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 20px;
  }

  .trust-bar__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-bar__divider {
    display: none;
  }
  .heading-banner__top {
    padding: 18px 20px;
  }

  .heading-banner__img-wrap {
    height: 60vw !important;
    min-height: 280px;
    max-height: 480px;
  }

  .heading-banner__label {
    display: none;
    /* labels hidden on mobile - too small */
  }

  .heading-banner__content {
    padding: 20px;
  }
   .footer__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .footer__col--social {
    grid-column: span 2;
  }

  .footer__main {
    padding: 40px 24px 32px;
  }

  .footer__bottom {
    padding: 14px 20px;
    margin: 0 12px 12px;
    border-radius: 24px;
  }

.collection-listing__grid.collection-listing__grid--3 {
    flex-wrap: wrap;
}

.collection-listing__grid.collection-listing__grid--3 {}

.collection-listing__grid.collection-listing__grid--3 .collection-card {
    flex: 0 0 100% !important;
}

.container {
    padding: 0 10px !important;
}

.best-sellers__title {
    font-size: 35px;
    margin: 0 0 20px 0;
}

.bs-grid.bs-grid--4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bs-card {
    margin: 0 0 20px 0;
}

section#trust-bar-template--26231068787007__trust_bar_dVE93w {
    padding: 60px 0 !important;
}

.heading-banner__img-wrap img.heading-banner__img {
    object-fit: contain;
    height: auto;
}

.heading-banner__img-wrap {
    height: auto !important;
    min-height: auto !important;
}

.image-text__inner.image-text__inner--left {
    grid-template-columns: 1fr;
}

.image-text__media {
    height: auto !important;
    min-height: auto !important;
    max-height: auto !important;
}

.image-text__img, .image-text__img-placeholder {
    height: auto !important;
}

.image-text__title {
    width: 100%;
    font-size: 35px;
    line-height: normal;
}

.footer__main {
    margin: 0 0 40px 0;
}

.footer__copyright {
    font-size: 15px;
}

.footer__bottom-links a {
    font-size: 15px !important;
}

.footer__bottom-links {
    justify-content: center;
    width: 100%;
}

.contact-section__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-form-wrap {
    padding: 30px;
}
.contact-info__title {
    font-size: 30px;
}

}

@media (max-width: 480px) {
    .search-wrapper {
        display: none;
    }
     .btn { padding: 12px 22px; font-size: 10px; }
  .slide-btns { gap: 10px; }

   .bs-grid--2,
  .bs-grid--3,
  .bs-grid--4,
  .bs-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-card__action-btn {
    width: 32px;
    height: 32px;
  }

  .bs-card__action-btn svg {
    width: 14px;
    height: 14px;
  }

    .trust-bar__title {
    font-size: 22px;
  }

  .trust-bar__subtitle {
    font-size: 15px;
  }
    .heading-banner__img-wrap {
    height: 75vw !important;
    min-height: 240px;
  }
  .image-text {
    padding: 36px 16px;
  }

  .image-text__inner {
    gap: 28px;
  }

  .image-text__title {
    font-size: clamp(26px, 8vw, 36px);
  }

  .image-text__para {
    font-size: 13px;
  }
   .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__col--social {
    grid-column: span 1;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__main {
    padding: 32px 16px 24px;
  }
}






/* just checkig  */


/* ============================================
   section-wishlist.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---------- Page ---------- */
.wishlist-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  min-height: 60vh;
}

/* ---------- Header ---------- */
.wishlist-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.wishlist-page__title {
  
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.wishlist-page__subtitle {
 
  font-size: 13px;
  color: #888;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ---------- Empty State ---------- */
.wishlist-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.wishlist-empty__icon svg {
  width: 64px;
  height: 64px;
  color: #ddd;
}

.wishlist-empty h2 {
  
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

.wishlist-empty p {
 
  font-size: 13px;
  color: #888;
  margin: 0;
}

.wishlist-empty__btn {
  display: inline-block;
 
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  padding: 14px 36px;
  border-radius: 4px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}

.wishlist-empty__btn:hover {
  background: #c4956a;
  transform: translateY(-2px);
}

/* ---------- Grid ---------- */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

/* ---------- Card ---------- */
.wishlist-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.wishlist-card.is-removing {
  opacity: 0;
  transform: scale(0.95);
}

/* Image */
.wishlist-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
}

.wishlist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wishlist-card__img-wrap:hover .wishlist-card__img {
  transform: scale(1.04);
}

/* Remove button */
.wishlist-card__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: #888;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}

.wishlist-card__remove svg { width: 14px; height: 14px; }

.wishlist-card__remove:hover {
  background: #e53e3e;
  color: #fff;
  transform: scale(1.1);
}

/* Badge */
.wishlist-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.wishlist-card__badge--soldout { background: #555; color: #fff; }

/* Info */
.wishlist-card__info {
  padding: 12px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wishlist-card__title {
 
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  text-align: center;
}

.wishlist-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.wishlist-card__title a:hover { color: #c4956a; }

.wishlist-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wishlist-card__price {
 
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.wishlist-card__price--sale { color: #c4956a; }

.wishlist-card__compare {
 
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
}

/* ATC button */
.wishlist-card__actions { margin-top: 6px; }

.wishlist-card__atc {
  display: block;
  width: 100%;
  padding: 11px 16px;
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.wishlist-card__atc:hover {
  background: #c4956a;
  transform: translateY(-1px);
}

.wishlist-card__atc.is-added { background: #2d7a3a; }
.wishlist-card__atc.is-loading { opacity: 0.6; pointer-events: none; }

.wishlist-card__atc--outline {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.wishlist-card__atc--outline:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ---------- Skeleton ---------- */
.wishlist-card--skeleton .wishlist-card__img-wrap {
  background: #f0f0f0;
}

.skeleton-box {
  animation: shimmer 1.4s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

.skeleton-line {
  height: 12px;
  border-radius: 4px;
  margin: 6px auto;
  animation: shimmer 1.4s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Clear Button ---------- */
.wishlist-actions {
  justify-content: center;
  margin-top: 48px;
}

.wishlist-clear-btn {
 
  font-size: 12px;
  font-weight: 500;
  color: #888;
  background: none;
  border: 1px solid #ddd;
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: color 0.2s, border-color 0.2s;
}

.wishlist-clear-btn:hover {
  color: #e53e3e;
  border-color: #e53e3e;
}

/* ---------- Wishlist heart pop animation ---------- */
@keyframes heartPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.bs-action--wishlist.is-popping svg {
  animation: heartPop 0.4s ease;
}

.bs-action--wishlist.is-wishlisted svg {
  fill: #e53e3e;
  stroke: #e53e3e;
}

/* ---------- Fetch error ---------- */
.wishlist-fetch-error {
 
  font-size: 13px;
  color: #888;
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .wishlist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .wishlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .wishlist-page { padding: 40px 16px; }
  .image-text__media {
    width: 100%;
    margin: 0 0 30px 0;
}
.image-text__content {
    margin: 20px 0 30px 0;
}
section.my-about-secc {
    padding-bottom: 10px;
}
}

@media (max-width: 480px) {
  .wishlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* ============================================
   APPEND TO BOTTOM OF my-custom.css
   New sections: Text + Image, Related Products
   No conflicts with existing styles
   ============================================ */


/* ---- sec # 8 : Text + Image (row-reverse) ---- */
/* Content is first in DOM (left), image is second (right) by default */
/* Flip: image left, content right when image_position = left          */

.text-image .image-text__inner--left .image-text__content { order: 2; }
.text-image .image-text__inner--left .image-text__media   { order: 1; }

@media (max-width: 900px) {
  .text-image .image-text__inner--left .image-text__content,
  .text-image .image-text__inner--left .image-text__media { order: unset; }
}


/* ---- sec # 9 : Related Products (Custom Styled) ---- */

.related-products-custom {
  padding-left: 40px;
  padding-right: 40px;
}

.related-products-custom__header {
  text-align: center;
  margin-bottom: 36px;
}

.related-products-custom__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.related-products-custom__sub {
  font-size: 14px;
  color: #888;
  margin: 0;
}



/* just checking */
section.my-about-secc {
    padding: 60px 0;
}

section.my-about-secc .about-hero {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
  .related-products-custom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .image-text__inner.image-text__inner--right {
    display: flex;
    flex-wrap: wrap;
}
.about-hero__media img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 30px !important;
}

section.my-about-secc .about-hero {
    display: block;
}

.about-hero__content {
    padding: 0 !important;
}

.about-hero__content h1.about-hero__heading {
    font-size: 35px !important;
}
}



.section-header.shopify-section-group-header-group {
    z-index: 99 !important;
}



/* jast for checking */

/* ============================================
   section-gift-wrapping.css
   ============================================ */

.gift-wrap-section {
  width: 100%;
  margin: 16px 0;
}

.gift-wrap-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--gw-bg, #ffffff);
  border: 1px solid var(--gw-border, #e0e0e0);
  border-radius: 8px;
}

/* Label */
.gift-wrap-label {
  flex-shrink: 0;
  min-width: 120px;
}

.gift-wrap-label__text {
  font-family: 'Inter Tight', 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.3;
}

.gift-wrap-required {
  color: #e53e3e;
  font-size: 14px;
  line-height: 1;
}

.gift-wrap-helper {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  color: #888;
  margin: 4px 0 0;
}

/* Select wrapper */
.gift-wrap-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gift-wrap-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.gift-wrap-select {
  width: 100%;
  padding: 10px 40px 10px 14px;
  font-family: 'Inter Tight', 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gift-wrap-select:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.07);
}

.gift-wrap-select:hover {
  border-color: #888;
}

/* Custom arrow */
.gift-wrap-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  display: flex;
  align-items: center;
  color: #555;
}

.gift-wrap-arrow svg {
  width: 16px;
  height: 16px;
}

/* Surcharge note */
.gift-wrap-note {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: #c4956a;
  font-weight: 500;
  margin: 0;
  padding: 0 2px;
}

/* Responsive */
@media (max-width: 600px) {
  .gift-wrap-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .gift-wrap-label {
    min-width: unset;
  }

  .gift-wrap-field {
    width: 100%;
  }
}