/* ============================================================
   BELLE STITCH — Main Stylesheet
   Coral Terracotta Palette
   ============================================================ */

/* ------ CSS Custom Properties ------ */
:root {
  --bg-primary:        #fdf5ef;
  --bg-secondary:      #f5e3d4;
  --bg-card:           #fffaf6;
  --terracotta:        #c9715a;
  --terracotta-hover:  #b05a43;
  --terracotta-light:  #d4886e;
  --coral:             #e8987f;
  --coral-light:       #f2cdc0;
  --brown-dark:        #6b3827;
  --brown-mid:         #9a6250;
  --brown-light:       #c4a090;
  --border:            #e8d0c4;
  --sand:              #f0ddd2;
  --announcement-bg:   #6b3827;
  --header-bg:         #fffaf6;
  --font-heading:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Raleway', Arial, sans-serif;
  --section-padding:   90px 0;
  --container-width:   1200px;
  --shadow-sm:         0 2px 10px rgba(107,56,39,0.08);
  --shadow-md:         0 5px 20px rgba(107,56,39,0.12);
  --shadow-lg:         0 10px 40px rgba(107,56,39,0.16);
  --transition:        all 0.3s ease;
  --radius:            3px;
}

/* ------ Reset & Base ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--brown-dark);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ------ Typography ------ */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem,5vw,4rem); }
h2 { font-size: clamp(1.8rem,3vw,2.8rem); }
h3 { font-size: clamp(1.3rem,2vw,1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--brown-mid); line-height: 1.8; }

/* ------ Layout ------ */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-padding); }

/* ------ Announcement Bar ------ */
.announcement-bar {
  background: var(--announcement-bg);
  color: rgba(255,249,245,.9);
  text-align: center;
  padding: 10px 48px 10px 20px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
}
.announcement-bar a { color: var(--coral-light); text-decoration: underline; text-underline-offset: 2px; }
.announcement-dismiss {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,249,245,.6); font-size: 16px; cursor: pointer; line-height: 1;
}
.announcement-dismiss:hover { color: white; }

/* ------ Header ------ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; max-width: var(--container-width); margin: 0 auto; padding: 0 24px;
}

/* Logo */
.site-logo { display: flex; flex-direction: column; align-items: center; }
.site-logo .logo-name {
  font-family: var(--font-heading); font-size: 1.9rem; font-weight: 500;
  color: var(--brown-dark); letter-spacing: 3px; line-height: 1;
}
.site-logo .logo-tag {
  font-size: 8.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--terracotta); margin-top: 2px;
}

/* Header nav logo */
.site-header .site-logo {
  flex-direction: row;
  align-items: center;
}
.site-header .site-logo .logo-name {
  font-size: 0;
  display: inline-block;
  width: 260px;
  height: 74px;
  background-image: url("Assets/Logo/logo-dark-brown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

/* Logo mark — used in mobile menu header */
.logo-mark {
  display: block;
  width: 54px;
  height: 54px;
  background-color: var(--brown-dark);
  -webkit-mask: url("Assets/Logos and stickers/Logo Files/png/Black logo - no background.png") no-repeat center / contain;
  mask: url("Assets/Logos and stickers/Logo Files/png/Black logo - no background.png") no-repeat center / contain;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 3px;
  padding: 8px 13px; font-size: 11px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--brown-dark); white-space: nowrap;
}
.nav-link:hover { color: var(--terracotta); }
.nav-chevron { font-size: 7px; transition: transform .2s ease; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--header-bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .2s ease; z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 20px; font-size: 12px;
  color: var(--brown-mid); border-bottom: 1px solid var(--sand);
  letter-spacing: .8px;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--terracotta); background: var(--sand); padding-left: 24px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.hdr-btn {
  background: none; border: none; cursor: pointer;
  color: var(--brown-dark); font-size: 16px;
  transition: color .2s ease; position: relative; padding: 4px;
}
.hdr-btn:hover { color: var(--terracotta); }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--terracotta); color: white;
  font-size: 9px; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--brown-dark); transition: var(--transition); }

