body {
  min-width: 0;
}

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

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

img,
svg,
video {
  max-width: 100%;
}

:root {
  --top-info-height: 40px;
  --main-navbar-height: 86px;
  --main-navbar-height-scrolled: 70px;
}

.top-bar {
  background-color: #EDF1FF;
  padding: 5px 0;
}

a {
  text-decoration: none;
}

.middle-bar {
  background-color: #768d9a;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.middle-bar .logo-wrap {
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .middle-bar .con .logo-wrap {
    border-bottom: none;
  }
  .laptop-size{
    display: none;
  }


}
/*
@media (max-width: 900px) {
  img{
    height: 250px;
  }

} */
@media (min-width: 768px) {
  .mobile-size{
    display: none;
  }

}

/* @media (max-width: 767px) {
  .mobile-size{
    display: block;
  }

} */
.middle-bar .nav-link {
  color: #fff;
}
.middle-bar .navbar-toggler:focus {
  box-shadow: none;
}

.mobile-size{
   /* display: none;  */
}


.feature-wrap {
  border-color: #f0cda0 !important;
  padding: 15px 8px;
}
.feature-wrap .feature-title {
  color: #f0cda0;
  font-size: 15px;
}
.feature-wrap p {
  font-size: 13px;
  margin: 0;
  text-align: center;
}
.feature-wrap i {
  color: #f0cda0;
  font-size: 25px;
}

.home-feature-section {
  position: relative;
  padding: clamp(42px, 5vw, 76px) 0 clamp(34px, 4vw, 62px);
  overflow: hidden;
  background: radial-gradient(circle at 12% 8%, rgba(240, 205, 160, 0.2), transparent 28%), linear-gradient(180deg, #fffdf9 0%, #f9f0e9 100%);
}

.home-feature-header {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-feature-title {
  margin: 0;
  color: #2f3433;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.home-feature-subtitle {
  max-width: 560px;
  margin: 12px auto 0;
  color: #6f7775;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
}

.home-feature-card {
  --reveal-delay: 0ms;
  min-width: 0;
  height: 100%;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(155, 107, 85, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(47, 52, 51, 0.08);
  transition: opacity 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.home-feature-card:hover {
  border-color: rgba(155, 107, 85, 0.25);
  box-shadow: 0 24px 58px rgba(47, 52, 51, 0.13);
  transform: translateY(-5px);
}

.home-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #9b6b55;
  background: rgba(240, 205, 160, 0.24);
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 18px;
  font-size: 20px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.home-feature-card:hover .home-feature-card__icon {
  color: #fffdf9;
  background: #9b6b55;
  transform: translateY(-2px);
}

.home-feature-card__title {
  margin: 0;
  color: #2f3433;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.home-feature-card__description {
  margin: 9px 0 0;
  color: #6f7775;
  font-size: 14px;
  line-height: 1.7;
}

.home-feature-section--pending .home-feature-header,
.home-feature-card--pending {
  opacity: 0;
  transform: translateY(22px);
}

.home-feature-header,
.home-feature-card {
  transition-delay: var(--reveal-delay);
}

.home-feature-section--visible .home-feature-header,
.home-feature-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.home-feature-card--visible:hover {
  transition-delay: 0ms;
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .home-feature-card,
  .home-feature-card__icon,
  .home-feature-header {
    transition: none;
  }
  .home-feature-section--pending .home-feature-header,
  .home-feature-card--pending {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .home-feature-section {
    padding-top: 34px;
  }
  .home-feature-header {
    text-align: left;
  }
  .home-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-feature-card {
    border-radius: 20px;
  }
}

.section-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 60px;
  background-color: #f0cda0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #404846;
  background: radial-gradient(circle at 12% 8%, rgba(240, 205, 160, 0.22), transparent 26%), linear-gradient(180deg, #fffdf9 0%, #f6ebe3 100%);
  border-top: 1px solid rgba(155, 107, 85, 0.14);
}

.site-footer__inner {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(150px, 0.8fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.site-footer__logo-link {
  display: inline-flex;
  width: 152px;
  padding: 10px 12px;
  border-radius: 24px;
  /*background: rgba(47, 52, 51, 0.94);*/
  box-shadow: 0 18px 42px rgba(47, 52, 51, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-footer__logo-link:hover, .site-footer__logo-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(47, 52, 51, 0.18);
}
.site-footer__logo-link:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.28);
  outline-offset: 4px;
}

.site-footer__logo {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer__description {
  max-width: 260px;
  margin: 18px 0 0;
  color: #6f7775;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__heading {
  margin: 0 0 18px;
  color: #2f3433;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__links a {
  color: #6f7775;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible {
  color: #9b6b55;
  text-decoration: underline;
  text-decoration-color: rgba(155, 107, 85, 0.38);
  text-underline-offset: 5px;
}
.site-footer__links a:focus-visible {
  outline: 2px solid rgba(155, 107, 85, 0.25);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__bottom {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid rgba(155, 107, 85, 0.12);
  text-align: center;
}

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-footer__payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  color: #7f8785;
  background: rgba(47, 52, 51, 0.04);
  border: 1px solid rgba(47, 52, 51, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__copyright {
  margin: 0;
  color: #8c9492;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .site-footer__inner {
    width: min(calc(100% - 28px), 1140px);
    padding-top: 42px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer__logo-link {
    width: 136px;
  }
  .site-footer__description {
    max-width: none;
  }
}

.home-hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: var(--top-info-height);
  overflow: hidden;
  background: #2f3937;
}

#header-carousel {
  position: relative;
  height: clamp(620px, 82vh, 780px);
  min-height: 620px;
  max-width: 100%;
  overflow: hidden;
}
#header-carousel .owl-stage-outer, #header-carousel .owl-stage, #header-carousel .owl-item, #header-carousel .item {
  height: 100%;
}
#header-carousel .owl-stage-outer {
  overflow: hidden;
}
#header-carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 5vh, 46px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}
#header-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid rgba(255, 253, 249, 0.82);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.38);
  transition: width 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
#header-carousel .owl-dot.active span {
  width: 34px;
  background: #f0cda0;
  border-color: #f0cda0;
}
#header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 56px);
  pointer-events: none;
  transform: translateY(-50%);
}
#header-carousel .owl-nav button.owl-prev,
#header-carousel .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 253, 249, 0.45) !important;
  border-radius: 50% !important;
  background: rgba(255, 253, 249, 0.14) !important;
  color: #fffdf9 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  pointer-events: auto;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
#header-carousel .owl-nav button.owl-prev:hover, #header-carousel .owl-nav button.owl-prev:focus,
#header-carousel .owl-nav button.owl-next:hover,
#header-carousel .owl-nav button.owl-next:focus {
  background: rgba(240, 205, 160, 0.88) !important;
  border-color: rgba(240, 205, 160, 0.95) !important;
  color: #384043 !important;
  transform: translateY(-2px);
}

.home-hero-slide {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-hero-slide__media,
.home-hero-slide__image,
.home-hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.home-hero-slide__media {
  z-index: 0;
}

.home-hero-slide__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1.015);
}

.home-hero-slide__overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 32, 32, 0.72) 0%, rgba(24, 32, 32, 0.42) 42%, rgba(24, 32, 32, 0.12) 100%), linear-gradient(180deg, rgba(24, 32, 32, 0.22) 0%, rgba(24, 32, 32, 0.06) 44%, rgba(24, 32, 32, 0.4) 100%);
}

.home-hero-slide__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: var(--main-navbar-height);
  padding-bottom: clamp(86px, 12vh, 128px);
}

.home-hero-slide__content.carousel-caption {
  position: static;
  right: auto;
  left: auto;
  bottom: auto;
  width: min(100%, 680px);
  max-width: 680px;
  padding: 0;
  color: #fffdf9;
  text-align: left;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.home-hero-slide__title {
  margin: 0 0 18px;
  color: #fffdf9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.home-hero-slide__subtitle {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.65;
}

.home-hero-slide__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid rgba(240, 205, 160, 0.82);
  border-radius: 999px;
  background: rgba(240, 205, 160, 0.92);
  color: #384043;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.home-hero-slide__button:hover, .home-hero-slide__button:focus {
  color: #fffdf9;
  background: #768d9a;
  border-color: #768d9a;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.page-title {
  min-height: 200px;
  /* background-image: url("../images/footer-bg.png"); */
  background-position: center;
  background-size: cover;
  position: relative;
}
.page-title h1 {
  color: #f0cda0;
}
.page-title p, .page-title a {
  color: #000;
}

.category-hero {
  position: relative;
  display: grid;
  min-height: clamp(440px, 62vh, 680px);
  margin-top: var(--top-info-height);
  overflow: hidden;
  isolation: isolate;
  background: #2f3937;
}

.category-hero__media,
.category-hero__overlay {
  position: absolute;
  inset: 0;
}

.category-hero__media {
  z-index: 0;
  background-image: var(--category-hero-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.015);
}

.category-hero__overlay {
  z-index: 1;
  background: radial-gradient(circle at 50% 40%, rgba(240, 205, 160, 0.18), transparent 34%), linear-gradient(180deg, rgba(20, 27, 27, 0.42) 0%, rgba(20, 27, 27, 0.28) 38%, rgba(20, 27, 27, 0.72) 100%), linear-gradient(90deg, rgba(20, 27, 27, 0.45), rgba(20, 27, 27, 0.18), rgba(20, 27, 27, 0.45));
}

.category-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100% - 32px, 860px);
  margin: 0 auto;
  padding: calc(var(--main-navbar-height) + 54px) 0 72px;
  color: #fffdf9;
  text-align: center;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.category-hero__eyebrow,
.product-listing-heading__eyebrow {
  margin: 0 0 12px;
  color: #f0cda0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-hero__title {
  margin: 0;
  color: #fffdf9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.category-hero__subtitle {
  margin: 18px 0 0;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.category-hero__description {
  max-width: 660px;
  margin: 16px auto 0;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.75;
}

.product-listing-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 0%, rgba(240, 205, 160, 0.2), transparent 28%), linear-gradient(180deg, #fffdf9 0%, #f8f1eb 100%);
}

.product-listing-container {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0 clamp(56px, 7vw, 96px);
}

.product-listing-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.product-listing-heading h2 {
  margin: 0;
  color: #2f3433;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.product-listing-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 14px 16px;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(47, 52, 51, 0.08);
}

