/* =========================================================
   Nathans Leather Goods — Catalogue Stylesheet
   Brand colour: #6b7f72
   ========================================================= */

/* --- Variables --- */
:root {
    --brand:        #6b7f72;
    --brand-dark:   #4a5c52;
    --brand-light:  #8fa398;
    --brand-pale:   #eef2ef;
    --brand-faint:  #f4f7f5;

    --mahogany:     #2a3530;
    --mid:          #4a5e52;
    --muted:        #6b7f72;
    --warm-grey:    #8a9e94;
    --divider:      rgba(107,127,114,0.18);

    --tan:          #c9a96e;
    --tan-light:    #e8d5b0;
    --parchment:    #f7f2e8;
    --cream:        #fdfaf4;
    --offwhite:     #fefcf9;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Crimson Text', Georgia, serif;
    --font-ui:      'Jost', sans-serif;

    --radius:       3px;
    --shadow:       0 4px 24px rgba(42,53,48,0.09);
    --shadow-hover: 0 8px 36px rgba(42,53,48,0.15);
    --transition:   0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--offwhite);
    color: var(--mahogany);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* --- Top Bar --- */
.top-bar {
    background: var(--mahogany);
    color: var(--brand-light);
    font-family: var(--font-ui);
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    padding: 0.45rem 0;
}
.top-bar .container { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.top-bar .container span:last-child { margin-left: auto; }
.top-bar a { color: var(--brand-light); transition: color var(--transition); }
.top-bar a:hover { color: #fff; }

/* --- Header --- */
.site-header {
    background: var(--offwhite);
    border-bottom: 1px solid var(--divider);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(42,53,48,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    gap: 2rem;
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

/* Nav */
.main-nav ul { display: flex; list-style: none; gap: 0.15rem; align-items: center; }
.main-nav a {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--mahogany);
    border-bottom-color: var(--brand);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mahogany);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Footer --- */
.site-footer { background: var(--mahogany); color: rgba(255,255,255,0.75); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem 3rem;
}
.footer-logo-img { height: 40px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; margin-top: 0.75rem; }
.footer-brand-logos {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.brand-logo-sm {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: opacity var(--transition);
}
.brand-logo-sm:hover { opacity: 0.8; filter: brightness(0) invert(1) opacity(0.8); }
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(107,127,114,0.3);
}
.footer-col p, .footer-col address { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.3rem; }
.footer-col a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--brand-light); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    display: inline-block;
}
.footer-links a:hover { color: var(--brand-light); padding-left: 4px; }
.hours-table { font-size: 0.87rem; color: rgba(255,255,255,0.6); border-collapse: collapse; }
.hours-table td { padding: 0.2rem 0; }
.hours-table td:first-child { padding-right: 1.25rem; }
.footer-bottom { border-top: 1px solid rgba(107,127,114,0.2); padding: 1.25rem 2rem; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-family: var(--font-ui); }

/* =========================================================
   SHARED COMPONENTS
   ========================================================= */

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(107,127,114,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-dark { background: var(--mahogany); color: #fff; }
.btn-dark:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }

/* Section headers */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.6rem;
    display: block;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--mahogany);
    line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--brand); }
.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.divider-ornament::before, .divider-ornament::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--brand-light);
    opacity: 0.6;
}
.divider-ornament span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-light);
    opacity: 0.6;
    display: block;
}

/* Page hero */
.page-hero {
    position: relative;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/page-banner.png') center 20% / cover no-repeat;
    z-index: 0;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 53, 48, 0.72);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}
.page-hero .subtitle {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 0.6rem;
    display: block;
}

/* Breadcrumb */
.page-breadcrumb {
    background: var(--brand-faint);
    border-bottom: 1px solid var(--divider);
    padding: 0.7rem 0;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--warm-grey);
    letter-spacing: 0.04em;
}
.page-breadcrumb a { color: var(--warm-grey); }
.page-breadcrumb a:hover { color: var(--brand); }
.page-breadcrumb .sep { margin: 0 0.45rem; opacity: 0.5; }

/* Product card */
.product-card {
    background: var(--cream);
    border: 1px solid var(--divider);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.product-card-img {
    position: relative;
    overflow: hidden;
    background: var(--parchment);
}
.product-card-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .no-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-pale);
}
.product-card-img .no-img svg { width: 48px; height: 48px; color: var(--brand-light); opacity: 0.5; }
.product-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.22rem 0.6rem;
    border-radius: 2px;
    z-index: 1;
}
.badge-new { background: var(--mahogany); color: var(--brand-light); }
.badge-bestseller { background: var(--brand); color: #fff; }
.product-card-body { padding: 1.1rem 1.35rem 1.35rem; }
.product-brand {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.3rem;
    display: block;
}
.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--mahogany);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.product-card-body .sku {
    font-family: var(--font-ui);
    font-size: 0.67rem;
    color: var(--warm-grey);
    margin-bottom: 0.7rem;
    letter-spacing: 0.04em;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--divider);
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mahogany);
}
.colour-dots { display: flex; gap: 4px; }
.colour-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid rgba(42,53,48,0.15);
    flex-shrink: 0;
}