/* ------ Mobile Menu ------ */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(360px,90vw); height: 100vh;
  background: var(--header-bg); z-index: 1100; overflow-y: auto;
  transition: right .35s ease; box-shadow: -4px 0 24px rgba(107,56,39,.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--border);
}
.mobile-close { font-size: 22px; color: var(--brown-dark); cursor: pointer; }
.mobile-nav { padding: 12px 0; }
.mobile-nav-item { border-bottom: 1px solid var(--sand); }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--brown-dark);
}
.mob-link:hover { color: var(--terracotta); background: var(--sand); }
.mob-chevron { font-size: 10px; transition: transform .2s ease; }
.mob-sub { background: var(--bg-secondary); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mob-sub.open { max-height: 260px; }
.mob-sub a { display: block; padding: 10px 36px; font-size: 12px; color: var(--brown-mid); border-bottom: 1px solid rgba(232,208,196,.4); }
.mob-sub a:hover { color: var(--terracotta); }

.mob-overlay {
  position: fixed; inset: 0; background: rgba(107,56,39,.42);
  z-index: 1050; opacity: 0; visibility: hidden; transition: all .3s ease;
}
.mob-overlay.active { opacity: 1; visibility: visible; }

/* ------ Buttons ------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; cursor: pointer;
  transition: var(--transition); border: none; border-radius: var(--radius);
}
.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--terracotta-hover); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,113,90,.32); }
.btn-outline { background: transparent; color: var(--brown-dark); border: 1.5px solid var(--brown-dark); }
.btn-outline:hover { background: var(--brown-dark); color: white; }
.btn-outline-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.8); }
.btn-outline-light:hover { background: white; color: var(--brown-dark); }
.btn-ghost { background: transparent; color: var(--terracotta); padding-left: 0; letter-spacing: 1.8px; }
.btn-ghost:hover { color: var(--terracotta-hover); gap: 14px; }

/* ------ Section Headers ------ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); color: var(--brown-dark); margin-bottom: 14px; }
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin: 14px auto 18px;
}
.section-divider::before,.section-divider::after { content: ''; display: block; width: 55px; height: 1px; background: var(--border); }
.section-divider i { color: var(--coral); font-size: 9px; }
.section-sub { max-width: 520px; margin: 0 auto; color: var(--brown-mid); font-size: 14.5px; line-height: 1.85; }

/* ------ Hero Slider ------ */
.hero { position: relative; height: calc(100vh - 118px); min-height: 520px; overflow: hidden; }
.hero-slider { display: flex; height: 100%; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Slide backgrounds */
.hero-slide:nth-child(1) .hero-bg {
  background: linear-gradient(130deg, rgba(107,56,39,.88) 0%, rgba(201,113,90,.65) 55%, rgba(245,227,212,.3) 100%);
  background-color: #c9715a;
}
.hero-slide:nth-child(2) .hero-bg {
  background: linear-gradient(120deg, rgba(80,38,24,.92) 0%, rgba(154,98,80,.72) 50%, rgba(232,152,127,.35) 100%);
  background-color: #9a5a40;
}
.hero-slide:nth-child(3) .hero-bg {
  background: linear-gradient(150deg, rgba(201,113,90,.8) 0%, rgba(212,136,110,.6) 45%, rgba(253,245,239,.25) 100%);
  background-color: #d4886e;
}

/* Fabric weave overlay on hero */
.hero-bg::before {
  content: ''; position: absolute; inset: 0; opacity: .06;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.4) 0, rgba(255,255,255,.4) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0, rgba(255,255,255,.4) 1px, transparent 1px, transparent 10px);
}

.hero-content { position: relative; z-index: 2; padding: 0 64px; max-width: 640px; }
.hero-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,249,245,.8); margin-bottom: 14px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.8rem,6vw,4.6rem); font-weight: 300; color: white; line-height: 1.08; margin-bottom: 18px; }
.hero-title em { font-style: italic; font-weight: 400; }
.hero-text { font-size: 14.5px; color: rgba(255,249,245,.82); margin-bottom: 34px; line-height: 1.85; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Decorative SVG on hero */
.hero-deco {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 2; opacity: .18; pointer-events: none;
}

/* Hero navigation */
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s ease; border: none; }
.hero-dot.active { background: white; width: 26px; border-radius: 4px; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.38);
  color: white; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s ease; font-size: 14px; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ------ Hero Two-Column Layout ------ */
.hero-layout {
  display: flex; align-items: center;
  width: 100%; height: 100%;
  position: relative; z-index: 2;
}
.hero-layout .hero-content {
  flex: 0 0 auto; max-width: 480px;
  padding: 0 40px 0 64px;
  position: static; z-index: auto;
}