.product-listing-toolbar__views,
.product-listing-toolbar__actions,
.product-listing-toolbar__sort {
  display: flex;
  align-items: center;
}

.product-listing-toolbar__views {
  gap: 8px;
}

.product-view-toggle,
.product-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 50%;
  background: #fffdf9;
  color: #9b6b55;
}

.product-view-toggle--active {
  background: #9b6b55;
  color: #fffdf9;
}

.product-listing-toolbar__count {
  color: #59615f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.product-listing-toolbar__actions {
  justify-content: flex-end;
  gap: 12px;
}

.product-filter-toggle {
  display: none;
  width: auto;
  padding: 0 16px;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
}

.product-listing-toolbar__sort {
  gap: 10px;
}
.product-listing-toolbar__sort label {
  margin: 0;
  color: #7b8481;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-sort-select {
  min-height: 40px;
  min-width: 150px;
  padding: 0 36px 0 15px;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 999px;
  background: #fffdf9;
  color: #384043;
  font-weight: 700;
}

.product-listing-shell {
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.product-filter-sidebar {
  position: sticky;
  top: calc(var(--main-navbar-height-scrolled) + 24px);
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(47, 52, 51, 0.08);
}

.filter-group + .filter-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(155, 107, 85, 0.12);
}

.filter-group__header {
  margin-bottom: 14px;
  color: #2f3433;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-group__note {
  margin: 0;
  color: #747d7a;
  font-size: 14px;
  line-height: 1.7;
}

.filter-search-form {
  display: grid;
  gap: 10px;
}
.filter-search-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 16px;
  background: #fffdf9;
  color: #384043;
}
.filter-search-form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #9b6b55;
  color: #fffdf9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-link-list {
  display: grid;
  gap: 8px;
}
.filter-link-list a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 14px;
  color: #59615f;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.filter-link-list a:hover, .filter-link-list a:focus, .filter-link-list a.active {
  color: #9b6b55;
  background: rgba(240, 205, 160, 0.22);
  transform: translateX(3px);
}

.product-filter-drawer {
  display: none;
  margin-bottom: 22px;
}

.product-filter-drawer__inner {
  padding: 0 0 4px;
}

.category-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
}

.category-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  color: #2f3433;
  box-shadow: 0 18px 48px rgba(47, 52, 51, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.category-product-card:hover, .category-product-card:focus-visible {
  color: #2f3433;
  border-color: rgba(155, 107, 85, 0.26);
  box-shadow: 0 28px 68px rgba(47, 52, 51, 0.16);
  transform: translateY(-6px);
}
.category-product-card:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.3);
  outline-offset: 4px;
}

.category-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f1eb, #efe0d2);
}

.category-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.45s ease, transform 0.45s ease;
}

.category-product-card:hover .category-product-card__image,
.category-product-card:focus-visible .category-product-card__image {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.07);
}

.category-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: #9b6b55;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.category-product-card__name {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #2f3433;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #9b6b55;
  font-size: 15px;
  font-weight: 900;
}
.category-product-card__price del {
  color: #9aa19f;
  font-size: 13px;
}
.category-product-card__price strong {
  color: #9b6b55;
}

.category-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #768d9a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.category-product-card:hover .category-product-card__cta,
.category-product-card:focus-visible .category-product-card__cta {
  color: #9b6b55;
  transform: translateX(3px);
}

.category-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.category-empty-state {
  padding: clamp(36px, 7vw, 76px);
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(47, 52, 51, 0.08);
  text-align: center;
}
.category-empty-state h3 {
  margin: 0;
  color: #2f3433;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.045em;
}
.category-empty-state p {
  max-width: 520px;
  margin: 14px auto 0;
  color: #747d7a;
  line-height: 1.7;
}
.category-empty-state a {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #9b6b55;
  color: #fffdf9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-empty-state__eyebrow {
  color: #9b6b55 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-detail-page {
  overflow: hidden;
  background: radial-gradient(circle at 8% 6%, rgba(240, 205, 160, 0.2), transparent 30%), linear-gradient(180deg, #fffdf9 0%, #f8f1eb 52%, #fffdf9 100%);
}

.product-detail-container {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  padding: calc(var(--top-info-height) + var(--main-navbar-height) + 42px) 0 clamp(44px, 6vw, 82px);
}

.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: #7b8481;
  font-size: 13px;
  font-weight: 700;
}
.product-detail-breadcrumb a {
  color: #9b6b55;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.product-gallery__thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: 690px;
  overflow-y: auto;
  padding-right: 4px;
}

.product-gallery__thumb,
.product-gallery__main {
  border: 0;
  background: transparent;
  padding: 0;
}

.product-gallery__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 12px 28px rgba(47, 52, 51, 0.08);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumb:hover, .product-gallery__thumb:focus-visible, .product-gallery__thumb.product-gallery__thumb--active {
  border-color: #9b6b55;
  box-shadow: 0 16px 34px rgba(47, 52, 51, 0.14);
  transform: translateY(-2px);
}

.product-gallery__main {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 34px;
  background: linear-gradient(135deg, #f8f1eb, #efe0d2);
  box-shadow: 0 24px 68px rgba(47, 52, 51, 0.12);
  cursor: zoom-in;
}

.product-gallery__main-image {
  display: block;
  width: 100%;
  min-height: clamp(560px, 64vw, 720px);
  max-height: 760px;
  object-fit: contain;
  padding: clamp(10px, 1.8vw, 22px);
  transition: transform 0.45s ease;
}

.product-gallery__main:hover .product-gallery__main-image,
.product-gallery__main:focus-visible .product-gallery__main-image {
  transform: scale(1.025);
}

.product-gallery__zoom-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: #384043;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(47, 52, 51, 0.12);
}

