:root {
  --gold:#d07a00;
  --brown:#7a3c00;
  --black:#11100d;
  --deep:#003d3d;
  --teal:#007f7f;
  --cream:#f6f0e7;
  --paper:#fbf8f2;
  --line:#d8c9b8;
  --muted:#756a5e;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(17,16,13,.12);
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  color:var(--black);
  background:var(--paper);
  line-height:1.65;
}


/* Change request 1.3: prevent horizontal page scroll caused by decorative image borders */
html,
body {
  max-width:100%;
  overflow-x:hidden;
}

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

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

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

button,input,textarea,select {
  font:inherit;
}

.container {
  width:min(1500px,calc(100% - 40px));
  margin-inline:auto;
}

.serif {
  font-family:'Cormorant Garamond',Georgia,serif;
}

.small-title {
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-size:.78rem;
  font-weight:700;
  margin:0 0 12px;
}

h1,h2,h3,h4 {
  font-family:'Cormorant Garamond',Georgia,serif;
  line-height:1.08;
  font-weight:600;
  margin:0;
  color:inherit;
}

h1 {
  font-size:clamp(2.6rem,6vw,5.7rem);
  letter-spacing:.08em;
  text-transform:uppercase;
}

h2 {
  font-size:clamp(2.1rem,4vw,4rem);
  letter-spacing:.045em;
}

h3 {
  font-size:clamp(1.5rem,2.4vw,2.2rem);
}

p {
  margin:0 0 18px;
}

.lead {
  font-size:1.08rem;
  color:#423a32;
}

.muted {
  color:var(--muted);
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid transparent;
  background:var(--gold);
  color:#fff;
  padding:0 28px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
  min-height:52px;
  min-width:190px;
  text-align:center;
  line-height:1.2;
}

.btn:hover {
  background:var(--brown);
  transform:translateY(-2px);
}

.btn.outline {
  background:transparent;
  border-color:currentColor;
  color:inherit;
}

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

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

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

.icon {
  width:28px;
  height:28px;
  stroke:currentColor;
  stroke-width:1.55;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.icon.fill {
  fill:currentColor;
  stroke:none;
}

.topbar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  border-bottom:0;
  transition:.25s ease;
  background:transparent;
  box-shadow:none;
}

.topbar.scrolled,
.topbar.light.scrolled {
  background:rgba(17,16,13,.96);
  border-bottom-color:transparent;
  box-shadow:0 8px 30px rgba(17,16,13,.2);
}

.nav {
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:.18em;
  font-family:'Cormorant Garamond',Georgia,serif;
  text-transform:uppercase;
  font-size:1.05rem;
  color:#fff;
}

.brand img {
  width:44px;
  height:44px;
  object-fit:contain;
}

.topbar.scrolled .brand,
.topbar.light .brand {
  color:#fff;
}

.menu {
  display:flex;
  align-items:center;
  gap:28px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.68rem;
  font-weight:700;
}

.topbar.scrolled .menu,
.topbar.light .menu {
  color:#fff;
}

.menu a {
  position:relative;
}

.menu a:after {
  content:"";
  height:1px;
  background:currentColor;
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s;
}

.menu a:hover:after,.menu a.active:after {
  transform:scaleX(1);
}

.nav-actions {
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
}

.topbar.scrolled .nav-actions,
.topbar.light .nav-actions {
  color:#fff;
}

.icon-btn {
  border:0;
  background:transparent;
  color:inherit;
  padding:5px;
  display:inline-flex;
  cursor:pointer;
  position:relative;
}

.cart-count {
  position:absolute;
  top:-5px;
  right:-7px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  font-size:.65rem;
  line-height:1;
  min-width:17px;
  height:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.hamburger {
  display:none;
}

.hero {
  min-height:96vh;
  background:url('../images/Woodworking\ studio\ with\ handcrafted\ bowls.png') center/cover no-repeat;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  padding:150px 0 110px;
  position:relative;
  overflow:hidden;
}

.hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
  z-index:1;
}

.hero:after {
  display:none;
}

.hero-content {
  position:relative;
  z-index:2;
  width:min(1500px,calc(100% - 40px));
  margin:auto;
}

.hero-logo {
  width:150px;
  height:150px;
  object-fit:contain;
  margin:0 auto 22px;
  filter:drop-shadow(0 12px 30px rgba(0,0,0,.35));
}

.hero h1 {
  max-width:1500px;
  margin-inline:auto;
}

.hero p {
  max-width:620px;
  margin:18px auto 28px;
  color:#f8f1e5;
}

.divider {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  color:var(--gold);
  margin:18px 0;
}

.divider:before,.divider:after {
  content:"";
  width:62px;
  height:1px;
  background:currentColor;
}

.inner-hero {
  background:url('../images/placeholder.png') center/cover no-repeat;
  min-height:540px;
  color:#fff;
  padding:230px 0 165px;
  display:grid;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.inner-hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  z-index:1;
}

.inner-hero .container {
  position:relative;
  z-index:2;
}

/* Hero page-load fade animation */
.hero > .hero-content,
.inner-hero > .container {
  animation: heroContentFadeIn 950ms ease 160ms both;
  will-change: opacity, transform;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > .hero-content,
  .inner-hero > .container {
    animation: none;
  }
}

.breadcrumbs {
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
  color:#ead8c2;
}

.breadcrumbs a {
  color:#fff;
}

.section {
  padding:92px 0;
}

.section.dark {
  background:var(--deep);
  color:#fff;
}

.section.cream {
  background:var(--cream);
}

.section.narrow {
  padding:60px 0;
}

.center {
  text-align:center;
}

.section-head {
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}

.grid {
  display:grid;
  gap:24px;
}

.grid-2 {
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:center;
}

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

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

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

