/* ============================================================
   SQUIRE FURNISHINGS — SHARED STYLESHEET
   Included on every page via: <link rel="stylesheet" href="style.css">
   CSS variables (colours, fonts) output by theme.php
   ============================================================ */

/* ---- RESET & BASE ---- */
:root {
    --navy:       var(--primary);
    --navy-mid:   #1B3A5C;
    --navy-light: #243f6a;
    --gold:       var(--secondary);
    --gold-light: #d4b472;
    --gold-dark:  #A88644;
    --orange:     var(--accent);
    --white:      #FFFFFF;
    --off-white:  var(--bg-light, #F8F5F0);
    --cream:      #FDF9F4;
    --text:       var(--color-body, #2a2a2a);
    --text-muted: var(--color-muted, #6a7a8a);
}
html { scroll-behavior: smooth; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body), sans-serif; background: var(--bg-light, #F8F5F0); color: var(--color-body, #2a2a2a); line-height: var(--line-height-body, 1.7); overflow-x: hidden; font-size: var(--size-body, 15px); }
h1, h2, h3, h4 { font-family: var(--font-head), serif; font-weight: 600; color: var(--color-heading, #0F203C); }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar { text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; position: relative; overflow: hidden; }
.announcement-bar::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); animation: shimmer 3s infinite; }
@keyframes shimmer { to { left: 200%; } }

/* ---- HEADER & NAV ---- */
header { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(15,32,60,0.08); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s ease; }
header.scrolled { box-shadow: 0 4px 30px rgba(15,32,60,0.12); }
.header-inner { max-width: 1500px; width: 95%; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 72px; }
.header-inner .main-nav { grid-column: 2; }
.header-inner .header-right { grid-column: 3; display: flex; justify-content: flex-end; align-items: center; }
.header-inner .menu-toggle { grid-column: 3; justify-self: end; }
.logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-wrap:hover { opacity: 0.85; }
.logo-text { font-family: var(--font-head), serif; font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: 2px; text-transform: uppercase; transition: opacity 0.3s; line-height: 1; }
.logo-text span { color: var(--gold-dark); }
.nav-list { display: flex; list-style: none; align-items: center; gap: clamp(0.6rem, 1.5vw, 1.8rem); flex-wrap: nowrap; }
.nav-list > li > a { color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; padding: 6px 0; position: relative; transition: color 0.3s; white-space: nowrap; }
.nav-list > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; background: var(--gold); transition: all 0.3s ease; transform: translateX(-50%); }
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--gold-dark); }
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { width: 100%; }
.nav-btn-sale { background: var(--orange) !important; color: #fff !important; padding: 8px 18px !important; border-radius: var(--radius-btn, 3px); font-size: 12px !important; font-weight: 600 !important; letter-spacing: 1.5px !important; transition: background 0.3s !important; }
.nav-btn-sale:hover { opacity: 0.9 !important; }
.nav-btn-sale::after { display: none !important; }
.nav-btn-gold { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 16px !important; border-radius: var(--radius-btn, 3px); font-size: 11px !important; font-weight: 600 !important; white-space: nowrap; transition: all 0.3s !important; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.nav-btn-gold:hover { background: var(--gold-dark) !important; color: #fff !important; }
.dropdown { position: relative; }
.dropdown::after { content: ''; position: absolute; width: 100%; height: 20px; bottom: -20px; left: 0; }
.dropdown-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; min-width: 220px; box-shadow: 0 20px 50px rgba(15,32,60,0.14); border-top: 3px solid var(--gold); border-radius: 0 0 6px 6px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); list-style: none; padding: 8px 0; z-index: 200; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 400; border-left: 3px solid transparent; transition: all 0.2s; white-space: nowrap; }
.dropdown-menu li a:hover { background: var(--off-white); color: var(--gold-dark); border-left-color: var(--gold); padding-left: 26px; }
.menu-toggle { display: none; background: none; border: 2px solid var(--navy); border-radius: 3px; width: 40px; height: 40px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- FOOTER ---- */
footer { background: var(--footer-bg, var(--navy)); border-top: 4px solid var(--gold); color: rgba(255,255,255,0.6); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-about { }
.footer-logo { font-family: var(--font-head), serif; font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 13px; font-weight: 300; line-height: 1.8; margin-bottom: 20px; max-width: 280px; }
.footer-phone { font-family: var(--font-head), serif; font-size: 26px; color: var(--gold); text-decoration: none; display: block; margin-bottom: 4px; transition: color 0.3s; }
.footer-phone:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: var(--font-body), sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ---- PAGE HERO ---- */
.page-hero { position: relative; height: 55vh; min-height: 400px; background-color: var(--navy); background-size: cover; background-position: center 40%; background-attachment: fixed; display: flex; align-items: center; overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.5) 60%, rgba(10,20,40,0.15) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 0 0 8%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.current { color: var(--gold); }
.page-hero h1 { font-family: var(--font-head), serif; font-size: clamp(40px, 6vw, 74px); font-weight: 700; line-height: 1.0; color: #fff; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.8; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-anim-1 { animation: heroFadeUp 0.8s 0.2s ease both; }
.hero-anim-2 { animation: heroFadeUp 0.8s 0.4s ease both; }
.hero-anim-3 { animation: heroFadeUp 0.8s 0.6s ease both; }

/* ---- USP STRIP ---- */
.usp-strip { background: var(--navy); overflow: hidden; }
.usp-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 10px; padding: 18px 32px; color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.3s; }
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,0.04); }

/* ---- SECTION TYPOGRAPHY ---- */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--color-eyebrow, var(--orange)); margin-bottom: 16px; }
.eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--color-eyebrow, var(--orange)); }
.section-title { font-family: var(--font-head), serif; font-size: clamp(32px, 5vw, var(--size-title, 52px)); font-weight: 700; color: var(--color-heading, var(--navy)); line-height: 1.05; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub { font-size: var(--size-body, 15px); font-weight: 300; color: var(--color-muted, var(--text-muted)); max-width: 560px; line-height: var(--line-height-body, 1.8); }

/* HOW IT WORKS — numbered process steps, used on flooring.php */
.process { padding: 90px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-header .section-sub { margin: 12px auto 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: left; }
.step-num { display: block; font-family: var(--font-head), serif; font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.step-text { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ---- RANGE / CATEGORY SECTION ---- */
.range-section { padding: 90px 0; background: var(--off-white); }
.range-header { margin-bottom: 60px; }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* FLOORING TYPE CARDS — full-bleed photo cards with overlaid text, used on flooring.php */
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.type-card { position: relative; border-radius: 4px; overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; }
.type-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #e0e4ee; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.type-card:hover .type-card-bg { transform: scale(1.05); }
.type-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.35) 55%, transparent 100%); }
.type-card-content { position: relative; z-index: 1; padding: 28px 26px; color: #ffffff; }
.type-card-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.type-card-icon { display: block; font-size: 22px; margin-bottom: 8px; }
.type-card-title { display: block; font-family: var(--font-head), serif; font-size: 24px; font-weight: 600; color: #ffffff; margin-bottom: 10px; line-height: 1.1; }
.type-card-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; }

/* ---- RANGE CARDS ---- */
.range-card { background: var(--white); border-radius: 4px; overflow: hidden; text-decoration: none; display: block; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.range-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(15,32,60,0.12); }
.range-card-img { height: 240px; background-size: cover; background-position: center; position: relative; overflow: hidden; background-color: #e0e4ee; }
.range-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,40,0.5) 0%, transparent 60%); }
.range-card-img-inner { height: 100%; width: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.range-card:hover .range-card-img-inner { transform: scale(1.05); }
.range-card-body { padding: 24px 26px 28px; }
.range-card-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.range-card-title { font-family: var(--font-head), serif; font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.1; }
.range-card-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.range-card-link { font-size: 12px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s, color 0.3s; }
.range-card-link::after { content: '→'; }
.range-card:hover .range-card-link { color: var(--gold-dark); gap: 12px; }

/* ---- FEATURE STRIP ---- */
.feature-strip { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.feature-strip::before { content: ''; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(197,160,89,0.06) 0%, transparent 70%); pointer-events: none; }
.feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-content { color: rgba(255,255,255,0.85); }
.feature-content h2 { color: #ffffff; }
.feature-content h2 em { color: var(--gold-light); font-style: italic; }
.feature-content .feature-eyebrow { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.feature-content .feature-title { font-family: var(--font-head), serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #ffffff; line-height: 1.1; margin-bottom: 20px; }
.feature-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.feature-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.feature-title { font-family: var(--font-head), serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.feature-title em { font-style: italic; color: var(--gold-light); }
.feature-body { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 28px; }
.feature-img { position: relative; border-radius: 4px; overflow: hidden; height: 400px; background-size: cover; background-position: center; background-color: #e0e4ee; }
.feature-img img, .feature-img-inner { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.feature-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, transparent 60%); }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-head), serif; font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 36px; line-height: 1.8; }

/* ---- BUTTONS ---- */
.btn-gold { display: inline-block; background: var(--gold); color: var(--navy); padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 2px solid var(--gold); transition: all 0.3s; }
.btn-gold:hover { background: transparent; color: var(--gold); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---- PRODUCT CATALOGUE ---- */
.page-header { background: var(--navy); padding: 60px 0 50px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(197,160,89,0.06) 0%, transparent 60%); }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-head), serif; font-size: clamp(36px, 5vw, 62px); font-weight: 700; color: #fff; line-height: 1.0; margin-bottom: 12px; }
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 560px; }
.filter-bar { background: var(--white); border-bottom: 1px solid rgba(15,32,60,0.08); position: sticky; top: 72px; z-index: 100; }
.filter-inner { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-tab { padding: 18px 24px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.3s; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-body), sans-serif; }
.filter-tab:hover { color: var(--navy); }
.filter-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.catalogue-section { padding: 60px 0; }
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.section-label-text { font-family: var(--font-head), serif; font-size: 32px; font-weight: 600; color: var(--navy); }
.section-label-text em { font-style: italic; color: var(--gold-dark); }
.section-label-line { flex: 1; height: 1px; background: rgba(15,32,60,0.1); }
.section-label-count { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius-card, 6px); overflow: hidden; border: 1px solid rgba(15,32,60,0.06); box-shadow: var(--shadow-card, 0 2px 8px rgba(0,0,0,0.07)); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,32,60,0.1); }
.product-card-img { height: 260px; position: relative; overflow: hidden; background-color: var(--off-white); cursor: pointer; }
.product-card-img-inner { height: 100%; width: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.product-card:hover .product-card-img-inner { transform: scale(1.04); }
.product-card-badge { position: absolute; top: 16px; left: 16px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; z-index: 2; }
.badge-sale { background: var(--orange); }
.badge-new { background: var(--navy); }
.badge-popular { background: var(--gold-dark); }
.badge-fast { background: #2e7d32; }
.badge-clearance { background: #6a1b9a; }
.badge-order { background: #1565c0; }
.card-gallery-count { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.55); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; z-index: 3; }
.product-card-body { padding: 22px 24px 26px; }
.product-card-category { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; display: block; }
.product-card-name { font-family: var(--font-head), serif; font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 8px; }
.product-card-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.product-card-detail { font-size: 12px; margin-bottom: 16px; }
.product-card-detail span { display: inline-block; background: var(--off-white); padding: 3px 10px; border-radius: 2px; margin: 2px 3px 2px 0; font-size: 11px; font-weight: 500; color: var(--navy); }
.product-card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.price-now { font-family: var(--font-body), sans-serif; font-size: 17px; font-weight: 600; color: var(--color-price, var(--navy)); letter-spacing: -0.3px; }
.price-was { font-family: var(--font-body), sans-serif; font-size: 13px; font-weight: 400; color: #999; text-decoration: line-through; }
.product-card-actions { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(15,32,60,0.07); } .product-card-actions-top { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.btn-visit { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--navy); color: #fff; padding: 12px 16px; border-radius: var(--radius-btn, 3px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; transition: background 0.3s; }
.btn-visit:hover { background: var(--navy-light); }
.btn-enquire { display: flex; align-items: center; justify-content: center; gap: 6px; background: #fff; color: var(--navy); padding: 12px 16px; border-radius: var(--radius-btn, 3px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(15,32,60,0.25); transition: all 0.3s; cursor: pointer; }
.btn-enquire:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-buy-online { display: flex; align-items: center; justify-content: center; background: var(--gold, #C5A059); color: var(--navy, #0F203C); padding: 12px 16px; border-radius: var(--radius-btn, 3px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border: none; cursor: pointer; width: 100%; transition: opacity 0.3s; }
.btn-buy-online:hover { opacity: 0.85; }
.btn-buy-online:disabled { opacity: 0.5; cursor: wait; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .menu-toggle { display: flex; }
    .header-right { display: none !important; }
    .header-inner { grid-template-columns: 1fr auto; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 3px solid var(--gold); padding: 20px 0; z-index: 999; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .main-nav.active { display: block; }
    .nav-list { flex-direction: column; gap: 0; padding: 0 20px; }
    .nav-list > li > a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(15,32,60,0.06); font-size: 14px; }
    .dropdown-menu { position: static; transform: none; box-shadow: none; border-top: none; opacity: 1; visibility: visible; padding: 0 0 0 16px; }
    .range-grid { grid-template-columns: 1fr 1fr; }
    .types-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .product-grid { grid-template-columns: 1fr 1fr !important; }
    .feature-inner { grid-template-columns: 1fr; gap: 40px; }
    .feature-img { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }}
@media (max-width: 640px) {
    .page-hero { background-attachment: scroll; min-height: 320px; }
    .page-hero-content { padding: 0 0 0 5%; }
    .range-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .product-grid { grid-template-columns: 1fr !important; }
    .product-card-actions { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .usp-inner { gap: 0; }
    .usp-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 14px 16px; }
}

/* ============================================================
   HOMEPAGE SPECIFIC
   ============================================================ */

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; background: var(--navy); background-size: cover; background-position: center; display: flex; align-items: center; overflow: hidden; }
/* Hero layout variants */
.hero.layout-overlay-left .hero-content    { padding: 0 8%; max-width: 700px; text-align: left; }
.hero.layout-overlay-centre                { justify-content: center; }
.hero.layout-overlay-centre .hero-content  { padding: 0 5%; max-width: 800px; text-align: center; }
.hero.layout-overlay-centre .hero-eyebrow  { justify-content: center; }
.hero.layout-overlay-centre .hero-eyebrow::before { display: none; }
.hero.layout-overlay-centre .hero-btns     { justify-content: center; }
.hero.layout-split                         { height: auto; min-height: 500px; background: none; }
.hero.layout-split .hero-overlay           { display: none; }
.hero.layout-split .hero-split-inner       { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.hero.layout-split .hero-split-text        { background: var(--navy); display: flex; align-items: center; padding: 60px 8%; }
.hero.layout-split .hero-split-img         { background-size: cover; background-position: center; min-height: 400px; }
.hero.layout-split .hero-content           { padding: 0; max-width: 100%; }
/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy,#0F203C); color: #fff; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; z-index: 999; font-size: 13px; line-height: 1.5; }
.cookie-banner a { color: var(--gold,#C5A059); }
.cookie-btn { background: var(--gold,#C5A059); color: var(--navy,#0F203C); border: none; padding: 8px 20px; border-radius: var(--radius-btn,3px); font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; letter-spacing: 0.5px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.6) 60%, rgba(10,20,40,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 8%; max-width: 700px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.hero h2 { font-family: var(--font-head), serif; font-size: clamp(48px, 8vw, 90px); font-weight: 700; color: #fff; line-height: 0.95; margin-bottom: 24px; }
.hero h2 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 8%; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); }
.hero-scroll span { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.hero-stats { position: absolute; bottom: 32px; right: 8%; display: flex; gap: 48px; z-index: 2; }
.hero-stat { text-align: right; }
.hero-stat-num { display: block; font-family: var(--font-head), serif; font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 4px; line-height: 1.5; }

/* USP STRIP (homepage version) */
.usp-icon { font-size: 14px; }

/* WELCOME */
.welcome { padding: 100px 0; background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.welcome-text p { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.welcome-text a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; transition: gap 0.3s; }
.welcome-text a:hover { gap: 14px; color: var(--gold-dark); }
.welcome-visual { position: relative; height: 500px; }
.welcome-img-frame { width: 100%; height: 100%; background: var(--off-white); border-radius: 4px; background-size: cover; background-position: center; }
.welcome-badge { position: absolute; bottom: -20px; left: -20px; background: var(--navy); color: #fff; padding: 20px 24px; border-radius: 4px; text-align: center; box-shadow: 0 8px 30px rgba(15,32,60,0.2); }
.welcome-badge-num { display: block; font-family: var(--font-head), serif; font-size: 36px; font-weight: 700; color: var(--gold); }
.welcome-badge-text { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* CATEGORIES */
.categories { padding: 100px 0; background: var(--off-white); }
.categories-header { text-align: center; margin-bottom: 60px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-grid .cat-card:first-child { grid-column: 1 / 3; }
.cat-card { position: relative; height: 340px; border-radius: 4px; overflow: hidden; text-decoration: none; display: block; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.cat-card:hover { transform: scale(1.02); }
.cat-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); background-color: var(--navy); }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.2) 60%, transparent 100%); }
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px; }
.cat-label { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(197,160,89,0.4); padding: 4px 10px; border-radius: 2px; margin-bottom: 8px; }
.cat-name { display: block; font-family: var(--font-head), serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cat-desc { display: block; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.cat-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; transition: gap 0.3s; }
.cat-arrow::after { content: '→'; }
.cat-card:hover .cat-arrow { gap: 12px; }

/* JUNE BANNER */
.june-banner { padding: 80px 8%; display: grid; grid-template-columns: 1fr; position: relative; overflow: hidden; }
.june-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.june-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-head), serif; font-size: clamp(120px, 18vw, 220px); font-weight: 700; color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; user-select: none; }
.june-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.june-title { font-family: var(--font-head), serif; font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 0.9; }
.june-subtitle { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 12px; }
.june-detail { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 320px; line-height: 1.7; }
.june-pct-wrap { width: 180px; height: 180px; border-radius: 50%; border: 2px solid rgba(197,160,89,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.june-pct { font-family: var(--font-head), serif; font-size: 56px; font-weight: 700; line-height: 1; }
.june-pct-off { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.june-items { list-style: none; margin-bottom: 24px; }
.june-items li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 8px; }
.june-items li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.btn-fire { display: inline-block; padding: 14px 32px; border-radius: 3px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; color: #fff; border: 2px solid; transition: all 0.3s; }
.btn-fire:hover { background: transparent !important; }

/* WHY US */
.why-us { padding: 100px 0; background: var(--white); }
.why-header { text-align: center; margin-bottom: 60px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pillar { padding: 32px; background: var(--off-white); border-radius: 4px; border-top: 3px solid var(--gold); }
.pillar-num { display: block; font-family: var(--font-head), serif; font-size: 48px; font-weight: 700; color: rgba(15,32,60,0.08); line-height: 1; margin-bottom: 12px; }
.pillar-title { font-family: var(--font-head), serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.pillar-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* FIND US */
.find-us { padding: 100px 0; background: var(--off-white); }
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.find-locations { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.find-location { padding: 24px; background: var(--white); border-radius: 4px; border-left: 4px solid var(--gold); }
.find-location-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.find-location-name { font-family: var(--font-head), serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.find-location-detail { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.find-location-detail a { color: var(--navy); font-weight: 500; }
.find-map { border-radius: 4px; overflow: hidden; box-shadow: 0 8px 40px rgba(15,32,60,0.1); }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 2px solid var(--gold); transition: all 0.3s; }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost { display: inline-block; background: transparent; color: #fff; padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Homepage responsive */
@media (max-width: 1100px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
    .welcome-visual { height: 300px; }
    .june-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .june-pct-wrap { margin: 0 auto; }
    .june-items { text-align: left; max-width: 320px; margin: 0 auto 24px; }
    .pillars { grid-template-columns: 1fr 1fr; }
    .find-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { display: none; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-grid .cat-card:first-child { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
    .hero h2 { font-size: clamp(38px, 12vw, 56px); }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-grid .cat-card:first-child { grid-column: 1; }
    .pillars { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
}

/* ============================================================
   CATEGORY PAGE SPECIFIC
   ============================================================ */
.page-hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.8; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; }
.about-hero h1 { color: #ffffff; }
.about-hero h1 em { color: var(--gold-light); font-style: italic; }
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { height: 500px; border-radius: 4px; background-size: cover; background-position: center; background-color: var(--off-white); }
.story-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.story-est { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.timeline { padding: 80px 0; background: var(--navy); }
.timeline-header { text-align: center; margin-bottom: 70px; }
.timeline-header .section-title { color: #fff; }
.timeline-header .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto; }
.timeline-track { position: relative; max-width: 860px; margin: 0 auto; }
.timeline-track::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(197,160,89,0.25); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 30px 1fr; align-items: start; margin-bottom: 56px; position: relative; }
.timeline-content-left { padding-right: 48px; text-align: right; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); box-shadow: 0 0 0 2px rgba(197,160,89,0.5); margin-top: 14px; justify-self: center; flex-shrink: 0; }
.timeline-content-right { padding-left: 48px; }
.timeline-year { font-family: var(--font-head), serif; font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.timeline-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(197,160,89,0.55); margin-bottom: 10px; margin-top: 4px; }
.timeline-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; }
@media (max-width: 768px) {
    .timeline-track::before { left: 14px; }
    .timeline-item { grid-template-columns: 28px 1fr; gap: 0; }
    .timeline-content-left { display: none; }
    .timeline-dot { margin-top: 12px; }
    .timeline-content-right { padding-left: 24px; }
}
.values { padding: 100px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.value-item { padding: 28px; background: var(--off-white); border-radius: 4px; }
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-title { font-family: var(--font-head), serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
@media (max-width: 1100px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-img { height: 300px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BRANDS / STOCK / CLEARANCE PAGES
   ============================================================ */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; padding: 60px 0; }
.brand-card { background: var(--white); border-radius: 4px; padding: 32px 24px; text-align: center; border: 1px solid rgba(15,32,60,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.brand-card:hover { box-shadow: 0 8px 30px rgba(15,32,60,0.1); transform: translateY(-2px); }
.brand-name { font-family: var(--font-head), serif; font-size: 22px; font-weight: 600; color: var(--navy); }
.stock-intro { padding: 60px 0 20px; text-align: center; }

/* ============================================================
   SHARED CATEGORY PAGE COMPONENTS
   ============================================================ */

/* BREADCRUMB (hero version) */
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; animation: heroFadeUp 0.8s 0.2s ease both; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }

/* CTA BUTTONS PAIR */
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/* INTRO SECTION (2-col with image) */
.intro { padding: 90px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.intro-img { border-radius: 4px; overflow: hidden; height: 460px; background-size: cover; background-position: center; background-color: var(--off-white); }

/* FEATURE GRID */
.feature-strip .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.feature-points { list-style: none; margin-top: 16px; }
.feature-points li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.feature-points li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* BRANDS MENTION */
.brands-mention { padding: 60px 0; background: var(--off-white); }
.brands-mention-white { background: #fff; }
.brands-mention-light { background: var(--off-white); }
.brands-mention-dark { background: var(--navy); }
.brands-mention-dark .section-title { color: #fff; }
.brands-mention-dark .brand-tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }

/* TESTIMONIALS */
.testimonials { padding: 90px 0; }
.testimonials-light { background: var(--off-white); }
.testimonials-white { background: #fff; }
.testimonials-dark { background: var(--navy); }
.testi-header { text-align: center; margin-bottom: 50px; }
.testimonials-dark .testi-header .section-title { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 28px 26px; }
.testimonials-light .testi-card, .testimonials-white .testi-card { background: #fff; border-color: rgba(15,32,60,0.08); box-shadow: 0 4px 20px rgba(15,32,60,0.05); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 18px; font-style: italic; }
.testimonials-light .testi-text, .testimonials-white .testi-text { color: var(--text-muted); }
.testi-name { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.testimonials-light .testi-name, .testimonials-white .testi-name { color: var(--navy); }
.brands-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.brand-tag { padding: 8px 20px; background: var(--white); border: 1px solid rgba(15,32,60,0.08); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--navy); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 10px; }

/* FLOORING TYPES */
.flooring-types { margin-top: 48px; }

/* HERITAGE / STATS STRIP */
.heritage { background: var(--navy); padding: 60px 0; }
.heritage-inner { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.heritage-stat { text-align: center; padding: 20px 48px; border-right: 1px solid rgba(255,255,255,0.07); }
.heritage-stat:last-child { border-right: none; }
.heritage-num { display: block; font-family: var(--font-head), serif; font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; }
.heritage-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px; }
.heritage-divider { display: none; }

/* CARAVAN BANNER */
.caravan-banner { padding: 80px 0; background: var(--navy); }
.caravan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.caravan-grid p { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.8; margin-bottom: 16px; }
.caravan-img { height: 400px; border-radius: 4px; background-size: cover; background-position: center; background-color: rgba(255,255,255,0.05); }

/* ABOUT PAGE SPECIFIC */
.about-hero { position: relative; min-height: 500px; background: var(--navy); display: flex; align-items: center; overflow: hidden; }
.about-hero-inner { position: relative; z-index: 2; padding: 80px 8%; }
.about-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.story { padding: 100px 0; }
.community { padding: 100px 0; background: var(--navy); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.community-img { height: 400px; border-radius: 4px; background-size: cover; background-position: center; background-color: rgba(255,255,255,0.05); }
.community h2 { color: #ffffff; }
.community h2 em { color: var(--gold-light); font-style: italic; }
.community p { color: rgba(255,255,255,0.65); }
.community p strong { color: rgba(255,255,255,0.9); }
.community .eyebrow { color: var(--gold); }

/* Responsive */
@media (max-width: 1100px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-img { height: 300px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .caravan-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    .heritage-inner { flex-direction: column; }
    .heritage-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px 0; width: 100%; }
}

/* ---- STICKY CATALOGUE CTA ---- */
.sticky-cta { background: var(--primary, #0F203C); border-top: 3px solid var(--secondary, #C5A059); padding: 24px 0; }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sticky-cta-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.sticky-cta-text strong { color: #fff; }
.sticky-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.sticky-btn-visit { display: inline-flex; align-items: center; gap: 8px; background: var(--secondary, #C5A059); color: var(--primary, #0F203C); padding: 10px 22px; border-radius: 3px; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s; }
.sticky-btn-visit:hover { opacity: 0.85; }
.sticky-btn-enquire { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.85); padding: 10px 22px; border-radius: 3px; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s; }
.sticky-btn-enquire:hover { border-color: var(--secondary, #C5A059); color: var(--secondary, #C5A059); }
@media (max-width: 640px) {
    .sticky-cta-inner { flex-direction: column; text-align: center; }
    .sticky-cta-btns { width: 100%; justify-content: center; }
}

/* ---- NAV SEARCH BUTTON ---- */
.nav-search-btn { background: none; border: none; cursor: pointer; color: var(--nav-text, #fff); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: background 0.2s; margin-left: 8px; }
.nav-search-btn:hover { background: rgba(255,255,255,0.1); }
.header-right { display: flex; align-items: center; gap: 8px; }

/* ---- FEATURED PRODUCTS (Homepage) ---- */
.featured-section { padding: 80px 0; background: var(--bg-white, #fff); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.featured-card { text-decoration: none; border-radius: 8px; overflow: hidden; border: 1px solid #eee; background: #fff; transition: box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.featured-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); border-color: rgba(197,160,89,0.4); }
.featured-card-img { height: 220px; background-size: cover; background-position: center; background-color: var(--off-white, #F8F5F0); position: relative; }
.featured-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.featured-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.featured-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-eyebrow, var(--orange)); }
.featured-card-name { font-family: var(--font-head), serif; font-size: 18px; font-weight: 700; color: var(--color-heading, var(--navy)); line-height: 1.2; }
.featured-card-price { margin-top: 4px; }
.featured-card-cta { margin-top: auto; padding-top: 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-dark, #A88644); }
.btn-outline { display: inline-block; padding: 12px 32px; border: 2px solid var(--primary, #0F203C); color: var(--primary, #0F203C); border-radius: 3px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { background: var(--primary, #0F203C); color: #fff; }
@media (max-width: 640px) { .featured-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .featured-card-img { height: 160px; } }

/* ADD TO LIST — heart toggle on card image, and button inside the Buy Now modal */
.card-list-toggle { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; }
.card-list-toggle svg { fill: none; stroke: #e75480; stroke-width: 1.6; transition: fill 0.2s; }
.card-list-toggle:hover { transform: scale(1.1); background: #fff; }
.card-list-toggle.on-list { background: #fff; }
.card-list-toggle.on-list svg { fill: #e75480; }
.btn-add-to-list { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; background: none; color: var(--navy); padding: 10px 16px; border-radius: var(--radius-btn, 3px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(15,32,60,0.15); cursor: pointer; margin-top: 8px; transition: all 0.3s; }
.btn-add-to-list svg { fill: #e75480; flex-shrink: 0; }
.btn-add-to-list:hover { border-color: var(--gold); color: var(--gold-dark); }

/* BUY NOW QUICK-VIEW MODAL */

.sf-buynow-overlay { display: none; position: fixed; inset: 0; z-index: 9997; background: rgba(10,20,40,0.7); align-items: center; justify-content: center; padding: 24px; }
.sf-buynow-box { background: #fff; border-radius: 8px; max-width: 960px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.sf-buynow-close { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.06); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer; color: var(--navy); z-index: 2; transition: background 0.2s; }
.sf-buynow-close:hover { background: rgba(0,0,0,0.12); }
.sf-buynow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sf-buynow-media { padding: 32px; background: var(--off-white, #f7f5f1); }
.sf-buynow-main-img { width: 100%; height: 380px; background-size: cover; background-position: center; border-radius: 4px; background-color: #e0e4ee; }
.sf-buynow-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.sf-buynow-thumb { width: 56px; height: 56px; background-size: cover; background-position: center; border-radius: 4px; cursor: pointer; opacity: 0.55; border: 2px solid transparent; transition: all 0.2s; background-color: #e0e4ee; }
.sf-buynow-thumb:hover { opacity: 0.85; }
.sf-buynow-thumb.active { opacity: 1; border-color: var(--gold); }
.sf-buynow-info { padding: 40px 40px 32px; }
.sf-buynow-brand { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark, #A88644); margin-bottom: 8px; }
.sf-buynow-title { font-family: var(--font-head), serif; font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.sf-buynow-price { font-size: 20px; margin-bottom: 18px; }
.sf-buynow-price .price-now { font-size: 20px; }
.sf-buynow-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.sf-buynow-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.sf-buynow-tags span { background: var(--off-white, #f5f5f5); color: var(--navy); font-size: 11px; padding: 5px 12px; border-radius: 20px; }
.sf-buynow-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.sf-buynow-qty-row label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.sf-buynow-qty { display: flex; align-items: center; border: 1px solid rgba(15,32,60,0.15); border-radius: var(--radius-btn, 3px); overflow: hidden; }
.sf-buynow-qty button { background: var(--off-white, #f5f5f5); border: none; width: 34px; height: 34px; font-size: 16px; cursor: pointer; color: var(--navy); }
.sf-buynow-qty button:hover { background: #e8e8e8; }
.sf-buynow-qty span { display: inline-block; min-width: 36px; text-align: center; font-size: 14px; font-weight: 600; color: var(--navy); }
.sf-buynow-actions { margin-bottom: 24px; }
.sf-buynow-actions .product-card-actions-top { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.sf-buynow-share { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(15,32,60,0.08); }
.sf-buynow-share span { font-size: 12px; color: var(--text-muted); }
.sf-buynow-share-icons { display: flex; gap: 8px; }
.sf-buynow-share-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--off-white, #f5f5f5); color: var(--navy); text-decoration: none; transition: background 0.2s, transform 0.2s, color 0.2s; }
.sf-buynow-share-icon:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
@media (max-width: 768px) {
    .sf-buynow-grid { grid-template-columns: 1fr; }
    .sf-buynow-media { padding: 24px; }
    .sf-buynow-info { padding: 24px; }
    .sf-buynow-main-img { height: 260px; }
}