.product-purchase-panel {
  position: sticky;
  top: calc(var(--main-navbar-height-scrolled) + 28px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 68px rgba(47, 52, 51, 0.11);
}

.product-detail-eyebrow {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-detail-title {
  margin: 0;
  color: #2f3433;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-detail-preorder {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(179, 93, 93, 0.1);
  color: #b35d5d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}
.product-detail-price del {
  color: #9aa19f;
  font-size: 16px;
}
.product-detail-price strong {
  color: #9b6b55;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.product-detail-description,
.product-variant-section,
.product-addons,
.product-purchase-summary,
.product-payment-strip {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(155, 107, 85, 0.12);
}

.product-detail-description h2 {
  margin: 0 0 10px;
  color: #2f3433;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-description__content {
  color: #626b68;
  font-size: 15px;
  line-height: 1.75;
}
.product-detail-description__content p:last-child {
  margin-bottom: 0;
}

.product-variant-section {
  display: grid;
  gap: 10px;
}
.product-variant-section label {
  color: #2f3433;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-variant-select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 18px;
  background: #fffdf9;
  color: #384043;
  font-weight: 700;
}

.product-addons__header h2 {
  margin: 0;
  color: #2f3433;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-addons__header p {
  margin: 6px 0 0;
  color: #747d7a;
  font-size: 14px;
}

.product-addon-group {
  margin-top: 20px;
}
.product-addon-group h3 {
  margin: 0 0 12px;
  color: #9b6b55;
  font-size: 17px;
  font-weight: 800;
}

.product-addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-addon-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  color: #2f3433;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.product-addon-card:hover, .product-addon-card:focus-visible, .product-addon-card.selected {
  border-color: rgba(155, 107, 85, 0.32);
  background: rgba(240, 205, 160, 0.18);
  box-shadow: 0 16px 34px rgba(47, 52, 51, 0.1);
  transform: translateY(-2px);
}

.product-addon-card__image-wrap {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f1eb;
}

.product-addon-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-addon-card__content {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
}

.product-addon-card__name {
  color: #2f3433;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-addon-card__price {
  color: #9b6b55;
  font-size: 13px;
  font-weight: 900;
}

.product-addon-card__control {
  grid-column: 1/-1;
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffdf9;
  color: #768d9a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-addon-card.selected .product-addon-card__control {
  background: #9b6b55;
  color: #fffdf9;
}

.product-quantity-control,
.product-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-quantity-control {
  color: #2f3433;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-quantity-control__buttons {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 999px;
  background: #fffdf9;
}
.product-quantity-control__buttons button,
.product-quantity-control__buttons input {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #384043;
  text-align: center;
}
.product-quantity-control__buttons button {
  color: #9b6b55;
}

.product-subtotal-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(155, 107, 85, 0.18);
}
.product-subtotal-row span {
  color: #747d7a;
  font-weight: 800;
}
.product-subtotal-row strong {
  color: #9b6b55;
  font-size: 24px;
  font-weight: 900;
}

.product-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.product-add-cart-btn,
.product-buy-now-btn,
.product-go-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.product-add-cart-btn {
  border: 1px solid #9b6b55;
  background: #9b6b55;
  color: #fffdf9;
}
.product-add-cart-btn:hover, .product-add-cart-btn:focus {
  background: #768d9a;
  border-color: #768d9a;
  transform: translateY(-2px);
}

.product-buy-now-btn {
  border: 1px solid #768d9a;
  background: #768d9a;
  color: #fffdf9;
}
.product-buy-now-btn:hover, .product-buy-now-btn:focus {
  background: #9b6b55;
  border-color: #9b6b55;
  color: #fffdf9;
}

.product-go-cart-btn {
  border: 1px solid rgba(155, 107, 85, 0.24);
  background: #fffdf9;
  color: #9b6b55;
}

.product-buy-now-btn {
  grid-column: span 2;
}
.product-go-cart-btn:hover, .product-go-cart-btn:focus {
  background: rgba(240, 205, 160, 0.2);
  color: #9b6b55;
  transform: translateY(-2px);
}

.product-payment-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-payment-strip img {
  filter: grayscale(1);
  opacity: 0.62;
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 27, 27, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-gallery-lightbox.product-gallery-lightbox--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.product-gallery-lightbox-is-open {
  overflow: hidden;
}

.product-gallery-lightbox__image {
  max-width: min(100%, 980px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 26px;
  background: #fffdf9;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.product-gallery-lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.12);
  color: #fffdf9;
}

.product-related-section {
  padding: clamp(42px, 6vw, 86px) 0 clamp(56px, 7vw, 96px);
  background: #fffdf9;
}

.product-related-container {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
}

.product-related-header {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}
.product-related-header p {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-related-header h2 {
  margin: 0;
  color: #2f3433;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

@media (max-width: 1199px) {
  .product-detail-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-purchase-panel {
    position: static;
  }
}
@media (max-width: 767px) {
  .product-detail-container {
    width: min(100% - 28px, 1320px);
    padding-top: calc(var(--top-info-height) + var(--main-navbar-height) + 28px);
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-gallery__thumbs {
    order: 2;
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 8px;
  }
  .product-gallery__thumb {
    width: 78px;
    flex: 0 0 78px;
  }
  .product-gallery__main-image {
    min-height: clamp(360px, 72vw, 520px);
    max-height: 560px;
  }
  .product-purchase-panel {
    border-radius: 26px;
  }
  .product-addon-list {
    grid-template-columns: 1fr;
  }
  .product-action-buttons {
    grid-template-columns: 1fr;
  }
  .product-related-header {
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .category-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .category-hero {
    min-height: clamp(390px, 58vh, 560px);
  }
  .category-hero__content {
    padding-top: calc(var(--main-navbar-height) + 44px);
    padding-bottom: 58px;
  }
  .product-listing-toolbar {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
  .product-listing-toolbar__views {
    display: none;
  }
  .product-listing-toolbar__count {
    order: -1;
  }
  .product-listing-toolbar__actions {
    justify-content: space-between;
  }
  .product-filter-toggle {
    display: inline-flex;
  }
  .product-filter-drawer {
    display: block;
  }
  .product-listing-shell {
    grid-template-columns: 1fr;
  }
  .product-listing-shell > .product-filter-sidebar {
    display: none;
  }
  .product-filter-sidebar--mobile {
    position: static;
    display: block;
    border-radius: 24px;
  }
  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .category-hero {
    min-height: clamp(340px, 56vh, 480px);
  }
  .category-hero__content {
    width: min(100% - 28px, 860px);
    padding-top: calc(var(--main-navbar-height) + 34px);
    padding-bottom: 46px;
  }
  .category-hero__title {
    font-size: clamp(42px, 13vw, 64px);
  }
  .category-hero__subtitle {
    font-size: 17px;
  }
  .category-hero__description {
    font-size: 14px;
  }
  .product-listing-container {
    width: min(100% - 28px, 1320px);
    padding-top: 36px;
  }
  .product-listing-heading {
    text-align: left;
  }
  .product-listing-toolbar__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-filter-toggle,
  .product-listing-toolbar__sort,
  .product-sort-select {
    width: 100%;
  }
  .product-listing-toolbar__sort {
    justify-content: space-between;
  }
  .category-product-grid {
    gap: 14px;
  }
  .category-product-card {
    border-radius: 20px;
  }
  .category-product-card__body {
    padding: 14px;
  }
  .category-product-card__name {
    min-height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .category-product-grid {
    grid-template-columns: 1fr;
  }
  .category-product-card__media {
    aspect-ratio: 1/1;
  }
}

.color-primary {
  color: #f0cda0;
}

.card-header, .card-body, .card-footer {
  border: 1px solid #EDF1FF !important;
}

.card-body {
  border-style: none solid none solid !important;
}

.card-footer {
  background-color: unset !important;
}
.card-footer i {
  color: #f0cda0 !important;
  font-size: 16px;
  margin-right: 5px;
}

.page-item .page-link {
  color: #f0cda0;
  background-color: unset;
}
.page-item.active .page-link {
  background-color: #f0cda0;
  color: #fff;
  border-color: #f0cda0;
}

.custom-control {
  position: relative;
}

.custom-control-label {
  padding-left: 30px;
}

.custom-control-input {
  position: absolute;
  left: 0;
}

.select-box {
  padding: 3px 5px;
  border: 1px solid #f0cda0;
  margin: 0 5px;
  min-width: 30px;
  text-align: center;
  cursor: pointer;
}
.select-box .label {
  color: #f0cda0;
}
.select-box.active, .select-box:hover {
  background-color: #f0cda0;
}
.select-box.active .label, .select-box:hover .label {
  color: #fff;
}

.btn-primary {
  background-color: #f0cda0;
  border-color: #f0cda0;
}
.btn-primary:focus, .btn-primary:hover {
  background-color: #f0cda0;
  border-color: #f0cda0;
}

.nav-link, .nav-link:focus, .nav-link:hover {
  color: #f0cda0;
}/*# sourceMappingURL=main.css.map */


/****/
/*loading image*/
.image-container {
  position: relative;
}

.loading-effect {
  opacity: 0; /* hide the image initially */
  transition: opacity 0.5s ease-in-out;
}

.loading-effect.loading {
  opacity: 0; /* hide the image when loading class is added */
}

.loading-effect.loaded {
  opacity: 1; /* show the image when loaded class is added */
}

.list-group-item.active{
  background-color: #f0cda0;
  border-color: #f0cda0;

}


#whatsapp-button {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  color: #fff;
  transition: all 0.25s ease;
}
.site-header .container {
  max-width: 1240px;
  min-width: 0;
}

.top-info-bar {
  max-width: 100%;
  max-height: var(--top-info-height);
  overflow: hidden;
  background: rgba(73, 89, 92, 0.78);
  color: #fffdf9;
  font-size: 13px;
  letter-spacing: 0.03em;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.top-info-bar.top-info-bar--hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
}

.top-info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  min-height: var(--top-info-height);
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}
.top-info-bar__inner i {
  color: #f0cda0;
  margin-right: 6px;
}

.top-info-bar__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  white-space: normal;
}

.main-navbar {
  background: rgba(40, 52, 54, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.main-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--main-navbar-height);
  gap: 24px;
  min-width: 0;
  transition: min-height 0.25s ease;
}

.main-navbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.main-navbar__brand img {
  width: 172px;
  max-height: 76px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.18));
  transition: width 0.25s ease, max-height 0.25s ease, filter 0.25s ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.site-header .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 31px 13px;
  color: #fffdf9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
  transition: color 0.25s ease, padding 0.25s ease, text-shadow 0.25s ease;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.25s ease, transform 0.25s ease, bottom 0.25s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #f0cda0;
}
.site-header .nav-link:hover::after,
.site-header .nav-link:focus::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.nav-link--dropdown::before {
  content: "\f107";
  order: 2;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  opacity: 0.82;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 14px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(118, 141, 154, 0.14);
  box-shadow: 0 22px 60px rgba(47, 60, 62, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.25s ease;
}
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #384043;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus {
  color: #768d9a;
  background: rgba(240, 205, 160, 0.18);
  transform: translateX(3px);
}

.mega-menu {
  left: 50%;
  width: min(1180px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 22px;
  padding: 26px;
  transform: translateX(-50%) translateY(12px);
}

.mega-menu__group p {
  margin: 0 0 8px;
  color: #768d9a;
  font-family: "Satisfy", cursive;
  font-size: 24px;
  line-height: 1.1;
}
.mega-menu__group .mega-menu__group-title {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 0;
  color: #768d9a;
  font-family: "Satisfy", cursive;
  font-size: 24px;
  line-height: 1.1;
  border-radius: 0;
}
.mega-menu__group .mega-menu__group-title:hover,
.mega-menu__group .mega-menu__group-title:focus {
  color: #9b6b55;
  background: transparent;
  transform: translateY(-1px);
}
.mega-menu__group a {
  padding-left: 0;
  padding-right: 0;
}
.mega-menu__group a:hover,
.mega-menu__group a:focus {
  transform: translateX(4px);
  background: transparent;
}

.colour-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 1px solid rgba(56, 64, 67, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.colour-dot--dynamic {
  background: linear-gradient(135deg, #c93434 0%, #e89ab2 35%, #f1c84b 68%, #6c9a66 100%);
}

.main-navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}

.header-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf9;
  box-shadow: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.header-icon-button:hover,
.header-icon-button:focus {
  color: #384043;
  background: #f0cda0;
  border-color: #f0cda0;
  transform: translateY(-2px);
}

.header-cart-link__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #9b6b55;
  color: #fffdf9;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.mobile-menu-toggle {
  display: none;
}

.site-header--scrolled {
  color: #384043;
}
.site-header--scrolled .main-navbar {
  background: rgba(255, 253, 249, 0.97);
  border-bottom-color: rgba(118, 141, 154, 0.16);
  box-shadow: 0 14px 42px rgba(47, 60, 62, 0.12);
}
.site-header--scrolled .main-navbar__inner {
  min-height: var(--main-navbar-height-scrolled);
}
.site-header--scrolled .main-navbar__brand img {
  width: 138px;
  max-height: 58px;
  filter: none;
}
.site-header--scrolled .nav-link {
  color: #384043;
  padding-top: 24px;
  padding-bottom: 24px;
  text-shadow: none;
}
.site-header--scrolled .nav-link::after {
  bottom: 19px;
}
.site-header--scrolled .nav-link:hover,
.site-header--scrolled .nav-link:focus {
  color: #768d9a;
}
.site-header--scrolled .header-icon-button {
  color: #384043;
  border-color: rgba(118, 141, 154, 0.22);
  background: rgba(118, 141, 154, 0.06);
}
.site-header--scrolled .header-icon-button:hover,
.site-header--scrolled .header-icon-button:focus {
  color: #fff;
  background: #768d9a;
  border-color: #768d9a;
}

.search-panel {
  max-height: 0;
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid rgba(118, 141, 154, 0.14);
  box-shadow: 0 20px 36px rgba(47, 60, 62, 0.1);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.search-panel.search-panel--open {
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
}

.search-panel__form {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}
.search-panel__form i {
  color: #768d9a;
}
.search-panel__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(118, 141, 154, 0.28);
  background: transparent;
  color: #384043;
  font-size: 18px;
  outline: none;
  padding: 10px 0;
}
.search-panel__form input::-moz-placeholder {
  color: rgba(56, 64, 67, 0.48);
}
.search-panel__form input::placeholder {
  color: rgba(56, 64, 67, 0.48);
}
.search-panel__form button {
  border: 0;
  border-radius: 999px;
  background: #768d9a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 11px 22px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}
.search-panel__form button:hover,
.search-panel__form button:focus {
  background: #f0cda0;
  color: #384043;
  transform: translateY(-1px);
}

.mobile-nav {
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid rgba(118, 141, 154, 0.14);
  box-shadow: 0 20px 42px rgba(47, 60, 62, 0.14);
  max-width: 100%;
}

.mobile-nav__panel {
  max-height: calc(100vh - 80px);
  max-width: 100%;
  overflow-y: auto;
  overflow-x: clip;
  padding: 8px 18px 24px;
}

.mobile-nav .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(118, 141, 154, 0.12);
  background: transparent;
}
.mobile-nav .accordion-button {
  padding: 17px 0;
  background: transparent;
  color: #384043;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-nav .accordion-button:focus {
  box-shadow: none;
}
.mobile-nav .accordion-button:not(.collapsed) {
  color: #768d9a;
  box-shadow: none;
}
.mobile-nav .accordion-body {
  display: grid;
  gap: 4px;
  padding: 0 0 16px;
}
.mobile-nav .accordion-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #384043;
  padding: 8px 0;
}

.mobile-nav__group {
  padding: 8px 0;
}
.mobile-nav__group p {
  margin: 6px 0 5px;
  color: #768d9a;
  font-family: "Satisfy", cursive;
  font-size: 23px;
}

.mobile-nav__group-title {
  display: inline-flex;
  margin: 6px 0 5px;
  color: #768d9a;
  font-family: "Satisfy", cursive;
  font-size: 23px;
  line-height: 1.15;
}

.mobile-nav__group-title:hover,
.mobile-nav__group-title:focus {
  color: #9b6b55;
}

.mobile-nav__direct-links {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}
.mobile-nav__direct-links a {
  color: #384043;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .site-header .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .main-navbar__brand img {
    width: 148px;
  }
}
@media (max-width: 991px) {
  :root {
    --main-navbar-height: 72px;
    --main-navbar-height-scrolled: 68px;
  }
  .top-info-bar__inner {
    justify-content: center;
    gap: 10px 16px;
    overflow: hidden;
    padding: 0;
    font-size: 12px;
  }
  .top-info-bar__item--secondary {
    display: none;
  }
  .main-navbar {
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 12px 34px rgba(47, 60, 62, 0.1);
  }
  .site-header--transparent .main-navbar {
    background: rgba(40, 52, 54, 0.18);
    box-shadow: none;
  }
  .main-navbar__inner {
    min-height: var(--main-navbar-height);
  }
  .main-navbar__brand img {
    width: 126px;
    max-height: 56px;
    filter: none;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .header-icon-button {
    width: 39px;
    height: 39px;
    color: #384043;
    border-color: rgba(118, 141, 154, 0.22);
    background: rgba(118, 141, 154, 0.06);
  }
  .site-header--transparent .header-icon-button {
    color: #fffdf9;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }
  .search-panel__form {
    padding: 14px 0;
  }
  .search-panel__form input {
    font-size: 16px;
  }
  .search-panel__form button {
    padding: 10px 16px;
  }
  #header-carousel {
    height: clamp(540px, 72vh, 680px);
    min-height: 540px;
  }
  #header-carousel .owl-nav {
    display: none;
  }
  .home-hero-slide__container {
    align-items: flex-end;
    padding-bottom: 86px;
  }
  .home-hero-slide__content.carousel-caption {
    max-width: 620px;
  }
  .home-hero-slide__overlay {
    background: linear-gradient(180deg, rgba(24, 32, 32, 0.52) 0%, rgba(24, 32, 32, 0.18) 35%, rgba(24, 32, 32, 0.7) 100%), linear-gradient(90deg, rgba(24, 32, 32, 0.48) 0%, rgba(24, 32, 32, 0.12) 100%);
  }
}
@media (max-width: 575px) {
  :root {
    --top-info-height: 36px;
    --main-navbar-height: 68px;
    --main-navbar-height-scrolled: 64px;
  }
  .top-info-bar {
    font-size: 11px;
    letter-spacing: 0.01em;
  }
  .top-info-bar__inner {
    gap: 6px 10px;
  }
  .top-info-bar__item i {
    margin-right: 4px;
  }
  .main-navbar__inner {
    gap: 12px;
  }
  .main-navbar__brand img {
    width: 112px;
  }
  #header-carousel {
    height: clamp(480px, 68vh, 620px);
    min-height: 480px;
  }
  #header-carousel .owl-dots {
    bottom: 22px;
  }
  #header-carousel .owl-dot span {
    width: 8px;
    height: 8px;
  }
  #header-carousel .owl-dot.active span {
    width: 26px;
  }
  .home-hero-slide__image {
    -o-object-position: center top;
       object-position: center top;
  }
  .home-hero-slide__container {
    padding-top: calc(var(--main-navbar-height) + 18px);
    padding-bottom: 70px;
  }
  .home-hero-slide__title {
    margin-bottom: 14px;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
  }
  .home-hero-slide__subtitle {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }
  .home-hero-slide__button {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .main-navbar__actions {
    gap: 5px;
  }
  .header-icon-button {
    width: 36px;
    height: 36px;
  }
  .search-panel__form {
    gap: 10px;
    max-width: 100%;
  }
  .search-panel__form button {
    padding: 10px 13px;
    letter-spacing: 0.06em;
  }
}

.home-category-section {
  position: relative;
  padding: clamp(42px, 6vw, 82px) 0;
  margin: 10px 0 26px;
  overflow: hidden;
}
.home-category-section::before {
  content: "";
  position: absolute;
  inset: 8px auto auto 50%;
  width: min(760px, 88vw);
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle at 28% 35%, rgba(240, 205, 160, 0.28), transparent 34%), radial-gradient(circle at 72% 30%, rgba(166, 110, 94, 0.16), transparent 38%);
  filter: blur(8px);
  transform: translateX(-50%);
  z-index: 0;
}