/* =========================================================
   HOME PAGE
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 74vh;
    display: flex;
    align-items: center;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(42,53,48,0.92) 38%, rgba(42,53,48,0.55) 100%);
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    display: block;
}
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .6rem;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.55);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s, border-color .3s, transform .3s;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}
.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::after { content: ''; display: block; width: 50px; height: 1px; background: var(--brand-light); opacity: 0.5; }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.35rem;
    max-width: 540px;
}
.hero h1 em { font-style: italic; color: var(--brand-light); }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    max-width: 440px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(107,127,114,0.3);
}
.hero-badge .number {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--brand-light);
    display: block;
    line-height: 1;
}
.hero-badge .label {
    font-family: var(--font-ui);
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-top: 0.2rem;
}

/* Brands strip removed */

/* Categories grid */
.categories-section { padding: 5rem 0 2.5rem; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cat-card {
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition);
    display: block;
    position: relative;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.cat-card-img {
    position: relative;
    overflow: hidden;
}
.cat-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(42,53,48,0.72));
}
.cat-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem;
    z-index: 1;
}
.cat-card-label h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}
.cat-card-label span {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--brand-light);
    text-transform: uppercase;
}

/* Brands section */
.brands-section { background: var(--brand-faint); padding: 4.5rem 0; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.brand-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.brand-card {
    background: var(--cream);
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.brand-card-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
    margin: 0 auto 1.25rem;
    display: block;
    object-fit: contain;
}
.brand-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mahogany);
    margin-bottom: 0.5rem;
}
.brand-card p { font-size: 0.88rem; color: var(--warm-grey); line-height: 1.65; margin-bottom: 1.25rem; }
.brand-count { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); font-weight: 500; }
.brand-count:hover { color: var(--brand-dark); }

/* Featured products */
.featured-section { padding: 5rem 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.products-grid .product-card-img img { aspect-ratio: 4/3; }

/* In-store banner */
.instore-banner {
    background: var(--brand-faint);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 4rem 0;
}
.instore-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.instore-inner h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--mahogany);
    margin-bottom: 1rem;
}
.instore-inner h2 em { font-style: italic; color: var(--brand); }
.instore-inner p { font-size: 1rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.8; }
.instore-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--mahogany);
    margin-bottom: 2rem;
}

/* Repairs CTA block */
.repairs-cta-block {
    background: var(--mahogany);
    border-radius: 4px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.repairs-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(107,127,114,0.04) 0px, rgba(107,127,114,0.04) 1px, transparent 1px, transparent 16px);
    pointer-events: none;
}
.repairs-cta-text { position: relative; z-index: 1; }
.repairs-cta-text span {
    font-family: var(--font-ui);
    font-size: 0.63rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-light);
    display: block;
    margin-bottom: 0.75rem;
}
.repairs-cta-text h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.repairs-cta-text h2 em { color: var(--brand-light); }
.repairs-cta-text p { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.8; }
.repairs-cta-img { position: relative; z-index: 1; border-radius: 3px; overflow: hidden; }
.repairs-cta-img img { width: 100%; height: 220px; object-fit: cover; border-radius: 3px; opacity: 0.85; }

/* =========================================================
   CATALOGUE PAGE
   ========================================================= */
.catalogue-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 2.5rem;
    padding: 3rem 0 5rem;
}
.catalogue-sidebar { align-self: start; position: sticky; top: 90px; }
.filter-panel { background: var(--cream); border: 1px solid var(--divider); border-radius: 4px; overflow: hidden; }
.filter-panel-header {
    background: var(--mahogany);
    color: #fff;
    padding: 0.9rem 1.4rem;
}
.filter-panel-header h3 {
    font-family: var(--font-ui);
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}
.filter-section { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--divider); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 0.75rem;
}
.filter-options { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.filter-options li a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--mahogany);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.28rem 0;
    transition: all var(--transition);
}
.filter-options li a:hover, .filter-options li a.active { color: var(--brand); padding-left: 3px; }
.filter-options li a.active { font-weight: 600; }
.filter-count { margin-left: auto; font-size: 0.68rem; color: var(--warm-grey); }
.colour-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(42,53,48,0.15);
    flex-shrink: 0;
}
.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.77rem;
    color: var(--mahogany);
    cursor: pointer;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}