/* ------ Hero Image Carousel (hc-*) ------ */
.hc-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  left: 520px;
  overflow: hidden;
}
.hc-frame {
  width: 100%; height: 100%;
  border-top: 2px solid rgba(255,249,245,0.75);
  border-bottom: 2px solid rgba(255,249,245,0.75);
}
.hc-container {
  --hc-gap: 14px;
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hc-track {
  list-style: none; margin: 0; padding: 0;
  display: flex; position: absolute;
  top: 0; left: calc(var(--hc-gap) * -1);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-slide {
  flex-shrink: 0;
  /* width, min-width, height set by JS */
  margin: 0 var(--hc-gap);
  cursor: pointer; list-style: none; position: relative;
  perspective: 1200px; transform-style: preserve-3d;
}
.hc-inner-wrap {
  width: 100%; height: 100%;
  transform: scale(0.98) rotateX(8deg);
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-slide.active .hc-inner-wrap { transform: scale(1) rotateX(0deg); }
.hc-inner {
  position: relative; width: 100%; height: 100%;
  background: #2a1a12; border-radius: 8px; overflow: hidden;
}
.hc-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  opacity: 0.5; transition: opacity 0.6s ease-in-out;
}
.hc-slide.active .hc-inner img { opacity: 1; }

/* ------ Category Cards ------ */
.categories { padding: 80px 0; background: var(--bg-primary); }
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.category-card { display: block; position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; border-radius: var(--radius); }
.cat-bg { position: absolute; inset: 0; transition: transform .55s ease; }
.category-card:hover .cat-bg { transform: scale(1.06); }

/* Category card image carousel */
.cat-carousel {
  position: absolute; inset: 0; overflow: hidden;
  transition: transform .55s ease;
}
.category-card:hover .cat-carousel { transform: scale(1.06); }
.product-card:hover .cat-carousel { transform: scale(1.05); }
.cat-carousel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.cat-carousel-img.active { opacity: 1; }


/* Weave texture overlay on category cards */
.cat-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .1;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.15) 0, rgba(255,255,255,.15) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.15) 0, rgba(255,255,255,.15) 1px, transparent 1px, transparent 12px);
}

.category-card:nth-child(1) .cat-bg { background: linear-gradient(155deg,#d4886e 0%,#c9715a 45%,#9a5240 100%); }
.category-card:nth-child(2) .cat-bg { background: linear-gradient(155deg,#9a5240 0%,#6b3827 45%,#4e2818 100%); }
.category-card:nth-child(3) .cat-bg { background: linear-gradient(155deg,#e8b4a0 0%,#d4886e 45%,#c9715a 100%); }

.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(78,40,24,.76) 0%,transparent 58%); z-index: 1; transition: background .3s ease; }
.category-card:hover .cat-overlay { background: linear-gradient(to top,rgba(78,40,24,.88) 0%,rgba(78,40,24,.12) 70%); }

.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; z-index: 2; transform: translateY(0); transition: transform .3s ease; }
.category-card:hover .cat-content { transform: translateY(-8px); }
.cat-label { display: block; font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,249,245,.72); margin-bottom: 5px; }
.cat-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; color: white; margin-bottom: 10px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--coral-light); opacity: 0; transition: opacity .3s ease; }
.category-card:hover .cat-link { opacity: 1; }