.home-category-section__inner {
  position: relative;
  z-index: 1;
}

.home-category-section__heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-category-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-category-section__eyebrow::before,
.home-category-section__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(155, 107, 85, 0.45);
}

.home-category-section__title {
  margin: 0;
  color: #2f3433;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-category-section__subtitle {
  max-width: 560px;
  margin: 12px auto 0;
  color: #6f7775;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  min-width: 0;
}

.home-category-card {
  --reveal-delay: 0ms;
  position: relative;
  display: block;
  min-height: clamp(320px, 33vw, 420px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(124, 82, 65, 0.9), rgba(54, 61, 57, 0.9)), #7c5241;
  box-shadow: 0 20px 50px rgba(47, 52, 51, 0.14);
  outline: 0;
  text-decoration: none;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.home-category-card:hover,
.home-category-card:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(47, 52, 51, 0.22);
}
.home-category-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 253, 249, 0.96), 0 0 0 7px rgba(155, 107, 85, 0.62), 0 28px 70px rgba(47, 52, 51, 0.22);
}

.home-category-card__image-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 28%), linear-gradient(145deg, #a67664, #3f4945);
}

.home-category-card__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.home-category-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 27, 26, 0.05) 0%, rgba(24, 27, 26, 0.24) 42%, rgba(24, 27, 26, 0.72) 100%), linear-gradient(135deg, rgba(155, 107, 85, 0.24), rgba(21, 28, 26, 0.16));
  opacity: 0.92;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.home-category-card__content {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(20px, 3vw, 32px);
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.home-category-card__eyebrow {
  color: rgba(255, 253, 249, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-category-card__title {
  color: #fffdf9;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.home-category-card__description {
  display: -webkit-box;
  max-width: 90%;
  overflow: hidden;
  color: rgba(255, 253, 249, 0.84);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #fff7ea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-category-card:hover .home-category-card__image,
.home-category-card:focus-visible .home-category-card__image {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.08);
}

.home-category-card:hover .home-category-card__overlay,
.home-category-card:focus-visible .home-category-card__overlay {
  opacity: 1;
}

.home-category-card:hover .home-category-card__content,
.home-category-card:focus-visible .home-category-card__content,
.home-category-card:hover .home-category-card__cta,
.home-category-card:focus-visible .home-category-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.home-category-card--image-missing .home-category-card__image-wrap::after {
  content: "Freeland Floral";
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(255, 253, 249, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.home-category-card--pending {
  opacity: 0;
  transform: translateY(24px);
}

.home-category-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay);
}

.home-category-card--visible:hover,
.home-category-card--visible:focus-visible {
  transition-delay: 0ms;
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .home-category-card,
  .home-category-card__image,
  .home-category-card__overlay,
  .home-category-card__content,
  .home-category-card__cta {
    transition: none;
  }
  .home-category-card--pending {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-category-card {
    min-height: clamp(260px, 42vw, 340px);
    border-radius: 24px;
  }
}
@media (max-width: 575px) {
  .home-category-section {
    padding: 34px 0 48px;
  }
  .home-category-section__heading {
    margin-bottom: 22px;
    text-align: left;
  }
  .home-category-section__eyebrow::before,
  .home-category-section__eyebrow::after {
    width: 20px;
  }
  .home-category-grid {
    gap: 14px;
  }
  .home-category-card {
    min-height: 220px;
    border-radius: 20px;
  }
  .home-category-card__content {
    gap: 6px;
    padding: 18px;
  }
  .home-category-card__title {
    font-size: 22px;
  }
  .home-category-card__description {
    display: none;
  }
  .home-category-card__cta {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 390px) {
  .home-category-grid {
    grid-template-columns: 1fr;
  }
  .home-category-card {
    min-height: 210px;
  }
}

.home-bestseller-section {
  position: relative;
  padding: clamp(44px, 6vw, 86px) 0 clamp(48px, 6vw, 92px);
  overflow: hidden;
}

.home-bestseller-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(900px, 92vw);
  height: 360px;
  pointer-events: none;
  background: radial-gradient(circle at 20% 22%, rgba(240, 205, 160, 0.22), transparent 32%), radial-gradient(circle at 78% 30%, rgba(155, 107, 85, 0.14), transparent 34%);
  filter: blur(8px);
  transform: translateX(-50%);
  z-index: 0;
}

.home-bestseller-header,
.home-bestseller-grid {
  position: relative;
  z-index: 1;
}

.home-bestseller-header {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-bestseller-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-bestseller-header__eyebrow::before,
.home-bestseller-header__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(155, 107, 85, 0.45);
}

.home-bestseller-title {
  margin: 0;
  color: #2f3433;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-bestseller-subtitle {
  max-width: 560px;
  margin: 12px auto 0;
  color: #6f7775;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}

.home-bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
}

.home-bestseller-card {
  --reveal-delay: 0ms;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  color: #2f3433;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(47, 52, 51, 0.09);
  text-decoration: none;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.home-bestseller-card:hover,
.home-bestseller-card:focus-visible {
  color: #2f3433;
  border-color: rgba(155, 107, 85, 0.26);
  box-shadow: 0 28px 68px rgba(47, 52, 51, 0.16);
  text-decoration: none;
  transform: translateY(-6px);
}
.home-bestseller-card:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.3);
  outline-offset: 4px;
}

.home-bestseller-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.22), transparent 28%), linear-gradient(145deg, #efd4c6, #b78b78);
}

.home-bestseller-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.home-bestseller-card:hover .home-bestseller-card__image,
.home-bestseller-card:focus-visible .home-bestseller-card__image {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.07);
}