.category-card {
  position:relative;
  min-height:310px;
  overflow:hidden;
  background:#222;
  box-shadow:var(--shadow);
}

.category-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  transition:.4s;
}

.category-card:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(transparent,rgba(0,0,0,.75));
}

.category-card span {
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
  color:#fff;
  font-family:'Cormorant Garamond',Georgia,serif;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:1.35rem;
}

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

.value-card,.feature-card,.product-card,.policy-card,.account-panel {
  background:#fff;
  border:1px solid var(--line);
  padding:28px;
  box-shadow:0 12px 28px rgba(17,16,13,.05);
}

.dark .value-card,.dark .feature-card {
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.16);
  box-shadow:none;
}

.value-card {
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.value-card .icon {
  color:var(--gold);
  flex:0 0 auto;
}

.value-card h3,.feature-card h3 {
  font-family:Montserrat,Arial,sans-serif;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
}

.feature-card {
  text-align:center;
}

.feature-card .icon {
  margin:0 auto 18px;
  color:var(--gold);
  width:38px;
  height:38px;
}

.quote-box {
  border-left:3px solid var(--gold);
  background:var(--cream);
  padding:24px 28px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.45rem;
  line-height:1.35;
  color:var(--black);
  margin:24px 0;
}

.image-frame {
  position:relative;
}

.image-frame img {
  aspect-ratio:4/5;
  object-fit:cover;
  width:100%;
  box-shadow:var(--shadow);
}

.image-frame:before {
  content:"";
  position:absolute;
  inset:22px -22px -22px 22px;
  border:1px solid var(--gold);
  z-index:-1;
}

.cta {
  background:url('../images/placeholder.png') center/cover no-repeat fixed;
  color:#fff;
  text-align:center;
  padding:160px 0;
  position:relative;
  overflow:hidden;
}

.cta:before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  z-index:1;
}

.cta .container {
  position:relative;
  z-index:2;
}

.cta p {
  max-width:650px;
  margin-inline:auto;
  color:#f0e5d6;
}


/* Background attachment */
@media (max-width: 980px) {
  .cta,
  .testimonials {
    background-attachment: scroll;
  }
}

.products {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.product-card {
  padding:0;
  overflow:hidden;
}

.product-img {
  height:250px;
  background:var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.product-info {
  padding:20px;
}

.product-kicker {
  font-size:.68rem;
  letter-spacing:.17em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}

.product-info h3 {
  font-family:Montserrat,Arial,sans-serif;
  font-size:.9rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:6px 0 8px;
}

.price {
  font-weight:800;
  color:var(--brown);
  margin-bottom:14px;
}

.product-actions {
  display:flex;
  gap:10px;
  align-items:center;
}

.product-actions .btn {
  padding:10px 13px;
  min-height:40px;
  min-width:auto;
  font-size:.63rem;
}

.testimonials {
  background:url('../images/Warm\ rustic\ serenity\ with\ natural\ textures.png') center/cover no-repeat fixed;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.testimonials:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(17,16,13,.87),rgba(17,16,13,.6));
  z-index:1;
}

.testimonials .container {
  position:relative;
  z-index:2;
}

.testimonial-card {
  max-width:780px;
  margin:auto;
}

.testimonial-slider {
  position:relative;
  min-height:250px;
  overflow:hidden;
  padding:0 72px 52px;
}

.testimonial-slide {
  position:absolute;
  inset:0 72px 52px;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:opacity 700ms ease, transform 700ms ease, visibility 700ms ease;
}

.testimonial-slide.is-active {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.testimonial-arrow {
  position:absolute;
  top:42%;
  z-index:3;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  line-height:1;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background:rgba(204,122,0,.9);
  border-color:rgba(204,122,0,.9);
  transform:scale(1.06);
}

.testimonial-arrow-prev {
  left:0;
}

.testimonial-arrow-next {
  right:0;
}

.testimonial-dots {
  position:absolute;
  left:50%;
  bottom:0;
  z-index:3;
  display:flex;
  gap:10px;
  transform:translateX(-50%);
}

.testimonial-dot {
  width:10px;
  height:10px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  padding:0;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}

.testimonial-dot.is-active,
.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  background:var(--gold);
  border-color:var(--gold);
  transform:scale(1.15);
}

.testimonial-card blockquote {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.5rem,3vw,2.5rem);
  line-height:1.25;
  margin:0 0 22px;
}

.stars {
  color:var(--gold);
  letter-spacing:.15em;
  margin-bottom:18px;
}


@media(max-width:700px) {
  .testimonial-slider {
    min-height:330px;
    padding:0 46px 54px;
  }

  .testimonial-slide {
    inset:0 46px 54px;
  }

  .testimonial-arrow {
    width:34px;
    height:34px;
    font-size:1rem;
  }
}

.footer {
  background:#24211e;
  color:#f7eee5;
}

.footer-trust {
  border-bottom:1px solid rgba(255,255,255,.16);
  padding:34px 0;
}

.footer-trust .value-card {
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  color:#fff;
}

.footer-main {
  padding:54px 0;
}

.footer-logo {
  width:130px;
  margin-bottom:18px;
}

.footer h3 {
  font-family:Montserrat,Arial,sans-serif;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.76rem;
  margin-bottom:15px;
  color:#fff;
}

.footer p,.footer li {
  color:#d4c7b8;
  font-size:.92rem;
}

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

.footer li {
  margin-bottom:8px;
}

.newsletter {
  display:flex;
  border:1px solid rgba(255,255,255,.2);
}

.newsletter input {
  min-width:0;
  flex:1;
  border:0;
  background:transparent;
  color:#fff;
  padding:12px;
}

.newsletter button {
  border:0;
  background:var(--gold);
  color:#fff;
  width:46px;
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.16);
  padding:18px 0;
  color:#c7b9a7;
  font-size:.78rem;
}