.catalogue-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.catalogue-search { position: relative; flex: 1; min-width: 200px; }
.catalogue-search input {
    width: 100%;
    padding: 0.62rem 1rem 0.62rem 2.4rem;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    background: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--mahogany);
    outline: none;
    transition: border-color var(--transition);
}
.catalogue-search input:focus { border-color: var(--brand); }
.search-icon {
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--warm-grey);
    pointer-events: none;
}
.catalogue-count { font-family: var(--font-ui); font-size: 0.77rem; color: var(--warm-grey); white-space: nowrap; }
.catalogue-count strong { color: var(--mahogany); }
.catalogue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.catalogue-grid .product-card-img img { aspect-ratio: 1; }
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; align-items: center; }
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brand-pale);
    border: 1px solid var(--brand-light);
    border-radius: 20px;
    padding: 0.22rem 0.7rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--mahogany);
    text-decoration: none;
    transition: all var(--transition);
}
.filter-tag:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.filter-tag .remove { color: var(--brand); font-weight: 700; line-height: 1; }
.filter-tag:hover .remove { color: #fff; }
.filter-clear-all {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--brand);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}
.no-results { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; color: var(--warm-grey); }
.no-results h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--mahogany); }

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0 5rem;
    align-items: start;
}
.product-image-area { position: sticky; top: 90px; }
.product-image-main {
    background: var(--parchment);
    border: 1px solid var(--divider);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.product-image-main img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.product-image-main .no-img-lg {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-pale);
}
.product-image-main .no-img-lg svg { width: 80px; height: 80px; color: var(--brand-light); opacity: 0.4; }
.product-thumbs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--brand); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info .brand-tag {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.product-info .brand-tag img {
    height: 22px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}
.product-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--mahogany);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
.product-info .sku-tag {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--warm-grey);
    margin-bottom: 1.25rem;
    letter-spacing: 0.07em;
}
.product-info .price-display {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--mahogany);
    margin-bottom: 1.5rem;
}
.product-info .description {
    font-size: 0.98rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--divider);
}
.product-section-label {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 0.85rem;
    display: block;
}
.colours-list { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.75rem; }
.colour-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.8rem;
    border: 1px solid var(--divider);
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.76rem;
    color: var(--mahogany);
    background: var(--cream);
    cursor: pointer;
    transition: all var(--transition);
}
.colour-pill:hover, .colour-pill.active { border-color: var(--brand); background: var(--brand-faint); }
.colour-pill .swatch { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.48rem; margin-bottom: 2rem; }
.features-list li {
    font-size: 0.93rem;
    color: var(--mahogany);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    line-height: 1.5;
}
.features-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    position: relative;
    top: -1px;
}
.product-cta-note {
    background: var(--brand-faint);
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 1.35rem 1.5rem;
    margin-top: 1.75rem;
}
.product-cta-note p { font-family: var(--font-ui); font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
.product-cta-note .contact-line { margin: 0.4rem 0 1.1rem; color: var(--mahogany); font-weight: 500; }
.product-cta-note a { color: var(--brand-dark); }
.product-cta-note .cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Related products */
.related-section {
    background: var(--brand-faint);
    border-top: 1px solid var(--divider);
    padding: 4rem 0;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 80%;
    border-radius: 4px;
    display: block;
    margin-bottom: 3rem;
}
.about-content { max-width: 780px; margin: 0 auto; padding: 5rem 2rem; }
.about-content h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--mahogany); margin-bottom: 1.5rem; }
.about-content h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--brand-dark); margin-bottom: 0.85rem; }
.about-content p { font-size: 1.02rem; color: var(--mid); line-height: 1.9; margin-bottom: 1.5rem; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem 3rem;
    background: var(--mahogany);
    border-radius: 4px;
}
.about-stat { text-align: center; }
.about-stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--brand-light); display: block; }
.about-stat .lbl { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* =========================================================
   REPAIRS PAGE
   ========================================================= */
.repairs-content { max-width: 860px; margin: 0 auto; padding: 5rem 2rem; }
.repairs-content h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--mahogany); margin-bottom: 1.25rem; }
.repairs-content p { font-size: 1.02rem; color: var(--mid); line-height: 1.9; margin-bottom: 1.5rem; }
.repair-banner-img { width: 100%; height: 240px; object-fit: cover; border-radius: 4px; margin-bottom: 3rem; }
.repair-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem; margin: 3rem 0; }
.repair-type {
    background: var(--cream);
    border: 1px solid var(--divider);
    border-left: 3px solid var(--brand);
    border-radius: 4px;
    padding: 1.5rem;
}
.repair-type h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--mahogany); margin-bottom: 0.4rem; }
.repair-type p { font-size: 0.87rem; color: var(--warm-grey); line-height: 1.6; margin: 0; }
.repair-process { background: var(--brand-faint); border: 1px solid var(--divider); border-radius: 4px; padding: 2.5rem; margin-top: 2.5rem; }
.repair-process h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--mahogany); margin-bottom: 1.5rem; }
.process-steps { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 1.2rem; }
.process-steps li { display: flex; align-items: flex-start; gap: 1rem; counter-increment: steps; }
.process-steps li::before {
    content: counter(steps);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-steps li strong { display: block; font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600; color: var(--mahogany); margin-bottom: 0.15rem; }
.process-steps li span { font-size: 0.87rem; color: var(--warm-grey); line-height: 1.55; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0; align-items: start; }
.contact-info { }
.contact-info h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--mahogany); margin-bottom: 1rem; }
.contact-info > p { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    background: var(--cream);
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 1.1rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-card-icon {
    width: 36px;
    height: 36px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon svg { width: 16px; height: 16px; color: #fff; }
.contact-card h4 { font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.93rem; color: var(--mahogany); margin: 0; }
.contact-card a { color: var(--brand-dark); }
.map-embed { margin-top: 2rem; }
.map-embed iframe { width: 100%; }
.map-placeholder svg { width: 32px; height: 32px; color: var(--brand-light); }
.map-placeholder p { font-family: var(--font-ui); font-size: 0.8rem; color: var(--warm-grey); margin: 0; }
.contact-form { background: var(--cream); border: 1px solid var(--divider); border-radius: 4px; padding: 2.5rem; position: sticky; top: 2rem; align-self: start; }
.contact-form h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--mahogany); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 0.38rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    background: var(--offwhite);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--mahogany);
    outline: none;
    transition: border-color var(--transition);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brand); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: #edf5ed; border: 1px solid #aecaae; border-radius: 4px; padding: 0.9rem; text-align: center; color: #2d5a2d; font-family: var(--font-ui); font-size: 0.85rem; margin-top: 1rem; }