.home-bestseller-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  color: #fffdf9;
  background: rgba(47, 52, 51, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-bestseller-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.home-bestseller-card__name {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #2f3433;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-bestseller-card__name small {
  color: #b35d5d;
  font-size: 12px;
  font-weight: 800;
}

.home-bestseller-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #9b6b55;
  font-size: 15px;
  line-height: 1.45;
}

.home-bestseller-card__price del {
  color: #9aa19f;
  font-size: 13px;
}

.home-bestseller-card__price strong {
  color: #9b6b55;
  font-weight: 900;
}

.home-bestseller-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #2f3433;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.home-bestseller-card:hover .home-bestseller-card__cta,
.home-bestseller-card:focus-visible .home-bestseller-card__cta {
  color: #9b6b55;
  transform: translateX(3px);
}

.home-bestseller-card--image-missing .home-bestseller-card__media::after {
  content: "Freeland Floral";
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(255, 253, 249, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.home-bestseller-card--pending {
  opacity: 0;
  transform: translateY(24px);
}

.home-bestseller-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay);
}

.home-bestseller-card--visible:hover,
.home-bestseller-card--visible:focus-visible {
  transition-delay: 0ms;
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .home-bestseller-card,
  .home-bestseller-card__image,
  .home-bestseller-card__cta {
    transition: none;
  }
  .home-bestseller-card--pending {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1199px) {
  .home-bestseller-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .home-bestseller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-bestseller-card {
    border-radius: 20px;
  }
  .home-bestseller-card__body {
    padding: 14px;
  }
  .home-bestseller-card__name {
    min-height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .home-bestseller-grid {
    grid-template-columns: 1fr;
  }
  .home-bestseller-card__media {
    aspect-ratio: 1/1;
  }
}

.home-love-banner {
  --love-banner-image: linear-gradient(135deg, #5a4039, #af8172);
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: clamp(520px, 58vw, 680px);
  margin: 26px 0 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: #5a4039;
}

.home-love-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--love-banner-image);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-love-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(255, 246, 235, 0.16), transparent 32%), linear-gradient(180deg, rgba(24, 20, 18, 0.2), rgba(24, 20, 18, 0.58)), linear-gradient(110deg, rgba(95, 56, 47, 0.54), rgba(30, 34, 31, 0.42));
}

.home-love-banner__content {
  width: min(760px, calc(100% - 32px));
  padding: 46px 28px;
  color: #fffdf9;
  transform: translateY(0);
}

.home-love-banner__title {
  margin: 0;
  color: #fffdf9;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.home-love-banner__subtitle {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.home-love-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 30px;
  padding: 14px 30px;
  color: #3e302b;
  background: #fff7ea;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.home-love-banner__button:hover,
.home-love-banner__button:focus-visible {
  color: #3e302b;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transform: translateY(-3px);
}
.home-love-banner__button:focus-visible {
  outline: 3px solid rgba(255, 247, 234, 0.66);
  outline-offset: 4px;
}

.home-love-banner--pending .home-love-banner__title,
.home-love-banner--pending .home-love-banner__subtitle,
.home-love-banner--pending .home-love-banner__button {
  opacity: 0;
  transform: translateY(22px);
}

.home-love-banner__title,
.home-love-banner__subtitle,
.home-love-banner__button {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-love-banner--visible .home-love-banner__title,
.home-love-banner--visible .home-love-banner__subtitle,
.home-love-banner--visible .home-love-banner__button {
  opacity: 1;
  transform: translateY(0);
}

.home-love-banner--visible .home-love-banner__subtitle {
  transition-delay: 120ms;
}

.home-love-banner--visible .home-love-banner__button {
  transition-delay: 220ms;
}

.home-instagram-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 48px);
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgba(240, 205, 160, 0.22), transparent 30%), linear-gradient(135deg, #fffaf4 0%, #f8ebe5 58%, #fffdf9 100%);
}

.home-instagram-section__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.home-instagram-section__title {
  max-width: 620px;
  margin: 0;
  color: #2f3433;
  font-size: clamp(30px, 4.3vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-instagram-section__subtitle {
  max-width: 570px;
  margin: 14px 0 0;
  color: #6f7775;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}

.home-instagram-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 13px 22px;
  color: #fffdf9;
  background: #2f3433;
  border: 1px solid rgba(47, 52, 51, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(47, 52, 51, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.home-instagram-section__button:hover,
.home-instagram-section__button:focus-visible {
  color: #fffdf9;
  background: #9b6b55;
  box-shadow: 0 18px 42px rgba(155, 107, 85, 0.26);
  text-decoration: none;
  transform: translateY(-3px);
}
.home-instagram-section__button:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.3);
  outline-offset: 4px;
}

.home-instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 22px);
  min-width: 0;
}

.home-instagram-card {
  --reveal-delay: 0ms;
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #efd4c6, #cfa492);
  box-shadow: 0 16px 38px rgba(47, 52, 51, 0.1);
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.home-instagram-card:hover,
.home-instagram-card:focus-visible {
  box-shadow: 0 24px 56px rgba(47, 52, 51, 0.18);
  transform: translateY(-5px);
}
.home-instagram-card:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.35);
  outline-offset: 4px;
}

.home-instagram-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.home-instagram-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fffdf9;
  background: rgba(34, 27, 24, 0.22);
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-instagram-card:hover .home-instagram-card__image,
.home-instagram-card:focus-visible .home-instagram-card__image {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.08);
}

.home-instagram-card:hover .home-instagram-card__overlay,
.home-instagram-card:focus-visible .home-instagram-card__overlay {
  opacity: 1;
}

.home-instagram-section--pending {
  opacity: 0;
  transform: translateY(26px);
}

.home-instagram-section--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-instagram-card--pending {
  opacity: 0;
  transform: translateY(22px);
}

.home-instagram-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay);
}

.home-instagram-card--visible:hover,
.home-instagram-card--visible:focus-visible {
  transition-delay: 0ms;
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .home-love-banner__media {
    background-attachment: scroll;
  }
  .home-love-banner__title,
  .home-love-banner__subtitle,
  .home-love-banner__button,
  .home-instagram-section,
  .home-instagram-card,
  .home-instagram-card__image,
  .home-instagram-card__overlay {
    transition: none;
  }
  .home-love-banner--pending .home-love-banner__title,
  .home-love-banner--pending .home-love-banner__subtitle,
  .home-love-banner--pending .home-love-banner__button,
  .home-instagram-section--pending,
  .home-instagram-card--pending {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .home-love-banner {
    min-height: clamp(420px, 58vw, 520px);
  }
  .home-love-banner__media {
    background-attachment: scroll;
  }
  .home-instagram-section__intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .home-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-instagram-card {
    border-radius: 18px;
  }
}
@media (max-width: 575px) {
  .home-love-banner {
    min-height: 390px;
    margin-top: 12px;
  }
  .home-love-banner__content {
    padding: 36px 18px;
  }
  .home-love-banner__button,
  .home-instagram-section__button {
    width: 100%;
  }
  .home-instagram-section {
    padding-top: 44px;
    padding-bottom: 54px;
  }
}
@media (max-width: 360px) {
  .home-instagram-grid {
    grid-template-columns: 1fr;
  }
}

.home-store-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 4vw, 48px);
  overflow: hidden;
  background: radial-gradient(circle at 86% 12%, rgba(240, 205, 160, 0.22), transparent 30%), linear-gradient(135deg, #fffdf9 0%, #f6ebe3 100%);
}

.home-store-section__image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1/span 2;
  min-height: clamp(440px, 48vw, 620px);
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #f0cda0, #8f6b5b);
  box-shadow: 0 28px 70px rgba(47, 52, 51, 0.16);
}

.home-store-section__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.home-store-section__image-wrap:hover .home-store-section__image {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06);
}

.home-store-section__label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  padding: 10px 15px;
  color: #fffdf9;
  background: rgba(47, 52, 51, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-store-section__content {
  grid-column: 2;
  grid-row: 1;
  max-width: 610px;
}

.home-store-section__eyebrow {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-store-section__title {
  margin: 0;
  color: #2f3433;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-store-section__subtitle {
  max-width: 520px;
  margin: 16px 0 28px;
  color: #6f7775;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.home-store-card {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  border: 1px solid rgba(155, 107, 85, 0.2);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 24px 58px rgba(47, 52, 51, 0.11);
  backdrop-filter: blur(14px);
}

.home-store-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  color: #2f3433;
  border-bottom: 1px solid rgba(155, 107, 85, 0.16);
  font-size: 17px;
  font-weight: 800;
}

.home-store-card__header i {
  color: #9b6b55;
}

.home-store-card__body {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.home-store-card__row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: start;
}

.home-store-card__label {
  color: #9b6b55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-store-card__row p {
  margin: 0;
  color: #414846;
  font-size: 15px;
  line-height: 1.7;
}

.home-store-card__row a {
  color: #414846;
  text-decoration: underline;
  text-decoration-color: rgba(155, 107, 85, 0.32);
  text-underline-offset: 4px;
}
.home-store-card__row a:hover,
.home-store-card__row a:focus-visible {
  color: #9b6b55;
}

.home-store-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: start;
  min-height: 48px;
  margin-top: 4px;
  padding: 13px 22px;
  color: #fffdf9;
  background: #2f3433;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(47, 52, 51, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.home-store-card__link:hover,
.home-store-card__link:focus-visible {
  color: #fffdf9;
  background: #9b6b55;
  box-shadow: 0 18px 42px rgba(155, 107, 85, 0.26);
  text-decoration: none;
  transform: translateY(-3px);
}
.home-store-card__link:focus-visible {
  outline: 3px solid rgba(155, 107, 85, 0.28);
  outline-offset: 4px;
}

.home-store-section--pending .home-store-section__image-wrap,
.home-store-section--pending .home-store-section__content,
.home-store-section--pending .home-store-card {
  opacity: 0;
  transform: translateY(26px);
}

.home-store-section__image-wrap,
.home-store-section__content,
.home-store-card {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-store-section--visible .home-store-section__image-wrap,
.home-store-section--visible .home-store-section__content,
.home-store-section--visible .home-store-card {
  opacity: 1;
  transform: translateY(0);
}

.home-store-section--visible .home-store-section__content {
  transition-delay: 120ms;
}

.home-store-section--visible .home-store-card {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  .home-store-section__image,
  .home-store-section__image-wrap,
  .home-store-section__content,
  .home-store-card,
  .home-store-card__link {
    transition: none;
  }
  .home-store-section--pending .home-store-section__image-wrap,
  .home-store-section--pending .home-store-section__content,
  .home-store-section--pending .home-store-card {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .home-store-section {
    grid-template-columns: 1fr;
  }
  .home-store-section__content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }
  .home-store-section__image-wrap {
    grid-column: 1;
    grid-row: 2;
    min-height: clamp(320px, 58vw, 460px);
  }
  .home-store-card {
    grid-column: 1;
    grid-row: 3;
  }
}
@media (max-width: 575px) {
  .home-store-section {
    padding-top: 46px;
    padding-bottom: 56px;
  }
  .home-store-section__image-wrap {
    min-height: 310px;
    border-radius: 24px;
  }
  .home-store-section__label {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    white-space: normal;
  }
  .home-store-card {
    border-radius: 22px;
  }
  .home-store-card__header,
  .home-store-card__body {
    padding: 20px;
  }
  .home-store-card__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .home-store-card__link {
    width: 100%;
  }
}

.home-clientele-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 4vw, 48px);
  overflow: hidden;
  background: #fffdf9;
}