.footer-bottom .container {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.social {
  display:flex;
  gap:10px;
}

.social a {
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.24);
  display:grid;
  place-items:center;
  color:#fff;
}

.shop-layout {
  display:grid;
  grid-template-columns:280px 1fr;
  gap:34px;
}

.sidebar {
  background:#fff;
  border:1px solid var(--line);
  padding:26px;
  align-self:start;
  position:sticky;
  top:100px;
}

.search-input,.form-field input,.form-field textarea,.form-field select {
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  padding:13px 14px;
  color:var(--black);
}

.filter-list {
  list-style:none;
  margin:24px 0 0;
  padding:0;
}

.filter-list button {
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  color:var(--black);
}

.filter-list button.active,.filter-list button:hover {
  color:var(--gold);
}


.filter-list--hierarchy .filter-main button {
  font-weight: 800;
  color: var(--black);
}

.filter-list--hierarchy .filter-child button {
  padding-left: 22px;
  font-size: .68rem;
  color: var(--muted);
  position: relative;
}

.filter-list--hierarchy .filter-child button::before {
  content: '—';
  position: absolute;
  left: 4px;
  color: var(--gold);
}

.filter-list--hierarchy .filter-child button.active,
.filter-list--hierarchy .filter-child button:hover,
.filter-list--hierarchy .filter-main button.active,
.filter-list--hierarchy .filter-main button:hover {
  color: var(--gold);
}

.product-detail {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
}

.gallery-main {
  background:#fff;
  border:1px solid var(--line);
  padding:16px;
}

.gallery-main img {
  aspect-ratio:1/1;
  object-fit:cover;
  width:100%;
}

.thumbs {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:12px;
}

.thumbs button {
  border:1px solid var(--line);
  background:#fff;
  padding:6px;
  cursor:pointer;
  transition:.2s ease;
}

.thumbs button.active,
.thumbs button:hover {
  border-color:var(--gold);
  transform:translateY(-1px);
}

.thumbs img {
  aspect-ratio:1/1;
  object-fit:cover;
}

.qty {
  display:flex;
  gap:10px;
  align-items:center;
  margin:20px 0;
}

.qty input {
  width:72px;
  padding:12px;
  border:1px solid var(--line);
}

.tabs {
  background:#fff;
  border:1px solid var(--line);
}

.tab-buttons {
  display:flex;
  border-bottom:1px solid var(--line);
}

.tab-buttons button {
  flex:1;
  background:transparent;
  border:0;
  padding:16px;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
}

.tab-buttons button.active {
  background:var(--cream);
  color:var(--brown);
  font-weight:700;
}

.tab-content {
  display:none;
  padding:28px;
}

.tab-content.active {
  display:block;
}

.faq-wrap {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.accordion-item {
  background:#fff;
  border:1px solid var(--line);
  margin-bottom:12px;
}

.accordion-btn {
  width:100%;
  border:0;
  background:#fff;
  text-align:left;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  cursor:pointer;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.8rem;
}

.accordion-panel {
  display:none;
  padding:0 20px 18px;
  color:var(--muted);
}

.accordion-item.open .accordion-panel {
  display:block;
}

.accordion-item.open .accordion-btn {
  color:var(--brown);
}

.contact-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
}

.contact-card {
  background:#fff;
  border:1px solid var(--line);
  padding:34px;
  box-shadow:var(--shadow);
}

.contact-row {
  display:flex;
  gap:16px;
  margin:22px 0;
}

.contact-row .icon {
  color:var(--gold);
}

.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-field.full {
  grid-column:1/-1;
}

.form-field label {
  display:block;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.7rem;
  font-weight:700;
  margin-bottom:6px;
}

.form-note {
  margin-top:14px;
  color:var(--muted);
  font-size:.9rem;
}

.legal-content {
  background:transparent;
  border:0;
  padding:0;
  width:min(1500px,calc(100% - 40px));
  max-width:1500px;
  margin:0 auto;
}

.legal-content h2 {
  font-family:Montserrat,Arial,sans-serif;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:28px 0 12px;
  color:var(--brown);
}

.cart-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid var(--line);
}

.cart-table th,.cart-table td {
  text-align:left;
  padding:16px;
  border-bottom:1px solid var(--line);
}

.cart-table th {
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  color:var(--brown);
}

.cart-total {
  margin-left:auto;
  margin-top:24px;
  width:min(410px,100%);
  background:#fff;
  border:1px solid var(--line);
  padding:26px;
}

.line {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.line.total {
  font-size:1.2rem;
  font-weight:800;
  border-bottom:0;
}

.empty {
  background:#fff;
  border:1px solid var(--line);
  padding:28px;
  text-align:center;
}

.checkout-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
}

.order-summary {
  background:#fff;
  border:1px solid var(--line);
  padding:26px;
  align-self:start;
}

.account-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
}

.page-title-mini {
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--gold);
  font-size:.76rem;
  font-weight:800;
}