.form-note { font-family: var(--font-ui); font-size: 0.7rem; color: var(--warm-grey); text-align: center; margin-top: 0.85rem; }
.form-note a { color: var(--brand-dark); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .catalogue-layout { grid-template-columns: 1fr; }
    .catalogue-sidebar { position: static; }
    .filter-panel { display: none; }
    .filter-panel.open { display: block; }
    .mobile-filter-btn { display: flex; }
    .product-detail-layout { grid-template-columns: 1fr; }
    .product-image-area { position: static; }
    .brand-cards { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { position: static; }
    .contact-form { position: static; }
    .about-stats { grid-template-columns: 1fr; gap: 1.25rem; padding: 2rem; }
    .repair-types { grid-template-columns: 1fr; }
    .repairs-cta-block { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .top-bar .container { gap: 0.75rem; font-size: 0.68rem; }
    .top-bar .tb-address,
    .top-bar .tb-email { display: none; }
    .mobile-menu-btn { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--offwhite);
        border-bottom: 1px solid var(--divider);
        padding: 1rem;
        z-index: 99;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav a { display: block; padding: 0.7rem 1rem; }
    .hero { min-height: 58vh; }
    .hero-badges { gap: 1.5rem; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 500px) {
    .products-grid, .catalogue-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; }
}

/* ── Pricing disclaimer ───────────────────────── */
.pricing-disclaimer {
    background: var(--parchment);
    border-top: 1px solid var(--tan-light);
    padding: 0.9rem 0;
    text-align: center;
}
.pricing-disclaimer p {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--warm-grey);
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}
.pricing-disclaimer strong { color: var(--mid); }

/* ── Footer brand logos removed ──────────────── */
.footer-brand-logos, .brand-logo-sm { display: none; }

/* ── Kit4Kids Community Section ───────────────── */
.k4k-section {
    background: var(--offwhite);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}
.k4k-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/kit4kids-bg.png') center center / cover;
    opacity: 0.1;
    pointer-events: none;
}
.k4k-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.k4k-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.k4k-logo {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
}
.k4k-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--mahogany);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.k4k-text p {
    font-size: 0.97rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 0.9rem;
}
.k4k-text strong { color: var(--mahogany); }
.k4k-btn {
    margin-top: 0.75rem;
    background: var(--brand);
    color: #fff !important;
}
.k4k-btn:hover { background: var(--brand-dark); color: #fff !important; }

/* About page compact Kit4Kids block */
.k4k-about-block {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--divider);
    border-left: 3px solid var(--brand);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}