.home-clientele-section::before {
  content: "";
  position: absolute;
  inset: 0 50% auto auto;
  width: min(760px, 86vw);
  height: 280px;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(240, 205, 160, 0.2), transparent 34%), radial-gradient(circle at 72% 34%, rgba(155, 107, 85, 0.1), transparent 36%);
  filter: blur(10px);
  transform: translateX(50%);
}

.home-clientele-header,
.home-clientele-grid {
  position: relative;
  z-index: 1;
}

.home-clientele-header {
  max-width: 680px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.home-clientele-title {
  margin: 0;
  color: #9b6b55;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.15;
}

.home-clientele-subtitle {
  max-width: 520px;
  margin: 13px auto 0;
  color: #6f7775;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
}

.home-clientele-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  min-width: 0;
}

.home-clientele-logo {
  --reveal-delay: 0ms;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(155, 107, 85, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  transition: opacity 0.5s ease, transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.home-clientele-logo:hover {
  border-color: rgba(155, 107, 85, 0.2);
  background: rgba(255, 250, 244, 0.92);
  transform: translateY(-4px);
}

.home-clientele-logo__image {
  display: block;
  max-width: min(180px, 100%);
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.92);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.home-clientele-logo:hover .home-clientele-logo__image {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.02);
}

.home-clientele-section--pending .home-clientele-header {
  opacity: 0;
  transform: translateY(22px);
}

.home-clientele-logo--pending {
  opacity: 0;
  transform: translateY(22px);
}

.home-clientele-header,
.home-clientele-logo {
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.35s ease, background 0.35s ease;
}

.home-clientele-section--visible .home-clientele-header,
.home-clientele-logo--visible {
  opacity: 1;
  transform: translateY(0);
}

.home-clientele-logo--visible {
  transition-delay: var(--reveal-delay);
}

.home-clientele-logo--visible:hover {
  transition-delay: 0ms;
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .home-clientele-header,
  .home-clientele-logo,
  .home-clientele-logo__image {
    transition: none;
  }
  .home-clientele-section--pending .home-clientele-header,
  .home-clientele-logo--pending {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .home-clientele-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .home-clientele-section {
    padding-top: 48px;
    padding-bottom: 62px;
  }
  .home-clientele-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .home-clientele-logo {
    min-height: 96px;
    padding: 18px;
    border-radius: 18px;
  }
  .home-clientele-logo__image {
    max-width: 140px;
    max-height: 62px;
  }
}

/* Cart, checkout, and checkout confirmation redesign */
.cart-page,
.checkout-page {
  background: radial-gradient(circle at 12% 8%, rgba(240, 205, 160, 0.2), transparent 34%), linear-gradient(180deg, #fffaf4 0%, #fffdf9 48%, #f8f2ea 100%);
  color: #3f3430;
}

.cart-page-hero,
.checkout-page-hero {
  position: relative;
  padding: clamp(120px, 16vw, 190px) clamp(18px, 5vw, 64px) clamp(54px, 8vw, 86px);
  text-align: center;
  overflow: hidden;
}

.cart-page-hero::before,
.checkout-page-hero::before {
  content: "";
  position: absolute;
  inset: 34% auto auto 50%;
  width: min(620px, 78vw);
  height: 220px;
  border-radius: 999px;
  background: rgba(240, 205, 160, 0.22);
  filter: blur(42px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cart-page-hero > *,
.checkout-page-hero > * {
  position: relative;
  z-index: 1;
}

.cart-page-hero__eyebrow,
.checkout-page-hero__eyebrow {
  margin: 0 0 12px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cart-page-hero h1,
.checkout-page-hero h1 {
  margin: 0;
  color: #2f2825;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
}

.cart-page-hero p:last-child,
.checkout-page-hero p:last-child {
  max-width: 620px;
  margin: 16px auto 0;
  color: #6f7775;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
}

.cart-page-shell,
.checkout-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 8vw, 110px);
}

.cart-page-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.cart-items-panel,
.checkout-form-panel,
.cart-summary-card,
.checkout-summary-card,
.checkout-card {
  min-width: 0;
}

.cart-items-panel,
.checkout-form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px 6px;
  color: #9b6b55;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-section-heading strong {
  color: #6f7775;
  font-size: 12px;
}

.cart-item-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(155, 107, 85, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(74, 55, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cart-item-card:hover {
  border-color: rgba(155, 107, 85, 0.22);
  box-shadow: 0 26px 70px rgba(74, 55, 45, 0.12);
  transform: translateY(-3px);
}

.cart-item-card__media {
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: #f6eee5;
}

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

.cart-item-card__content,
.cart-item-card__top,
.cart-item-card__meta,
.cart-summary-card__body,
.checkout-summary-totals {
  min-width: 0;
}

.cart-item-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.cart-item-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cart-item-card__top h2 {
  margin: 0;
  color: #2f2825;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.cart-item-card__preorder,
.cart-item-card__variant {
  margin: 7px 0 0;
  color: #7b6f68;
  font-size: 13px;
}

.cart-item-card__preorder {
  color: #b45b4f;
  font-weight: 700;
}

.cart-item-card__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #9b6b55;
  background: #fff7ee;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cart-item-card__remove:hover,
.cart-item-card__remove:focus-visible {
  color: #fff;
  background: #9b6b55;
  transform: translateY(-2px);
}

.cart-item-card__meta {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(110px, auto);
  gap: 18px;
  align-items: end;
}

.cart-item-card__label {
  display: block;
  margin-bottom: 5px;
  color: #9a8d84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item-card__price,
.cart-item-card__subtotal strong {
  margin: 0;
  color: #2f2825;
  font-size: 16px;
}

.cart-item-card__price del {
  display: block;
  color: #a99c92;
  font-size: 13px;
}

.cart-item-card__quantity {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 999px;
  background: #fffdf9;
}

.cart-quantity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  color: #9b6b55;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.cart-quantity-btn:hover,
.cart-quantity-btn:focus-visible {
  color: #fff;
  background: #9b6b55;
}

.cart-item-card__quantity input[type=text] {
  width: 46px;
  height: 38px;
  border: 0;
  color: #2f2825;
  background: transparent;
  text-align: center;
  font-weight: 800;
}

.cart-summary-card,
.checkout-summary-card {
  position: sticky;
  top: calc(var(--main-navbar-height-scrolled, 74px) + 24px);
  overflow: hidden;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(74, 55, 45, 0.1);
}

.cart-summary-card__header,
.checkout-summary-card__header {
  padding: 24px 26px;
  border-bottom: 1px solid rgba(155, 107, 85, 0.1);
  background: linear-gradient(135deg, #9b6b55, #c7a477);
  color: #fff;
}

.cart-summary-card__header p,
.checkout-summary-card__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.cart-summary-card__header span,
.checkout-summary-card__header span {
  display: block;
  margin-top: 5px;
  opacity: 0.82;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary-card__body,
.cart-summary-card__footer,
.checkout-summary-totals,
.checkout-payment-strip {
  padding: 24px 26px;
}

.cart-summary-row,
.cart-summary-total,
.checkout-summary-totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #6f7775;
  font-size: 15px;
}

.cart-summary-row + .cart-summary-row,
.checkout-summary-totals > div + div {
  margin-top: 14px;
}

.cart-summary-row strong,
.cart-summary-total strong,
.checkout-summary-totals strong {
  color: #2f2825;
}

.cart-summary-note {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  color: #746a64;
  background: #fff7ee;
  font-size: 13px;
  line-height: 1.6;
}

.cart-summary-card__footer {
  border-top: 1px solid rgba(155, 107, 85, 0.1);
}

.cart-summary-total,
.checkout-summary-total {
  font-size: 18px;
  font-weight: 800;
}

.cart-summary-btn,
.checkout-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #9b6b55, #c7a477);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.cart-summary-btn:hover,
.cart-summary-btn:focus-visible,
.checkout-primary-btn:hover,
.checkout-primary-btn:focus-visible {
  color: #fff;
  box-shadow: 0 14px 34px rgba(155, 107, 85, 0.22);
  transform: translateY(-2px);
}

.cart-summary-btn--disabled {
  pointer-events: none;
  opacity: 0.45;
}

.cart-continue-link,
.checkout-return-link {
  display: inline-flex;
  margin-top: 14px;
  color: #9b6b55;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cart-continue-link:hover,
.cart-continue-link:focus-visible,
.checkout-return-link:hover,
.checkout-return-link:focus-visible {
  color: #6f4538;
  text-decoration: underline;
}

.cart-empty-state {
  padding: clamp(34px, 5vw, 58px);
  border: 1px dashed rgba(155, 107, 85, 0.26);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.cart-empty-state__eyebrow {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cart-empty-state h2 {
  margin: 0;
  color: #2f2825;
  font-size: clamp(26px, 4vw, 42px);
}

.cart-empty-state p {
  max-width: 520px;
  margin: 14px auto 22px;
  color: #6f7775;
}

.cart-empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: #9b6b55;
  font-weight: 800;
}

.checkout-steps {
  margin-bottom: 24px;
}

.checkout-steps .breadcrumb {
  align-items: center;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(155, 107, 85, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.checkout-steps a,
.checkout-steps .breadcrumb-item {
  color: #9b6b55;
  font-size: 13px;
  font-weight: 800;
}

.checkout-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(74, 55, 45, 0.08);
}

.checkout-card__header {
  margin-bottom: 22px;
}

.checkout-card__header span {
  display: inline-block;
  margin-bottom: 7px;
  color: #9b6b55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-card__header h2 {
  margin: 0;
  color: #2f2825;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}

.fulfillment-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fulfillment-option {
  position: relative;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 22px;
  background: #fffdf9;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.fulfillment-option:hover,
.fulfillment-option:focus-within {
  border-color: rgba(155, 107, 85, 0.3);
  background: #fff7ee;
  transform: translateY(-2px);
}

.fulfillment-option input {
  margin-top: 4px;
  accent-color: #9b6b55;
}

.fulfillment-option strong,
.fulfillment-option small {
  display: block;
}

.fulfillment-option strong {
  color: #2f2825;
  font-size: 16px;
}

.fulfillment-option small {
  margin-top: 5px;
  color: #6f7775;
  line-height: 1.55;
}

.pickup-store-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.94), rgba(255, 255, 255, 0.86)), radial-gradient(circle at top right, rgba(240, 205, 160, 0.24), transparent 32%);
}

.pickup-store-box__eyebrow {
  margin: 0 0 6px;
  color: #9b6b55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pickup-store-box h3 {
  margin: 0;
  color: #2f2825;
  font-size: 22px;
  font-weight: 800;
}

.pickup-store-box p,
.pickup-store-box address {
  margin: 10px 0 0;
  color: #6f7775;
  line-height: 1.7;
}

.pickup-hidden-fields {
  display: none;
}

.recipient-address-section {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.recipient-address-section--hidden {
  display: none;
}

.checkout-form-grid,
.checkout-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-field,
.checkout-review-item {
  min-width: 0;
}

.checkout-field--full,
.checkout-review-item--full {
  grid-column: 1/-1;
}

.checkout-field label,
.checkout-review-item span {
  display: block;
  margin-bottom: 8px;
  color: #7e7169;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-field .form-control,
.checkout-field .form-select {
  min-height: 48px;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 16px;
  color: #2f2825;
  background-color: #fffdf9;
  box-shadow: none;
}

.checkout-field .form-control:focus,
.checkout-field .form-select:focus {
  border-color: rgba(155, 107, 85, 0.48);
  box-shadow: 0 0 0 0.2rem rgba(155, 107, 85, 0.08);
}

.checkout-datepicker {
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 18px;
  background: #fffdf9;
}

.checkout-help-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #7e7169;
  font-size: 13px;
  line-height: 1.7;
}

.checkout-error {
  display: block;
  margin-top: 7px;
  color: #b45b4f;
  font-weight: 700;
}

.checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.checkout-primary-btn {
  width: auto;
  min-width: min(260px, 100%);
  padding: 0 28px;
  cursor: pointer;
}

.checkout-return-link {
  margin-top: 0;
}

.checkout-summary-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 26px;
}

.checkout-summary-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-summary-product img {
  width: 64px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
  background: #f6eee5;
}

.checkout-summary-product strong,
.checkout-summary-product span {
  display: block;
}

.checkout-summary-product strong {
  color: #2f2825;
  font-size: 14px;
  line-height: 1.35;
}

.checkout-summary-product span {
  margin-top: 4px;
  color: #7e7169;
  font-size: 12px;
  line-height: 1.4;
}

.checkout-summary-product p {
  margin: 0;
  color: #2f2825;
  font-weight: 800;
}

.checkout-summary-totals {
  border-top: 1px solid rgba(155, 107, 85, 0.1);
}

.checkout-payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(155, 107, 85, 0.1);
}

.checkout-payment-strip img {
  filter: grayscale(1);
  opacity: 0.62;
}

.checkout-review-item {
  padding: 16px;
  border: 1px solid rgba(155, 107, 85, 0.1);
  border-radius: 18px;
  background: #fffdf9;
}

.checkout-review-item strong {
  display: block;
  color: #2f2825;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.checkout-review-message {
  white-space: pre-line;
}

.color-filter-option {
  gap: 10px;
}

.color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(47, 40, 37, 0.08);
}

.color-swatch--white {
  border: 1px solid #d8d8d8;
  box-shadow: none;
}

.color-swatch--all {
  background: conic-gradient(from 90deg, #c93434, #e89ab2, #f2c84b, #6f9b68, #4f87c8, #8a5db7, #c93434);
}

@media (prefers-reduced-motion: reduce) {
  .cart-item-card,
  .cart-item-card__remove,
  .cart-quantity-btn,
  .cart-summary-btn,
  .checkout-primary-btn,
  .fulfillment-option {
    transition: none;
  }
}
@media (max-width: 991px) {
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-card,
  .checkout-summary-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .cart-page-shell,
  .checkout-shell {
    width: min(100% - 24px, 1180px);
  }
  .cart-item-card {
    grid-template-columns: 116px minmax(0, 1fr);
    border-radius: 24px;
  }
  .cart-item-card__meta,
  .fulfillment-selector,
  .checkout-form-grid,
  .checkout-review-grid {
    grid-template-columns: 1fr;
  }
  .checkout-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .checkout-primary-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cart-page-hero,
  .checkout-page-hero {
    padding-top: 108px;
  }
  .cart-item-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .cart-item-card__media {
    aspect-ratio: 1/1;
  }
  .cart-item-card__top,
  .cart-section-heading {
    align-items: flex-start;
  }
  .cart-section-heading {
    flex-direction: column;
    gap: 6px;
  }
  .cart-item-card__meta {
    gap: 14px;
  }
  .cart-summary-card__header,
  .checkout-summary-card__header,
  .cart-summary-card__body,
  .cart-summary-card__footer,
  .checkout-summary-products,
  .checkout-summary-totals,
  .checkout-payment-strip,
  .checkout-card {
    padding: 20px;
  }
  .checkout-summary-product {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .checkout-summary-product p {
    grid-column: 2;
  }
}

/* FAQ, delivery policy, and refund policy pages */
.policy-page {
  overflow: hidden;
  color: #3f3430;
  background: radial-gradient(circle at 12% 8%, rgba(240, 205, 160, 0.2), transparent 30%), linear-gradient(180deg, #fffaf4 0%, #fffdf9 46%, #f8f2ea 100%);
}

.policy-hero {
  position: relative;
  display: grid;
  min-height: clamp(280px, 36vh, 420px);
  margin-top: var(--top-info-height);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(47, 52, 51, 0.78), rgba(155, 107, 85, 0.48)), url("/images/footer-bg.png") center/cover no-repeat;
}

.policy-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 34%, rgba(240, 205, 160, 0.22), transparent 30%), linear-gradient(180deg, rgba(25, 32, 31, 0.34), rgba(25, 32, 31, 0.66));
}

.policy-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100% - 32px, 840px);
  margin: 0 auto;
  padding: calc(var(--main-navbar-height) + 36px) 0 58px;
  color: #fffdf9;
  text-align: center;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.policy-hero__eyebrow {
  margin: 0 0 12px;
  color: #f0cda0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.policy-hero__title {
  margin: 0;
  color: #fffdf9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.policy-hero__subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
}

.policy-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0 clamp(64px, 8vw, 110px);
}

.policy-section {
  margin-top: clamp(38px, 5vw, 64px);
}

.policy-section__header {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.policy-section__header--left {
  margin-left: 0;
  text-align: left;
}

.policy-section__header p,
.policy-cta > p,
.policy-help-card > div > p:first-child {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-section__header h2,
.policy-cta h2,
.policy-help-card h2 {
  margin: 0;
  color: #2f2825;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.policy-grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 26px);
  min-width: 0;
}

.policy-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-card,
.policy-list-card,
.policy-store-card,
.policy-help-card,
.policy-cta {
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(74, 55, 45, 0.08);
}

.policy-card {
  min-width: 0;
  padding: clamp(20px, 2.8vw, 30px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.policy-card:hover {
  border-color: rgba(155, 107, 85, 0.22);
  box-shadow: 0 26px 70px rgba(74, 55, 45, 0.12);
  transform: translateY(-4px);
}

.policy-card--accent {
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.94), rgba(255, 255, 255, 0.86)), radial-gradient(circle at top right, rgba(240, 205, 160, 0.24), transparent 32%);
}

.policy-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 18px;
  color: #9b6b55;
  background: rgba(240, 205, 160, 0.24);
  font-size: 19px;
}

.policy-card__title {
  margin: 0;
  color: #2f2825;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.policy-card__text {
  margin: 10px 0 0;
  color: #6f7775;
  font-size: 14px;
  line-height: 1.75;
}

.policy-accordion {
  display: grid;
  gap: 18px;
}

.policy-accordion__item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(74, 55, 45, 0.06);
}

.policy-accordion__button {
  min-height: 62px;
  padding: 18px 22px;
  color: #2f2825;
  background: transparent;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: none;
}

.policy-accordion__button:not(.collapsed),
.policy-accordion__button:focus {
  color: #9b6b55;
  background: #fff7ee;
  box-shadow: none;
}

.policy-accordion__body {
  padding: 20px 22px 24px;
  color: #6f7775;
  line-height: 1.8;
}

.policy-accordion__body p {
  margin: 0;
}

.policy-accordion__body ol {
  margin: 0;
  padding-left: 20px;
}

.policy-accordion__body li + li {
  margin-top: 8px;
}

.policy-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.policy-list-card {
  padding: clamp(22px, 3vw, 34px);
}

.policy-list-card ol {
  margin: 0;
  padding-left: 22px;
  color: #6f7775;
  line-height: 1.85;
}

.policy-list-card li + li {
  margin-top: 16px;
}

.policy-highlight {
  color: #b45b4f;
  font-weight: 800;
}

.policy-store-card {
  position: sticky;
  top: calc(var(--main-navbar-height-scrolled, 74px) + 24px);
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.94), rgba(255, 255, 255, 0.86)), radial-gradient(circle at top right, rgba(240, 205, 160, 0.24), transparent 32%);
}

.policy-store-card h2 {
  margin: 0;
  color: #2f2825;
  font-size: 26px;
  font-weight: 800;
}

.policy-store-card p,
.policy-store-card address {
  margin: 12px 0 0;
  color: #6f7775;
  line-height: 1.75;
}

.policy-mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #6f7775;
  line-height: 1.75;
}

.policy-mini-list li + li {
  margin-top: 8px;
}

.policy-timeline {
  display: grid;
  gap: 16px;
}

.policy-timeline__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(155, 107, 85, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(74, 55, 45, 0.07);
}

.policy-timeline__item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fffdf9;
  background: #9b6b55;
  font-weight: 900;
}

.policy-timeline__item h3 {
  margin: 0;
  color: #2f2825;
  font-size: 19px;
  font-weight: 800;
}

.policy-timeline__item p {
  margin: 9px 0 0;
  color: #6f7775;
  line-height: 1.78;
}

.policy-help-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf9;
}

.policy-help-card .policy-card__icon {
  margin-bottom: 0;
}

.policy-help-card p:last-child {
  margin: 12px 0 0;
  color: #6f7775;
  line-height: 1.75;
}

.policy-cta {
  margin-top: clamp(42px, 6vw, 76px);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  background: linear-gradient(135deg, rgba(47, 52, 51, 0.9), rgba(155, 107, 85, 0.82)), radial-gradient(circle at top right, rgba(240, 205, 160, 0.32), transparent 34%);
}

.policy-cta > p,
.policy-cta h2 {
  color: #fffdf9;
}

.policy-cta > p {
  color: #f0cda0;
}

.policy-cta h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.policy-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.policy-cta__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 253, 249, 0.26);
  border-radius: 999px;
  color: #fffdf9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.policy-cta__actions a:hover,