@media(max-width:980px) {
  .hamburger {
    display:inline-flex;
  }

  .menu {
    position:fixed;
    inset:76px 0 auto 0;
    background:var(--paper);
    color:var(--black)!important;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:24px 30px;
    box-shadow:var(--shadow);
  }

  .menu.open {
    display:flex;
  }

  .nav {
    height:76px;
  }

  .grid-4,.grid-5,.products {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .grid-3 {
    grid-template-columns:1fr 1fr;
  }

  .grid-2,.product-detail,.faq-wrap,.contact-grid,.checkout-grid,.account-grid {
    grid-template-columns:1fr;
  }

  .shop-layout {
    grid-template-columns:1fr;
  }

  .sidebar {
    position:static;
  }

  .footer-main .grid-4 {
    grid-template-columns:1fr 1fr;
  }

  .hero {
    min-height:760px;
  }

}

@media(max-width:640px) {
  .btn {
    min-width:0;
    width:100%;
  }

  .product-actions .btn {
    width:100%;
  }

  .container {
    width:min(100% - 28px,1500px);
  }

  h1 {
    font-size:2.45rem;
  }

  .hero-logo {
    width:120px;
    height:120px;
  }

  .section {
    padding:66px 0;
  }

  .grid-3,.grid-4,.grid-5,.products {
    grid-template-columns:1fr;
  }

  .form-grid {
    grid-template-columns:1fr;
  }

  .footer-main .grid-4 {
    grid-template-columns:1fr;
  }

  .product-actions {
    flex-direction:column;
    align-items:stretch;
  }

  .cart-table {
    display:block;
    overflow-x:auto;
  }

  .brand span {
    display:none;
  }

  .inner-hero {
    min-height:390px;
    padding:160px 0 110px;
  }

  .legal-content {
    width:min(100% - 28px,1500px);
    padding:0;
  }

  .hero {
    min-height:680px;
  }

}

.topbar.scrolled .brand img,
.topbar.light .brand img {
  filter:none;
}

.why-showcase {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}

.why-collage {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.why-collage img {
  width:100%;
  height:230px;
  object-fit:cover;
  border:1px solid var(--line);
  background:#fff;
}

.why-collage img:first-child {
  grid-row:span 2;
  height:100%;
}

.why-list {
  display:grid;
  gap:0;
}

.why-list .feature-card {
  display:grid;
  grid-template-columns:52px 1fr;
  text-align:left;
  align-items:start;
  background:transparent;
  border:0;
  border-bottom:1px solid var(--line);
  box-shadow:none;
  padding:0 0 18px;
  margin-bottom:18px;
}

.why-list .feature-card:last-child {
  border-bottom:0;
  margin-bottom:0;
  padding-bottom:0;
}

.why-list .feature-card .icon {
  margin:2px 0 0;
  color:var(--gold);
  width:36px;
  height:36px;
}

.why-list .feature-card p {
  margin:0;
}

.contact-social {
  margin-top:30px;
}

.contact-social h3 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.7rem,2.7vw,2.45rem);
  line-height:1.08;
  letter-spacing:.045em;
  margin-bottom:14px;
}

.contact-social .social a {
  border-color:var(--line);
  color:var(--black);
  font-size:.75rem;
  font-weight:700;
}

@media(max-width:980px) {
  .why-showcase {
    grid-template-columns:1fr;
  }

  .why-collage img:first-child {
    height:230px;
  }

}

@media(max-width:640px) {
  .why-collage {
    grid-template-columns:1fr;
  }

  .why-collage img,.why-collage img:first-child {
    height:240px;
  }

  .why-list .feature-card {
    grid-template-columns:44px 1fr;
  }

  .inner-hero {
    min-height:390px;
    padding:160px 0 110px;
  }

  .cta {
    padding:120px 0;
  }

}

.mission-stack {
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:28px;
}

.mission-stack .feature-card {
  text-align:left;
  display:grid;
  grid-template-columns:54px 1fr;
  align-items:start;
}

.mission-stack .feature-card .icon {
  margin:2px 0 0;
}

.mission-stack .feature-card h3 {
  margin-bottom:6px;
}

.mission-stack .feature-card p {
  margin-bottom:0;
}

@media(max-width:640px) {
  .mission-stack .feature-card {
    grid-template-columns:1fr;
    text-align:center;
  }

  .mission-stack .feature-card .icon {
    margin:0 auto 16px;
  }

}

/* Change request 5: About brand values light background with blue/green blocks */
.about-story-btn {
  margin-top:28px;
}

.brand-values {
  background:var(--paper);
  color:var(--black);
}

.brand-values .section-head .small-title {
  color:var(--gold);
}

.brand-values .feature-card {
  background:var(--deep);
  color:#fff;
  border-color:rgba(0,61,61,.18);
  box-shadow:0 12px 28px rgba(17,16,13,.08);
}

.brand-values .feature-card .icon {
  color:var(--gold);
}

.brand-values .feature-card p {
  color:#efe7dc;
}

@media(max-width:640px) {
  .about-story-btn {
    width:100%;
  }

}

.why-shop-btn {
  margin-top:28px;
}

/* Change request 6: match image height to content column on Home, About and FAQs */
.section .grid-2:has(.image-frame),
.faq-wrap,
.why-showcase {
  align-items:stretch;
}

.section .grid-2:has(.image-frame) > .image-frame,
.faq-wrap > .image-frame {
  height:100%;
  min-height:360px;
}

.section .grid-2:has(.image-frame) > .image-frame img,
.faq-wrap > .image-frame img {
  height:100%;
  aspect-ratio:auto;
}

.why-collage {
  height:100%;
  grid-template-rows:1fr 1fr;
}

.why-collage img,
.why-collage img:first-child {
  height:100%;
  min-height:0;
}

@media(max-width:980px) {
  .section .grid-2:has(.image-frame) > .image-frame,
  .faq-wrap > .image-frame,
  .why-collage {
    height:auto;
    min-height:0;
  }

  .section .grid-2:has(.image-frame) > .image-frame img,
  .faq-wrap > .image-frame img {
    height:auto;
    aspect-ratio:4/5;
  }

  .why-collage img,
  .why-collage img:first-child {
    height:240px;
  }

}

/* Keep the home hero heading to two controlled lines on desktop */
.hero h1 {
  max-width:1400px;
  margin-inline:auto;
  font-size:clamp(3rem,5.2vw,5.55rem);
}

.hero h1 .hero-line {
  display:block;
  white-space:nowrap;
}

@media(min-width:901px) {
  .hero h1 {
    letter-spacing:.075em;
  }

}