.k4k-about-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/kit4kids-bg.png') center / cover;
    opacity: 0.06;
    pointer-events: none;
}
.k4k-about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.k4k-about-logo .k4k-logo { mix-blend-mode: normal; }
.k4k-about-block p {
    font-size: 0.93rem;
    color: var(--mid) !important;
    line-height: 1.8;
    margin-bottom: 0.6rem !important;
    position: relative;
    z-index: 1;
}
.k4k-about-block strong { color: var(--mahogany) !important; }

@media (max-width: 720px) {
    .k4k-inner { grid-template-columns: 1fr; gap: 2rem; }
    .k4k-logo-wrap { max-width: 240px; margin: 0 auto; }
    .k4k-about-block { grid-template-columns: 1fr; }
    .k4k-about-logo { max-width: 200px; }
}

/* ── Facebook links ───────────────────────────── */
.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-light);
    transition: color var(--transition);
}
.fb-link:hover { color: #fff; }
.fb-link svg { flex-shrink: 0; }

.fb-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color var(--transition);
    font-family: var(--font-ui);
    font-size: 0.75rem;
}
.fb-link-footer:hover { color: #fff; }
.fb-link-footer svg { flex-shrink: 0; }

/* ── Contact form — working states ────────────── */
.req { color: var(--brand); font-size: 0.7em; }

.field-error {
    border-color: #c0392b !important;
    background: #fff8f8 !important;
}
.field-error:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.15) !important; }

.form-error {
    background: #fff0ef;
    border: 1px solid #f5c6c2;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.form-sent-banner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #edf7ed;
    border: 1px solid #a8d8a8;
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-top: 1rem;
}
.form-sent-banner svg {
    width: 32px;
    height: 32px;
    color: #2e7d32;
    flex-shrink: 0;
    margin-top: 2px;
}
.form-sent-banner strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #1b5e20;
    margin-bottom: 0.35rem;
}
.form-sent-banner p {
    font-family: var(--font-ui);
    font-size: 0.87rem;
    color: #2e7d32;
    margin: 0;
    line-height: 1.6;
}

button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.form-smtp-error {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff0ef;
    border: 1px solid #f5c6c2;
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-top: 1rem;
}
.form-smtp-error svg {
    width: 28px;
    height: 28px;
    color: #c0392b;
    flex-shrink: 0;
    margin-top: 2px;
}
.form-smtp-error strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: #c0392b;
    margin-bottom: 0.35rem;
}
.form-smtp-error p {
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: #922b21;
    margin: 0;
    line-height: 1.6;
}
.form-smtp-error a { color: #c0392b; text-decoration: underline; }

/* ── About page — owner profile ──────────────── */
.about-owner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}
.about-owner-img {
    width: 100%;
    border-radius: 3px;
    object-fit: cover;
    aspect-ratio: 3/4;
    border: 1px solid var(--divider);
}
.about-owner-text h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mahogany);
    margin-bottom: 0.2rem;
}
.about-owner-role {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1rem !important;
}
@media (max-width: 600px) {
    .about-owner { grid-template-columns: 1fr; }
    .about-owner-img { max-width: 200px; }
}

/* ── In-store price label ─────────────────────── */
.product-price-poa {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--brand);
    letter-spacing: 0.05em;
    font-style: italic;
}

/* ── Catalogue — in-store range notice ──────────────── */
.catalogue-instore-note {
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: var(--brand-faint);
    border: 1px solid var(--divider);
    border-radius: 4px;
}
.catalogue-instore-inner {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    max-width: 720px;
    margin: 0 auto;
}
.catalogue-instore-inner svg {
    flex-shrink: 0;
    color: var(--brand);
    margin-top: .25rem;
}
.catalogue-instore-inner h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mahogany);
    margin-bottom: .65rem;
}
.catalogue-instore-inner p {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.75;
}
@media (max-width: 600px) {
    .catalogue-instore-inner { flex-direction: column; gap: 1rem; }
}

/* ── Catalogue — compact in-store banner (top) ──────── */
.catalogue-instore-banner {
    background: var(--brand-faint);
    border-bottom: 1px solid var(--divider);
    padding: .85rem 0;
}
.catalogue-instore-banner .container {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.catalogue-instore-banner p {
    font-family: var(--font-ui);
    font-size: .875rem;
    color: var(--mid);
    margin: 0;
    line-height: 1.5;
}
.catalogue-instore-banner a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: none;
}
.catalogue-instore-banner a:hover { text-decoration: underline; }