.policy-cta__actions a:focus-visible {
  color: #384043;
  background: #f0cda0;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .policy-card,
  .policy-cta__actions a {
    transition: none;
  }
}
@media (max-width: 991px) {
  .policy-grid--four,
  .policy-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .policy-split {
    grid-template-columns: 1fr;
  }
  .policy-store-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .policy-grid--two,
  .policy-grid--three,
  .policy-grid--four {
    grid-template-columns: 1fr;
  }
  .policy-section__header--left {
    text-align: center;
  }
  .policy-timeline__item,
  .policy-help-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .policy-hero__content {
    padding-top: calc(var(--main-navbar-height-scrolled) + 42px);
  }
  .policy-container {
    width: min(100% - 24px, 1120px);
    padding-top: 42px;
  }
  .policy-card,
  .policy-list-card,
  .policy-store-card,
  .policy-help-card,
  .policy-cta {
    border-radius: 22px;
  }
  .policy-accordion__button {
    min-height: 58px;
    padding: 16px 18px;
  }
  .policy-accordion__body {
    padding: 18px;
  }
  .policy-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* UI polish: title scale and checkout date picker comfort */
.category-hero__title {
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.category-hero__subtitle {
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.5;
}

.product-listing-heading h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: -0.035em;
}

.cart-page-hero,
.checkout-page-hero {
  padding-top: clamp(96px, 12vw, 140px);
  padding-bottom: clamp(38px, 5vw, 62px);
}

.cart-page-hero h1,
.checkout-page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

@media (min-width: 992px) {
  .checkout-datepicker {
    width: min(430px, 100%);
    padding: 14px;
    overflow: visible;
  }
  .checkout-datepicker .datepicker,
  .checkout-datepicker .datepicker-inline {
    width: 100%;
    font-size: 1.05rem;
  }
  .checkout-datepicker .datepicker table {
    width: 100%;
    margin: 0;
  }
  .checkout-datepicker .datepicker table tr th,
  .checkout-datepicker .datepicker table tr td {
    width: 48px;
    height: 42px;
    padding: 8px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .checkout-datepicker .datepicker table tr td.day:hover,
  .checkout-datepicker .datepicker table tr td.focused {
    background: #fff7ee;
  }
  .checkout-datepicker .datepicker table tr td.active,
  .checkout-datepicker .datepicker table tr td.active:hover {
    color: #fffdf9;
    background: #9b6b55;
  }
}
@media (max-width: 575px) {
  .category-hero__title {
    font-size: clamp(30px, 10vw, 44px);
  }
  .cart-page-hero,
  .checkout-page-hero {
    padding-top: 88px;
    padding-bottom: 34px;
  }
}

/* Product category compact shopping banner */
.category-hero {
  min-height: clamp(260px, 32vh, 340px);
}

.category-hero__content {
  width: min(100% - 32px, 720px);
  padding-top: calc(var(--main-navbar-height) + 18px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.category-hero__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.category-hero__title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.06;
}

.category-hero__subtitle {
  margin-top: 10px;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.4;
}

.category-hero__description {
  max-width: 560px;
  margin-top: 10px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
}

.product-listing-container {
  padding-top: clamp(24px, 3.5vw, 42px);
}

.product-listing-heading {
  margin-bottom: 18px;
}

.product-listing-heading__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

.product-listing-heading h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.product-listing-seo-copy {
  max-width: 720px;
  margin: 12px auto 0;
  color: #6f655f;
  font-size: 14px;
  line-height: 1.75;
}

.product-listing-toolbar {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .category-hero {
    min-height: clamp(230px, 30vh, 300px);
  }
  .category-hero__content {
    padding-top: calc(var(--main-navbar-height-scrolled) + 28px);
    padding-bottom: 34px;
  }
}
@media (max-width: 575px) {
  .category-hero {
    min-height: clamp(200px, 28vh, 250px);
  }
  .category-hero__content {
    width: min(100% - 28px, 720px);
    padding-top: calc(var(--main-navbar-height-scrolled) + 22px);
    padding-bottom: 26px;
  }
  .category-hero__title {
    font-size: clamp(27px, 8vw, 36px);
  }
  .category-hero__subtitle {
    margin-top: 7px;
    font-size: 13px;
  }
  .category-hero__description {
    display: none;
  }
  .product-listing-container {
    width: min(100% - 24px, 1320px);
    padding-top: 22px;
  }
  .product-listing-heading {
    margin-bottom: 14px;
  }
}

/* Product search and budget listing alignment */
.product-listing-toolbar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(280px, 100%);
}

.product-listing-toolbar__search input {
  min-height: 40px;
  min-width: 0;
  border: 1px solid rgba(155, 107, 85, 0.16);
  border-radius: 999px;
  background: #fffdf9;
  color: #384043;
  padding: 0 15px;
}

.product-listing-toolbar__search button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #9b6b55;
  color: #fffdf9;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.product-listing-toolbar__search button:hover,
.product-listing-toolbar__search button:focus-visible {
  background: #6f4538;
  transform: translateY(-1px);
}

.product-listing-content--full {
  min-width: 0;
}

.nav-dropdown__empty {
  display: block;
  padding: 4px 0;
  color: #7e7169;
  font-size: 13px;
  line-height: 1.6;
}

.mobile-nav__group .nav-dropdown__empty {
  padding: 4px 0;
  color: #7e7169;
}

/* Payment status pages */
.payment-status-page {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 46px);
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: clamp(120px, 14vw, 170px) 0 clamp(56px, 8vw, 90px);
}

.payment-status-card,
.payment-summary-card {
  border: 1px solid rgba(155, 107, 85, 0.14);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 24px 70px rgba(47, 60, 62, 0.12);
}

.payment-status-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.payment-status-card__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fffdf9;
  font-size: 28px;
}