@media(max-width:900px) {
  .hero h1 .hero-line {
    white-space:normal;
  }

  .hero h1 {
    font-size:clamp(2.4rem,9vw,4.4rem);
  }

}



/* Keep selected section backgrounds static while their content can fade in */
.no-section-bg-animation {
  opacity: 1;
  transform: none;
  filter: none;
}

.no-section-bg-animation > .container.reveal-section {
  transform: translateY(18px);
  filter: none;
}

.no-section-bg-animation > .container.reveal-section.is-visible {
  transform: translateY(0);
}

/* Change request 7: keep the FAQ image border on the left-bottom side */
.faq-wrap > .image-frame:before {
  inset:22px 22px -22px -22px;
}

/* Change request 7: CTA backgrounds stay visible while content fades in */
.cta > .container.reveal-section {
  transform:translateY(18px);
  filter:none;
}

.cta > .container.reveal-section.is-visible {
  transform:translateY(0);
}

/* Entrance animations */
.reveal-section {
    opacity: 0;
    transform: translateY(44px);
    filter: blur(6px);
    transition: opacity 850ms ease, transform 850ms ease, filter 850ms ease;
    will-change: opacity, transform, filter;
}

.reveal-section.reveal-left {
    transform: translateX(-44px);
}

.reveal-section.reveal-right {
    transform: translateX(44px);
}

.reveal-section.reveal-scale {
    transform: translateY(34px) scale(0.98);
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-section.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-child,
    .testimonial-slide {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .testimonial-slide {
      position:static;
      visibility:visible !important;
      margin-bottom:32px;
    }
}

/* Home hero staggered page-load animation */
.hero > .hero-content {
  animation: none;
}

.hero .hero-logo,
.hero h1,
.hero .divider,
.hero p,
.hero .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: heroItemFadeIn 750ms ease both;
  will-change: opacity, transform;
}

.hero .hero-logo {
  animation-delay: 0ms;
}

.hero h1 {
  animation-delay: 400ms;
}

.hero .divider,
.hero p {
  animation-delay: 1000ms;
}

.hero .btn {
  animation-delay: 1800ms;
}

@keyframes heroItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-logo,
  .hero h1,
  .hero .divider,
  .hero p,
  .hero .btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Page-load entrance for first section after shorter inner hero pages */
.page-load-after-hero > .container {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  animation: afterHeroSectionFadeIn 950ms ease 260ms both;
  will-change: opacity, transform, filter;
}