/* ------ About Section (Homepage Teaser) ------ */
.about-section { padding: 100px 0; background: var(--bg-secondary); overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-main {
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(135deg,#c9715a,#9a5240,#6b3827); position: relative; overflow: hidden;
}
.about-img-main::before {
  content: ''; position: absolute; inset: 0; opacity: .15;
  background-image: repeating-linear-gradient(0deg,transparent,transparent 38px,rgba(255,255,255,.08) 38px,rgba(255,255,255,.08) 39px),
    repeating-linear-gradient(90deg,transparent,transparent 38px,rgba(255,255,255,.08) 38px,rgba(255,255,255,.08) 39px);
}
.about-img-main .img-caption { position: absolute; bottom: 22px; left: 22px; font-family: var(--font-heading); font-size: 1rem; font-style: italic; color: rgba(255,249,245,.88); }

.about-img-accent {
  position: absolute; bottom: -28px; right: -28px; width: 44%;
  aspect-ratio: 1; background: linear-gradient(135deg,#f0ddd2,#e8b0a0);
  border: 8px solid var(--bg-secondary); border-radius: var(--radius);
}
.about-badge {
  position: absolute; top: 22px; right: -18px;
  background: var(--terracotta); color: white; width: 78px; height: 78px;
  border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .badge-num { font-size: 1.5rem; font-weight: 500; line-height: 1; }
.about-badge .badge-txt { font-size: 8.5px; letter-spacing: 1px; text-transform: uppercase; line-height: 1.3; padding: 0 4px; text-align: center; }

.about-text { padding-right: 16px; }
.about-text blockquote { font-family: var(--font-heading); font-size: 1.45rem; font-style: italic; font-weight: 300; color: var(--brown-dark); line-height: 1.6; border-left: 3px solid var(--terracotta); padding-left: 18px; margin: 22px 0; }
.about-text p { margin-bottom: 16px; }

/* ------ Products Section ------ */
.products-section { padding: 80px 0; background: var(--bg-primary); }
.product-tabs { display: flex; margin-bottom: 38px; border-bottom: 2px solid var(--border); overflow-x: auto; }
.product-tab { padding: 11px 22px; font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--brown-light); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all .2s ease; }
.product-tab.active, .product-tab:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.product-panel { display: none; }
.product-panel.active { display: block; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }

.product-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

.product-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.product-img-bg { width: 100%; height: 100%; transition: transform .5s ease; }
.product-card:hover .product-img-bg { transform: scale(1.05); }

/* Product image gradients */
.prod-1 .product-img-bg { background: linear-gradient(135deg,#e8b4a0,#d4886e); }
.prod-2 .product-img-bg { background: linear-gradient(135deg,#f2cdc0,#e8987f); }
.prod-3 .product-img-bg { background: linear-gradient(135deg,#c9715a,#9a5240); }
.prod-4 .product-img-bg { background: linear-gradient(135deg,#d4886e,#c9715a); }
.prod-5 .product-img-bg { background: linear-gradient(135deg,#6b3827,#9a5240); }
.prod-6 .product-img-bg { background: linear-gradient(135deg,#f2cdc0,#e8b0a0); }
.prod-7 .product-img-bg { background: linear-gradient(135deg,#9a5240,#c9715a); }
.prod-8 .product-img-bg { background: linear-gradient(135deg,#d4886e,#f0ddd2); }
.prod-9 .product-img-bg { background: linear-gradient(135deg,#c9715a,#e8987f); }
.prod-10 .product-img-bg { background: linear-gradient(135deg,#6b3827,#d4886e); }
.prod-11 .product-img-bg { background: linear-gradient(135deg,#e8b4a0,#c9715a); }
.prod-12 .product-img-bg { background: linear-gradient(135deg,#f0ddd2,#d4886e); }

/* Product weave texture */
.product-img-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .12;
  background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 1px,transparent 1px,transparent 8px),
    repeating-linear-gradient(-45deg,rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 1px,transparent 1px,transparent 8px);
}

.product-badge { position: absolute; top: 12px; left: 12px; background: var(--terracotta); color: white; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; z-index: 2; }
.product-wishlist { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.9); border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--brown-mid); font-size: 13px; transition: all .2s ease; opacity: 0; z-index: 2; }
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { color: var(--terracotta); background: white; }

.product-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(107,56,39,.9); color: white; text-align: center;
  padding: 12px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transform: translateY(100%); transition: transform .3s ease; cursor: pointer; border: none;
  font-family: var(--font-body); z-index: 2;
}
.product-card:hover .product-quick-add { transform: translateY(0); }

.product-info { padding: 18px 16px; }
.product-cat-label { font-size: 9.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--brown-light); margin-bottom: 6px; display: block; }
.product-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--brown-dark); margin-bottom: 8px; line-height: 1.3; }
.product-price { font-size: 14px; font-weight: 600; color: var(--terracotta); }
.product-price .was { text-decoration: line-through; color: var(--brown-light); font-weight: 400; font-size: 12px; margin-right: 8px; }

/* ------ Testimonials ------ */
.testimonials { padding: 80px 0; background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.testimonial-card { background: var(--bg-card); padding: 36px 26px 28px; border-radius: var(--radius); position: relative; box-shadow: var(--shadow-sm); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 12px; left: 20px; font-family: var(--font-heading); font-size: 5.5rem; line-height: 1; color: var(--coral-light); opacity: .55; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 15px; color: var(--terracotta); font-size: 11px; }
.testimonial-text { font-family: var(--font-heading); font-size: .98rem; font-style: italic; line-height: 1.75; color: var(--brown-dark); margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--coral-light),var(--terracotta)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.1rem; color: white; flex-shrink: 0; }
.author-name { display: block; font-size: 12.5px; font-weight: 600; color: var(--brown-dark); line-height: 1; margin-bottom: 3px; }
.author-loc { font-size: 11px; color: var(--brown-light); letter-spacing: .8px; }

/* ------ Infinite Gallery Strip ------ */
.gallery-strip { padding: 60px 0; background: var(--bg-primary); overflow: hidden; }
.gallery-track-wrap { overflow: hidden; }
.gallery-track { display: flex; gap: 14px; width: max-content; animation: gallery-scroll 32s linear infinite; }
.gallery-track:hover { animation-play-state: paused; }

.gallery-item { width: 220px; height: 220px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item-bg { width: 100%; height: 100%; transition: transform .4s ease; }
.gallery-item:hover .gallery-item-bg { transform: scale(1.08); }

.gallery-item:nth-child(1)  .gallery-item-bg { background: linear-gradient(135deg,#c9715a,#9a5240); }
.gallery-item:nth-child(2)  .gallery-item-bg { background: linear-gradient(135deg,#e8b4a0,#d4886e); }
.gallery-item:nth-child(3)  .gallery-item-bg { background: linear-gradient(135deg,#6b3827,#c9715a); }
.gallery-item:nth-child(4)  .gallery-item-bg { background: linear-gradient(135deg,#f0ddd2,#e8987f); }
.gallery-item:nth-child(5)  .gallery-item-bg { background: linear-gradient(135deg,#d4886e,#6b3827); }
.gallery-item:nth-child(6)  .gallery-item-bg { background: linear-gradient(135deg,#9a5240,#e8b4a0); }
.gallery-item:nth-child(7)  .gallery-item-bg { background: linear-gradient(135deg,#c9715a,#f0ddd2); }
.gallery-item:nth-child(8)  .gallery-item-bg { background: linear-gradient(135deg,#6b3827,#d4886e); }
/* Duplicates for seamless loop */
.gallery-item:nth-child(9)  .gallery-item-bg { background: linear-gradient(135deg,#c9715a,#9a5240); }
.gallery-item:nth-child(10) .gallery-item-bg { background: linear-gradient(135deg,#e8b4a0,#d4886e); }
.gallery-item:nth-child(11) .gallery-item-bg { background: linear-gradient(135deg,#6b3827,#c9715a); }
.gallery-item:nth-child(12) .gallery-item-bg { background: linear-gradient(135deg,#f0ddd2,#e8987f); }
.gallery-item:nth-child(13) .gallery-item-bg { background: linear-gradient(135deg,#d4886e,#6b3827); }
.gallery-item:nth-child(14) .gallery-item-bg { background: linear-gradient(135deg,#9a5240,#e8b4a0); }
.gallery-item:nth-child(15) .gallery-item-bg { background: linear-gradient(135deg,#c9715a,#f0ddd2); }
.gallery-item:nth-child(16) .gallery-item-bg { background: linear-gradient(135deg,#6b3827,#d4886e); }

.gallery-item-overlay { position: absolute; inset: 0; background: rgba(107,56,39,.62); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; font-size: 22px; }

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------ Press Bar ------ */
.press-bar { padding: 38px 0; background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.press-label { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--brown-light); margin-bottom: 22px; }
.press-logos { display: flex; justify-content: center; align-items: center; gap: 42px; flex-wrap: wrap; }
.press-logo-item { font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; color: var(--brown-light); letter-spacing: 1px; white-space: nowrap; transition: color .2s ease; }
.press-logo-item:hover { color: var(--terracotta); }

/* ------ Footer ------ */
.site-footer { background: var(--brown-dark); color: rgba(255,249,245,.82); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }

.footer-brand .site-logo { flex-direction: row; }
.footer-brand .site-logo .logo-name { font-size: 0; display: inline-block; width: 200px; height: 56px; background-image: url("Assets/Logo/logo-white.svg"); background-size: contain; background-repeat: no-repeat; background-position: center left; }
.footer-brand .site-logo .logo-tag { display: none; }
.footer-brand p { margin-top: 14px; font-size: 13px; line-height: 1.82; color: rgba(255,249,245,.58); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,249,245,.75); font-size: 14px; transition: all .2s ease; }
.footer-social a:hover { background: var(--terracotta); color: white; }

.footer-col h4 { font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,249,245,.92); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,249,245,.55); transition: color .2s ease; }
.footer-links a:hover { color: var(--coral); }

.footer-newsletter p { font-size: 12px; color: rgba(255,249,245,.55); margin-bottom: 14px; line-height: 1.75; }
.newsletter-form { display: flex; }
.newsletter-input { flex: 1; padding: 10px 14px; font-family: var(--font-body); font-size: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: white; outline: none; border-radius: var(--radius) 0 0 var(--radius); }
.newsletter-input::placeholder { color: rgba(255,249,245,.38); }
.newsletter-input:focus { border-color: var(--coral); }
.newsletter-btn { padding: 10px 16px; background: var(--terracotta); color: white; border: none; cursor: pointer; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: background .2s ease; font-family: var(--font-body); border-radius: 0 var(--radius) var(--radius) 0; white-space: nowrap; }
.newsletter-btn:hover { background: var(--terracotta-hover); }

.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,249,245,.38); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,249,245,.38); }
.footer-bottom a:hover { color: var(--coral); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ------ Page Hero ------ */
.page-hero { padding: 80px 0; text-align: center; background: var(--bg-secondary); position: relative; overflow: hidden; }
.page-hero--slim { padding: 44px 0; }
.page-hero--slim .breadcrumb { margin-bottom: 12px; }
.page-hero--slim .section-title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 8px; }
.page-hero--slim .section-divider { margin: 10px auto 12px; }
.page-hero--slim .section-sub { font-size: 13.5px; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(45deg,var(--terracotta) 0,var(--terracotta) 1px,transparent 1px,transparent 28px), repeating-linear-gradient(-45deg,var(--terracotta) 0,var(--terracotta) 1px,transparent 1px,transparent 28px); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; letter-spacing: 1.2px; color: var(--brown-light); margin-bottom: 18px; }
.breadcrumb a { color: var(--brown-light); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { font-size: 8px; }

/* ------ About Page ------ */
.about-story { padding: 100px 0; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-text h2 { margin-bottom: 22px; }
.about-story-text p { margin-bottom: 16px; }
.about-story-img { aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(135deg,#c9715a,#6b3827); position: relative; overflow: hidden; }
.about-story-img::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg,transparent,transparent 28px,rgba(255,255,255,.05) 28px,rgba(255,255,255,.05) 29px); }
.about-story-img.reverse { background: linear-gradient(135deg,#e8b4a0,#c9715a); }

.values-section { padding: 80px 0; background: var(--bg-secondary); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 8px; }
.value-card { text-align: center; padding: 40px 22px; background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 62px; height: 62px; margin: 0 auto 20px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--terracotta); font-size: 20px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.3rem; }

.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; width: 160px; }
.team-photo-bg { width: 100%; height: 100%; }
.team-card:nth-child(1) .team-photo-bg { background: linear-gradient(135deg,#e8b4a0,#c9715a); }
.team-card:nth-child(2) .team-photo-bg { background: linear-gradient(135deg,#d4886e,#9a5240); }
.team-card:nth-child(3) .team-photo-bg { background: linear-gradient(135deg,#f0ddd2,#d4886e); }
.team-card h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--brown-dark); margin-bottom: 4px; }
.team-card .team-role { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; display: block; }
.team-card p { font-size: 13px; }

/* ------ Shop Page ------ */
.shop-layout { padding: 28px 0 60px; }
.shop-sidebar h3 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 14px; margin-top: 30px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.shop-sidebar h3:first-child { margin-top: 0; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--brown-mid); cursor: pointer; }
.filter-list li:hover { color: var(--terracotta); }
.filter-list input[type="checkbox"] { accent-color: var(--terracotta); width: 14px; height: 14px; }

.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.shop-count { font-size: 13px; color: var(--brown-light); }
.shop-sort select { padding: 8px 12px; font-family: var(--font-body); font-size: 12px; color: var(--brown-dark); background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; outline: none; }
.products-grid-shop { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ------ Contact Page ------ */
.contact-section { padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 36px; }
.contact-detail { display: flex; gap: 15px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--terracotta); font-size: 14px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 2px; }
.contact-detail span { font-size: 14px; color: var(--brown-mid); }

.contact-form { background: var(--bg-card); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--brown-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 15px; font-family: var(--font-body); font-size: 14px; color: var(--brown-dark); background: var(--bg-primary); border: 1.5px solid var(--border); border-radius: var(--radius); transition: border-color .2s ease; outline: none; }
.form-control:focus { border-color: var(--terracotta); }
.form-control::placeholder { color: var(--brown-light); }
textarea.form-control { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; padding: 14px 18px; background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; border-radius: var(--radius); font-size: 13px; margin-top: 12px; }

/* ------ Scroll Animations ------ */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in    { opacity: 0; transition: opacity .65s ease; }
.slide-left { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.slide-right{ opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible,.fade-in.visible,.slide-left.visible,.slide-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ------ Responsive ------ */
@media (max-width:1024px) {
  .products-grid, .products-grid-shop { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .hero-layout .hero-content { max-width: 380px; padding: 0 24px 0 40px; }
  .hc-wrap { left: 420px; }
}
@media (max-width:900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: flex; flex-wrap: wrap; gap: 24px; }
  .shop-sidebar > div { min-width: 180px; }
}
@media (max-width:900px) {
  .hero { height: auto; min-height: 0; background-color: #d4886e; }
  .hero-slide { height: auto; display: block; }
  .hero-bg { position: absolute; inset: 0; height: 100%; }
  .hero-layout { flex-direction: column; align-items: stretch; height: auto; padding-bottom: 0; }
  .hero-layout .hero-content { max-width: 100%; padding: 32px 30px 24px; flex-shrink: 0; }
  .hc-wrap {
    display: block;
    position: relative;
    left: auto; top: auto; bottom: auto;
    width: 100%;
    height: 45vw;
    min-height: 220px;
    max-height: 320px;
  }
  .hc-frame { border-top: none; border-bottom: none; }
}
@media (max-width:768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 0 30px; }
  .hero-deco { display: none; }
  .categories-grid { grid-template-columns: 1fr; gap: 12px; }
  .category-card { aspect-ratio: 5/3; }
  .about-inner, .about-story-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-text, .about-story-text { padding-right: 0; }
  .about-img-accent, .about-badge { display: none; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .categories-grid { grid-template-columns: 1fr; gap: 10px; }
  .products-grid, .products-grid-shop { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 20px; }
  .contact-form { padding: 28px 20px; }

  /* Page hero */
  .page-hero { padding: 36px 0; }
  .page-hero--slim { padding: 28px 0; }

  /* Shop listing */
  .shop-layout { padding: 16px 0 40px; }
  .shop-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
  .products-grid-shop { gap: 14px; }

  /* Product detail pages */
  .pdp-layout { padding: 16px 0 40px; gap: 20px; width: 100%; min-width: 0; }
  .pdp-title { font-size: 1.5rem; }
  .pdp-price { font-size: 1.3rem; }
  .pdp-description { font-size: 13.5px; margin-bottom: 20px; padding-bottom: 20px; }
  .pdp-thumb { width: 56px; height: 56px; flex-shrink: 0; }
  .pdp-thumbs { gap: 6px; max-width: 100%; }
  .pdp-main-img-wrap { aspect-ratio: 4/3; max-width: 100%; }
  .pdp-info { width: 100%; min-width: 0; }
  .pdp-add-btn { padding: 13px 20px; }
  .pdp-breadcrumb { padding: 16px 0 0; font-size: 10px; }

  /* Contact section */
  .contact-section { padding: 40px 0; }
}

/* ------ Product Detail Page ------ */
.pdp-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1.2px;
  color: var(--brown-light); padding: 28px 0 0;
}
.pdp-breadcrumb a { color: var(--brown-light); }
.pdp-breadcrumb a:hover { color: var(--terracotta); }

.pdp-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 32px 0 80px;
  align-items: start;
}

/* Gallery */
.pdp-gallery { display: flex; gap: 12px; position: sticky; top: 100px; }

.pdp-thumbs {
  display: flex; flex-direction: column; gap: 8px;
  width: 80px; flex-shrink: 0;
  max-height: 600px; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.pdp-thumbs::-webkit-scrollbar { width: 4px; }
.pdp-thumbs::-webkit-scrollbar-track { background: transparent; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.pdp-thumb {
  width: 80px; height: 80px; flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer; padding: 0;
  transition: border-color .2s ease;
  background: var(--sand);
}
.pdp-thumb:hover { border-color: var(--brown-light); }
.pdp-thumb.active { border-color: var(--terracotta); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pdp-main-img-wrap {
  flex: 1; border-radius: var(--radius); overflow: hidden;
  background: var(--sand); aspect-ratio: 1/1; position: relative;
}
.pdp-img-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.55); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; color: var(--brown-dark);
  font-size: 11px; opacity: 0; transition: opacity .2s ease, background .2s ease;
}
.pdp-main-img-wrap:hover .pdp-img-arrow { opacity: 1; }
.pdp-img-arrow:hover { background: rgba(255,255,255,0.85); }
.pdp-img-arrow.prev { left: 10px; }
.pdp-img-arrow.next { right: 10px; }
.pdp-main-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: opacity .15s ease;
}

/* Product Info */
.pdp-info { padding-top: 4px; }

.pdp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brown-dark); font-weight: 400;
  margin: 6px 0 10px; line-height: 1.15;
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 1.7rem; font-weight: 500;
  color: var(--terracotta); margin: 0 0 8px;
}

.pdp-meta {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brown-mid); margin-bottom: 22px;
}

.pdp-description {
  color: var(--brown-mid); font-size: 14.5px;
  line-height: 1.85; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border);
}

/* Form fields */
.pdp-field { margin-bottom: 20px; }
.pdp-label {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--brown-dark); margin-bottom: 8px;
}
.pdp-select-wrap { position: relative; }
.pdp-text-input {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--brown-dark); background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  outline: none; transition: border-color .2s ease;
  box-sizing: border-box;
}
.pdp-text-input:focus { border-color: var(--terracotta); }
.pdp-text-input::placeholder { color: var(--brown-light); }
.pdp-select {
  width: 100%; padding: 12px 40px 12px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--brown-dark); background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  -webkit-appearance: none; appearance: none;
  cursor: pointer; outline: none; transition: border-color .2s ease;
}
.pdp-select:focus { border-color: var(--terracotta); }
.pdp-select-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--brown-mid);
  font-size: 10px; pointer-events: none;
}

.pdp-add-btn {
  width: 100%; justify-content: center;
  margin-top: 10px; margin-bottom: 20px; padding: 15px 30px; font-size: 12px;
}

.pdp-bespoke-link {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--brown-mid);
  padding-bottom: 26px; border-bottom: 1px solid var(--border);
  margin-bottom: 26px; transition: var(--transition);
}
.pdp-bespoke-link i { color: var(--terracotta); font-size: 12px; flex-shrink: 0; }
.pdp-bespoke-link span { color: var(--terracotta); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.pdp-bespoke-link:hover span { color: var(--terracotta-hover); }

.closure-notice { display: flex; align-items: flex-start; gap: 9px; background: var(--bg-secondary); border: 1px solid var(--border); border-left: 3px solid var(--terracotta); border-radius: var(--radius); padding: 10px 14px; font-size: 12.5px; color: var(--brown-mid); line-height: 1.5; margin-top: 4px; }
.closure-notice i { color: var(--terracotta); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

.pdp-details { display: flex; flex-direction: column; gap: 18px; }
.pdp-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.pdp-detail-item > i { color: var(--terracotta); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.pdp-detail-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--brown-dark); margin-bottom: 2px; }
.pdp-detail-item span { font-size: 12.5px; color: var(--brown-light); line-height: 1.5; }

/* Stretched link for product card tiles */
.stretched-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.product-name a { color: inherit; }

/* PDP responsive */
@media (max-width: 1024px) {
  .pdp-layout { gap: 40px; }
  .pdp-gallery { position: static; }
}
@media (max-width: 768px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 24px; padding: 20px 0 50px; min-width: 0; width: 100%; }
  .pdp-gallery { flex-direction: column-reverse; width: 100%; min-width: 0; overflow: hidden; }
  .pdp-thumbs { flex-direction: row; width: 100%; max-width: 100%; max-height: none; overflow-x: auto; overflow-y: hidden; }
  .pdp-thumb { width: 70px; height: 70px; flex-shrink: 0; }
  .pdp-main-img-wrap { aspect-ratio: 4/3; width: 100%; max-width: 100%; }
  .pdp-info { min-width: 0; width: 100%; }
  .page-hero { padding: 50px 0; }
  .contact-section { padding: 60px 0; }
  .shop-layout { padding: 20px 0 50px; }
}