.payment-status-page--success .payment-status-card__icon {
  background: #768d9a;
}

.payment-status-page--fail .payment-status-card__icon {
  background: #9b6b55;
}

.payment-status-card__eyebrow {
  margin: 0 0 10px;
  color: #9b6b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-status-card h1 {
  margin: 0;
  color: #2f3c3e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.payment-status-card__message {
  max-width: 560px;
  margin: 18px 0 0;
  color: #6f655f;
  font-size: 15px;
  line-height: 1.8;
}

.payment-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.payment-status-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(155, 107, 85, 0.22);
  border-radius: 999px;
  color: #9b6b55;
  background: #fffdf9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.payment-status-button:hover,
.payment-status-button:focus {
  transform: translateY(-2px);
  color: #fffdf9;
  background: #9b6b55;
}

.payment-status-button--primary {
  color: #fffdf9;
  background: #768d9a;
  border-color: #768d9a;
}

.payment-summary-card {
  align-self: start;
  padding: clamp(24px, 4vw, 36px);
}

.payment-summary-card h2 {
  margin: 0 0 20px;
  color: #2f3c3e;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.payment-summary-list {
  display: grid;
  gap: 14px;
}

.payment-summary-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(155, 107, 85, 0.12);
}

.payment-summary-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.payment-summary-item h3 {
  margin: 0 0 4px;
  color: #2f3c3e;
  font-size: 14px;
}

.payment-summary-item p,
.payment-summary-card__empty,
.payment-help-list p {
  margin: 0;
  color: #756b65;
  font-size: 13px;
  line-height: 1.6;
}

.payment-summary-item strong {
  color: #2f3c3e;
  font-size: 14px;
  white-space: nowrap;
}

.payment-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(155, 107, 85, 0.16);
  color: #2f3c3e;
  font-weight: 800;
}

.payment-help-list {
  display: grid;
  gap: 14px;
}

.payment-help-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fffdf9;
  background: #9b6b55;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 991px) {
  .payment-status-page {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }
}
@media (max-width: 575px) {
  .payment-status-page {
    width: min(100% - 24px, 1180px);
    padding-top: 96px;
  }
  .payment-status-card,
  .payment-summary-card {
    border-radius: 24px;
  }
  .payment-summary-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .payment-summary-item strong {
    grid-column: 2;
  }
}

@media (max-width: 991px) {
  .product-listing-toolbar__search {
    width: 100%;
  }
  .product-listing-toolbar__search input {
    flex: 1 1 auto;
  }
}
@media (max-width: 575px) {
  .product-listing-toolbar__search {
    flex-direction: column;
    align-items: stretch;
  }
  .product-listing-toolbar__search button {
    width: 100%;
  }
}