@keyframes afterHeroSectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-load-after-hero > .container {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* Delayed page-load content animation for first sections after shorter inner heroes */
.page-load-after-hero > .container {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.page-load-after-hero .small-title,
.page-load-after-hero h2,
.page-load-after-hero .lead,
.page-load-after-hero .image-frame,
.page-load-after-hero .mission-stack .feature-card,
.page-load-after-hero .about-story-btn,
.page-load-after-hero .accordion-item,
.page-load-after-hero .contact-row,
.page-load-after-hero .contact-social,
.page-load-after-hero .contact-card,
.page-load-after-hero.contact-intro > .container > div:first-child > p:not(.small-title):not(.lead),
.page-load-after-hero.about-intro > .container > div:first-child > p:not(.small-title):not(.lead) {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  animation: afterHeroContentFadeIn 850ms ease both;
  will-change: opacity, transform, filter;
}

.page-load-after-hero.about-intro .small-title,
.page-load-after-hero.faq-intro .image-frame,
.page-load-after-hero.contact-intro .small-title {
  animation-delay: 720ms;
}

.page-load-after-hero.about-intro h2,
.page-load-after-hero.faq-intro .small-title,
.page-load-after-hero.contact-intro h2 {
  animation-delay: 880ms;
}

.page-load-after-hero.about-intro > .container > div:first-child > p:nth-of-type(2),
.page-load-after-hero.faq-intro h2,
.page-load-after-hero.contact-intro .lead {
  animation-delay: 1160ms;
}

.page-load-after-hero.about-intro > .container > div:first-child > p:nth-of-type(3),
.page-load-after-hero.faq-intro .lead,
.page-load-after-hero.contact-intro .contact-row:nth-of-type(1) {
  animation-delay: 1320ms;
}

.page-load-after-hero.about-intro .mission-stack .feature-card:nth-child(1),
.page-load-after-hero.faq-intro .accordion-item:nth-of-type(1),
.page-load-after-hero.contact-intro .contact-row:nth-of-type(2) {
  animation-delay: 1360ms;
}

.page-load-after-hero.about-intro .mission-stack .feature-card:nth-child(2),
.page-load-after-hero.faq-intro .accordion-item:nth-of-type(2),
.page-load-after-hero.contact-intro .contact-row:nth-of-type(3) {
  animation-delay: 1520ms;
}

.page-load-after-hero.about-intro .mission-stack .feature-card:nth-child(3),
.page-load-after-hero.faq-intro .accordion-item:nth-of-type(3),
.page-load-after-hero.contact-intro .contact-social {
  animation-delay: 1680ms;
}

.page-load-after-hero.about-intro .about-story-btn,
.page-load-after-hero.faq-intro .accordion-item:nth-of-type(4),
.page-load-after-hero.contact-intro .contact-card {
  animation-delay: 1840ms;
}

.page-load-after-hero.about-intro .image-frame,
.page-load-after-hero.faq-intro .accordion-item:nth-of-type(5) {
  animation-delay: 1040ms;
}

.page-load-after-hero.faq-intro .accordion-item:nth-of-type(6) {
  animation-delay: 2160ms;
}

/* About page intro order fix: heading must appear before the paragraph under it */
.page-load-after-hero.about-intro > .container > div:first-child > h2 {
  animation-delay: 820ms;
}

.page-load-after-hero.about-intro > .container > div:first-child > p:nth-of-type(2) {
  animation-delay: 1220ms;
}

.page-load-after-hero.about-intro > .container > div:first-child > p:nth-of-type(3) {
  animation-delay: 1400ms;
}

@keyframes afterHeroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-load-after-hero .small-title,
  .page-load-after-hero h2,
  .page-load-after-hero .lead,
  .page-load-after-hero .image-frame,
  .page-load-after-hero .mission-stack .feature-card,
  .page-load-after-hero .about-story-btn,
  .page-load-after-hero .accordion-item,
  .page-load-after-hero .contact-row,
  .page-load-after-hero .contact-social,
  .page-load-after-hero .contact-card,
  .page-load-after-hero.contact-intro > .container > div:first-child > p:not(.small-title):not(.lead),
  .page-load-after-hero.about-intro > .container > div:first-child > p:not(.small-title):not(.lead) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* Explicit About page intro animation order fix */
.page-load-after-hero.about-intro .about-intro-heading {
  animation-delay: 880ms !important;
}

.page-load-after-hero.about-intro .about-intro-paragraph {
  animation-delay: 1160ms !important;
}

.page-load-after-hero.about-intro .about-intro-paragraph-two {
  animation-delay: 1320ms !important;
}

/* Social media icon links */
.social a {
  display:grid;
  place-items:center;
}

.social-icon {
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

a[aria-label="Facebook"] .social-icon {
  fill:currentColor;
  stroke:none;
}


/* Change request 1.3: remove header line */
.topbar,
.topbar.scrolled,
.topbar.light.scrolled {
  border-bottom:0 !important;
}


/* Change request 1.3: keep shop filters and products visible on mobile */
@media(max-width:980px) {
  .shop-layout,
  .shop-layout .sidebar,
  .shop-layout main,
  .shop-layout .products {
    display:grid;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    filter:none !important;
  }

  .shop-layout .sidebar,
  .shop-layout main {
    display:block;
  }
}


/* Change request 1.3: FAQs content first on tablet and mobile */
@media(max-width:980px) {
  .faq-wrap > .image-frame {
    order:2;
  }

  .faq-wrap > div:not(.image-frame) {
    order:1;
  }
}


/* Shop mobile: remove entrance animation so filters and products stay visible */
@media(max-width:980px) {
  .shop-products-section.reveal-section,
  .shop-products-section.reveal-left,
  .shop-products-section.reveal-right,
  .shop-products-section.reveal-scale,
  .shop-products-section .reveal-child,
  .shop-products-section .product-card,
  .shop-products-section .sidebar,
  .shop-products-section main,
  .shop-products-section .products {
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    filter:none !important;
    animation:none !important;
    transition:none !important;
  }

  .shop-products-section.reveal-section {
    display:block !important;
  }

  .shop-products-section .shop-layout {
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .shop-products-section .products {
    display:grid !important;
    grid-template-columns:1fr !important;
  }
}


/* Social links: match primary button styling */
.social a,
.contact-social .social a {
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
  transition:.25s ease;
}

.social a:hover,
.contact-social .social a:hover {
  background:var(--brown);
  border-color:var(--brown);
  color:#fff;
  transform:translateY(-2px);
}

/* Fixed WhatsApp contact button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 999;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(17, 16, 13, .22);
  line-height: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(17, 16, 13, .26);
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media(max-width:640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 88px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 38px;
    height: 38px;
  }
}



.hm-cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 30px;
  align-items: start;
}

.hm-cart-page-layout #cartTotal {
  position: sticky;
  top: 110px;
}

.hm-cart-page-layout .cart-total {
  margin: 0;
  width: 100%;
}

.hm-side-cart-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(17, 16, 13, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.hm-side-cart-float:hover,
.hm-side-cart-float[aria-expanded="true"] {
  background: var(--brown);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(17, 16, 13, .26);
}

.hm-side-cart-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-side-cart-float .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hm-side-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(17,16,13,.54);
  opacity: 0;
  transition: opacity .25s ease;
}

.hm-side-cart-overlay.is-open {
  opacity: 1;
}

.hm-side-cart-overlay[hidden] {
  display: none;
}

.hm-side-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1101;
  width: min(440px, calc(100vw - 28px));
  height: 100vh;
  background: var(--paper);
  color: var(--black);
  box-shadow: -18px 0 54px rgba(17,16,13,.24);
  transform: translateX(105%);
  transition: transform .3s ease;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.hm-side-cart-drawer.is-open {
  transform: translateX(0);
}

.hm-side-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 30px 22px;
  background: var(--deep);
  color: #fff;
}

.hm-side-cart-head .small-title {
  color: var(--gold);
  margin-bottom: 8px;
}

.hm-side-cart-head h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
}

.hm-side-cart-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: .22s ease;
}

.hm-side-cart-close:hover {
  background: #fff;
  color: var(--black);
}

.hm-side-cart-body {
  overflow-y: auto;
  padding: 26px 24px;
}

.hm-side-cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hm-side-cart-img {
  display: block;
  width: 96px;
  height: 104px;
  overflow: hidden;
  background: #fff;
}

.hm-side-cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hm-side-cart-title {
  display: inline-block;
  color: var(--black);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
}

.hm-side-cart-info p {
  color: var(--muted);
  font-size: .82rem;
  margin: 0 0 12px;
}

.hm-side-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hm-side-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.hm-side-cart-qty button,
.hm-side-cart-qty span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hm-side-cart-qty button {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 1.1rem;
}

.hm-side-cart-qty button:hover {
  background: var(--paper);
}

.hm-side-cart-qty span {
  font-size: .86rem;
  font-weight: 800;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hm-side-cart-row strong {
  color: var(--deep);
  white-space: nowrap;
}

.hm-side-cart-remove {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 0;
}

.hm-side-cart-foot {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -12px 32px rgba(17,16,13,.08);
}

.hm-side-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hm-side-cart-total strong {
  font-size: 1.35rem;
  color: var(--deep);
}

.hm-side-cart-foot p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.hm-side-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hm-side-cart-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.hm-side-cart-actions .btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid currentColor;
}

.hm-side-cart-actions .btn-outline:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.hm-side-cart-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.hm-side-cart-empty h4 {
  margin: 0;
  font-size: 2rem;
}

.hm-side-cart-empty p {
  margin: 0 0 8px;
  color: var(--muted);
}

@media(max-width:980px) {
  .hm-cart-page-layout {
    grid-template-columns: 1fr;
  }

  .hm-cart-page-layout #cartTotal {
    position: static;
  }
}

@media(max-width:640px) {
  .hm-side-cart-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .hm-side-cart-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Storefront stock notices */
.product-stock {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-stock.out { color: #9a2d1b; }
.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none !important;
}

/* Phase 17: header product search overlay */
.hm-search-open {
  overflow: hidden;
}

.hm-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.hm-search-overlay.is-open {
  display: block;
}

.hm-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,16,13,.62);
  backdrop-filter: blur(5px);
}

.hm-search-panel {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 112px auto 0;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
}

.hm-search-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--deep), var(--gold));
}

.hm-search-close {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hm-search-close:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.hm-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-top: 18px;
}

.hm-search-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  padding: 0 18px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hm-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(208,122,0,.13);
}

.hm-search-helper {
  margin-top: 12px;
  color: var(--muted);
  font-size: .92rem;
}

.hm-search-results {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-height: min(52vh, 520px);
  overflow-y: auto;
  padding-right: 4px;
}

.hm-search-result {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hm-search-result:hover,
.hm-search-result.is-active {
  transform: translateY(-2px);
  border-color: rgba(208,122,0,.55);
  box-shadow: 0 16px 34px rgba(17,16,13,.12);
}

.hm-search-thumb {
  width: 82px;
  height: 82px;
  overflow: hidden;
  background: var(--cream);
}

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

.hm-search-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hm-search-copy strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--black);
}

.hm-search-copy span:last-child {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.hm-search-kicker {
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
}

.hm-search-price {
  color: var(--deep);
  font-weight: 800;
  white-space: nowrap;
}

.hm-search-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.hm-search-empty strong {
  color: var(--black);
}

.hm-search-empty a {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .hm-search-panel {
    margin-top: 82px;
    width: min(100% - 24px, 760px);
    padding: 28px 18px 22px;
  }

  .hm-search-form {
    grid-template-columns: 1fr;
  }

  .hm-search-form .btn {
    width: 100%;
  }

  .hm-search-result {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .hm-search-thumb {
    width: 68px;
    height: 68px;
  }

  .hm-search-price {
    grid-column: 2;
  }
}


.hm-search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid rgba(208,122,0,.42);
  color: var(--gold);
  background: rgba(208,122,0,.08);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}

.hm-search-view-all:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}



@media(max-width:640px) {
  .hm-side-cart-drawer {
    width: min(390px, calc(100vw - 18px));
  }

  .hm-side-cart-head {
    padding: 24px 22px 18px;
  }

  .hm-side-cart-body {
    padding: 22px 18px;
  }

  .hm-side-cart-foot {
    padding: 20px 18px 22px;
  }

  .hm-side-cart-actions {
    grid-template-columns: 1fr;
  }
}


/* Phase 22: product/cart/checkout refinements */
.hm-cart-product-link {
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
}

.hm-cart-product-link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hm-product-category-link {
  color: var(--gold);
  text-decoration: none;
}

.hm-product-category-link:hover {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hm-product-shipping-note {
  margin-top: 24px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17,16,13,.06);
}

.hm-product-shipping-note .small-title {
  margin-bottom: 6px;
}

.hm-product-shipping-note p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.required-star {
  color: #b83328;
  font-weight: 900;
}

.hm-delivery-address-fields {
  margin-top: 8px;
  padding-top: 6px;
}

.hm-delivery-address-fields .form-field.full {
  grid-column: 1 / -1;
}

.hm-delivery-heading {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hm-delivery-heading h3 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 6px;
}

.hm-delivery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.field-error {
  display: block;
  color: #b83328;
  font-size: .82rem;
  margin-top: 6px;
  min-height: 1em;
}

.field-invalid {
  border-color: #b83328 !important;
  box-shadow: 0 0 0 3px rgba(184,51,40,.12);
}


.checkout-summary-side {
  align-self: start;
}

.checkout-summary-side .order-summary {
  margin-bottom: 18px;
}

.hm-payfast-summary-badge {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  box-shadow: 0 12px 34px rgba(17,16,13,.06);
}

.hm-payfast-summary-badge img,
.hm-product-payfast-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-payfast-summary-badge--separate {
  margin-top: 18px;
}

.checkout-payfast-badge-section {
  margin-top: 18px;
}

.hm-product-payfast-badge {
  max-width: 520px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  box-shadow: 0 12px 34px rgba(17,16,13,.08);
}

@media (max-width: 560px) {
  .hm-payfast-summary-badge,
  .hm-product-payfast-badge {
    padding: 8px;
  }
}

/* Phase 27: Checkout PayFast badge should match the clean product-page badge block. */
.checkout-payfast-badge-section {
  margin-top: 18px;
}

.hm-checkout-payfast-badge {
  max-width: none;
  width: 100%;
  margin-top: 0;
}

.hm-checkout-payfast-badge img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}


/* Phase 31: Footer PayFast badge row - removed in Phase 32 */
.footer-payment-row {
  background: #211d19;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}

.footer-payment-card {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px 18px;
}

.footer-payment-copy .small-title {
  margin-bottom: 7px;
  color: var(--gold);
}

.footer-payment-copy p:last-child {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
  line-height: 1.55;
}

.footer-payment-card img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
  justify-self: end;
}

@media (max-width: 760px) {
  .footer-payment-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-payment-card img {
    justify-self: center;
  }
}


/* Phase 32: Footer PayFast badge inside Get in Touch column */
.footer-column-payfast {
  margin-top: 18px;
  max-width: 270px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.footer-column-payfast img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .footer-column-payfast {
    max-width: 320px;
  }
}


/* Phase 33: Checkout coupon code block */
.hm-checkout-coupon {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hm-coupon-title {
  margin: 0 0 12px;
  color: var(--black);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hm-coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.hm-coupon-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--black);
  padding: 0 14px;
  font: inherit;
  outline: none;
  text-transform: uppercase;
}

.hm-coupon-row input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(208,122,0,.12);
}

.hm-coupon-row .btn {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.hm-coupon-message {
  min-height: 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

.hm-coupon-message.is-success {
  color: var(--deep);
}

.hm-coupon-message.is-error {
  color: #8a261f;
}

.hm-coupon-remove {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.hm-coupon-discount-line strong {
  color: var(--deep);
}

@media (max-width: 520px) {
  .hm-coupon-row {
    grid-template-columns: 1fr;
  }

  .hm-coupon-row .btn {
    width: 100%;
  }
}


/* Phase 55: keep the Shop filters and product grid visible on desktop and mobile. */
.shop-products-section,
.shop-products-section .shop-layout,
.shop-products-section .sidebar,
.shop-products-section main,
.shop-products-section .products,
.shop-products-section .product-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

/* Phase 56: product reviews */
.hm-reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: start;
}

.hm-review-summary,
.hm-review-form,
.hm-review-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(17,16,13,.06);
}

.hm-review-summary h3,
.hm-review-form h3 {
  margin: 6px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.hm-review-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.hm-review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.hm-review-card-head strong {
  display: block;
  color: var(--ink);
}

.hm-review-card-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
}

.hm-review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  white-space: nowrap;
  font-size: 1.05rem;
}

.hm-review-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.hm-review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hm-review-form {
  position: sticky;
  top: 96px;
}

.hm-review-field {
  margin-bottom: 16px;
}

.hm-review-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hm-review-field label span {
  color: #b83328;
}

.hm-review-field input,
.hm-review-field select,
.hm-review-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
}

.hm-review-field textarea {
  resize: vertical;
  min-height: 130px;
}

.hm-review-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hm-review-message {
  margin: 14px 0 0;
  font-size: .92rem;
  color: var(--muted);
}

.hm-review-message.is-success {
  color: #0a6b3c;
  font-weight: 700;
}

.hm-review-message.is-error {
  color: #b83328;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hm-reviews-layout {
    grid-template-columns: 1fr;
  }
  .hm-review-form {
    position: static;
  }
}

/* Phase 57: Verified purchase reviews */
.hm-verified-review-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 10px 0 4px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 61, 61, .18);
  background: rgba(0, 61, 61, .06);
  color: var(--deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hm-review-verified-note p:not(.small-title) {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.hm-review-form--standalone {
  max-width: 720px;
  margin: 0 auto;
}

.hm-verified-review-page .btn {
  margin-top: 14px;
}

/* Phase 59: checkout shipping estimate line */
.hm-shipping-estimate-line span { font-size: .88rem; color: var(--muted); }
.hm-shipping-estimate-line { border-top: none !important; padding-top: 0 !important; margin-top: -6px; }


.hm-price-compare{color:#8d8177;text-decoration:line-through;font-size:.88em;font-weight:500;margin-right:8px;display:inline-block}.hm-vat-note{display:block;margin-top:4px;color:#8d8177;font-family:Montserrat,sans-serif;font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase}.adm-checkline{display:flex;align-items:center;gap:8px;margin:9px 0 6px;font-weight:600;text-transform:none;letter-spacing:0}.adm-checkline input{width:auto;min-width:auto}


/* Phase 70: Align shop product card pricing and actions at the bottom. */
.shop-products-section .products {
  align-items: stretch;
}

.shop-products-section .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-products-section .product-card .product-img {
  flex: 0 0 auto;
}

.shop-products-section .product-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.shop-products-section .product-info .muted {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
  margin-bottom: 18px;
}

.shop-products-section .product-info .price {
  margin-top: auto;
}

.shop-products-section .product-actions {
  margin-top: 0;
}

.shop-products-section .product-actions .btn {
  white-space: nowrap;
}

/* Phase 83: My Account courier tracking block */
.hm-account-tracking-box {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(154, 96, 32, 0.22);
  background: rgba(246, 239, 229, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hm-account-tracking-box span {
  color: #6f6860;
  font-size: 0.95rem;
}
.hm-account-tracking-box .btn-small {
  padding: 10px 16px;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hm-account-tracking-box {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Phase 85: formatted product long descriptions */
#longDescription h2, #longDescription h3, #longDescription h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.15; margin: 1.1rem 0 .55rem; }
#longDescription h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
#longDescription h3 { font-size: clamp(1.55rem, 2.4vw, 2.05rem); }
#longDescription h4 { font-size: 1.25rem; }
#longDescription p { margin-bottom: 1rem; }
#longDescription ul, #longDescription ol { margin: .65rem 0 1.1rem 1.4rem; padding-left: 1rem; }
#longDescription li { margin-bottom: .35rem; }
#longDescription a { color: var(--copper); font-weight: 700; text-decoration: underline; }
#longDescription blockquote { margin: 1.1rem 0; padding: .9rem 1.2rem; border-left: 3px solid var(--copper); background: var(--cream); color: var(--muted); }
