/* =============================================================
   PAGE SECTIONS — pages.css
   ============================================================= */

/* ── Page Loader ─────────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader-icon {
    width: 48px;
    height: 48px;
    animation: loader-pulse 1s ease-in-out infinite;
}
@keyframes loader-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════════════════ */

/* Mobile sub-menus hidden on desktop */
.mob-sub { display: none; }

.nav-item--mega {
    position: static;
}
.mega-menu {
    position: absolute;
    top: calc(var(--h) - 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    pointer-events: none;
    z-index: 100;
}
.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mega-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px var(--pad) 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mega-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mega-type-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
    transition: color var(--ease);
}
.mega-type-title:hover {
    color: var(--accent);
}
.mega-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    padding: 3px 0;
    transition: color var(--ease), padding-left var(--ease);
}
.mega-link:hover {
    color: var(--accent);
    padding-left: 4px;
}
.mega-link--more {
    color: var(--accent);
    font-weight: 500;
    margin-top: 4px;
}
.mega-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px var(--pad);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px;
}
.mega-bottom a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    transition: opacity var(--ease);
}
.mega-bottom a:hover {
    opacity: 0.7;
}

/* Resources mega menu — 3 column with images */
.mega-menu--resources {
    padding: 0;
}
.mega-res-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px var(--pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mega-res-card {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}
.mega-res-card:hover {
    transform: translateY(-2px);
}
.mega-res-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.mega-res-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.mega-res-card:hover .mega-res-img img {
    transform: scale(1.05);
}
.mega-res-label {
    display: block;
    padding: 12px 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
}

/* ── Playfair Display for italic headings ────────── */
:root {
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ── Shared section helpers ─────────────────────── */
.section-heading {
    font-family: var(--font);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.section-heading em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}
.section-heading strong {
    font-family: var(--font);
    font-weight: 700;
}
.section-heading--white,
.section-heading--white em,
.section-heading--white strong {
    color: #fff;
}

.section-hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0 18px;
    max-width: 100%;
}
.section-hr--white {
    border-top-color: rgba(255,255,255,0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease), color var(--ease);
    white-space: nowrap;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--ease);
    white-space: nowrap;
}
.btn-teal:hover {
    background: var(--teal-dark);
    color: #fff;
}
.btn-teal--lg {
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════ */

/* ── Hero extras ─────────────────────────────────── */
.hero-logo-large {
    height: clamp(40px, 5vw, 64px);
    width: auto;
    margin-bottom: 16px;
    opacity: 0;
    animation: hero-text-in 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin: 8px auto 20px;
    opacity: 0;
    animation: hero-text-in 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ── Tagline Bar ─────────────────────────────────── */
.tagline-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.tagline-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.tagline-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
}
.tagline-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.tagline-arrow {
    height: 18px;
    width: auto;
    opacity: 0.4;
}

/* ── Our Story ───────────────────────────────────── */
.story-section {
    background: var(--bg-light);
    padding: clamp(60px, 8vw, 120px) 0 30px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.story-images {
    position: relative;
}
.story-badge {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 80px;
    z-index: 2;
}
.story-img-stack {
    display: grid;
    grid-template-columns: 1fr;
}
.story-img--main {
    width: 100%;
    border-radius: 2px;
}
.story-text p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.story-text-img {
    width: 100%;
    margin-bottom: 28px;
    border-radius: 2px;
}
.story-text .btn-outline {
    margin-top: 4px;
}

/* ── Commitment (Home section) ────────────────── */
.commitment-section {
    background: #f4f4f2;
    padding: 30px 0 clamp(60px, 8vw, 120px);
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.commitment-img {
    width: 100%;
    display: block;
}
.commitment-text p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Featured Collections (Home) */
.featured-collections {
    background: #fff;
    padding: 0 0 clamp(60px, 8vw, 120px);
}
.explore-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* ── TG Technology (Home section) ────────────────── */
.tg-home-section {
    background: var(--bg);
    padding: clamp(60px, 8vw, 120px) 0;
}
.tg-home-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.tg-home-logo img {
    width: 100%;
    max-width: 280px;
}
.tg-home-sub {
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}
.tg-home-text p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ── Collections (Home) ──────────────────────────── */
.collections-home {
    background: #111;
    padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.collections-home-header {
    padding: 0 var(--pad);
    max-width: var(--max);
    margin: 0 auto 32px;
}
.collections-home-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.collections-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 80px 0;
}
.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    display: block;
}
.collection-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.collection-card:hover img {
    transform: scale(1.04);
}
.collection-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
}

/* ── Roomvo Section ──────────────────────────────── */
.roomvo-section {
    background: var(--bg);
    padding: clamp(60px, 8vw, 100px) 0;
}
.roomvo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.roomvo-video-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #eee;
}
.roomvo-video {
    width: 100%;
    display: block;
}
.roomvo-powered {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.roomvo-logo {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
}
.roomvo-body,
.roomvo-body2 {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.roomvo-body2 {
    margin-bottom: 28px;
}

/* ── Quote Banner (Home) ─────────────────────────── */
.quote-banner {
    position: relative;
    background: url('/media/images/2.jpg') center / cover no-repeat;
    min-height: 260px;
}
.quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(50, 50, 50, 0.78);
}
.quote-banner-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(50px, 6vw, 80px) var(--pad);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}
.quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(120px, 12vw, 200px);
    color: rgba(255,255,255,0.15);
    line-height: 0.6;
    position: absolute;
    right: clamp(40px, 8vw, 140px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 36px);
    color: #fff;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
}
.quote-text em {
    font-style: italic;
}


/* ══════════════════════════════════════════════════════
   DISCOVER PAGE
══════════════════════════════════════════════════════ */

/* ── Discover Hero ───────────────────────────────── */
.discover-hero {
    position: relative;
    width: 100%;
    height: clamp(400px, 50vh, 600px);
    overflow: hidden;
    background: #111;
}
.discover-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}
.discover-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 clamp(40px, 5vw, 70px) clamp(40px, 6vw, 100px);
}
.discover-hero-sub {
    font-family: var(--font);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}
.discover-hero-title {
    font-family: var(--font);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* ── Discover Sections (Mission / Passion / Commitment) ── */
.disc-section {
    background: var(--bg);
    padding: clamp(60px, 8vw, 110px) 0;
}
.disc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

/* Image with subtle offset border frame */
.disc-img-wrap {
    position: relative;
    max-width: 520px;
    padding-bottom: 16px;
    padding-right: 16px;
}
.disc-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
}

/* When image is on the right side, flip the frame offset */
.disc-img-wrap--right {
    padding-right: 0;
    padding-left: 16px;
    padding-bottom: 16px;
    margin-left: auto;
}
.disc-img-wrap--right::after {
    right: auto;
    left: 0;
}

.disc-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 2px;
    display: block;
}

.disc-text p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.disc-text .btn-outline {
    margin-top: 8px;
}

/* ── Discover Quote Banner ───────────────────────── */
.disc-quote-banner {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
}
.disc-quote-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.disc-quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.disc-quote-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) var(--pad);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.disc-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 42px);
    color: var(--text);
    line-height: 1.45;
    text-align: center;
    max-width: 900px;
}
.disc-quote-text em {
    font-style: italic;
}


/* ══════════════════════════════════════════════════════
   ROOMVO PAGE
══════════════════════════════════════════════════════ */

/* ── Roomvo Hero ─────────────────────────────────── */
.rv-hero {
    position: relative;
    width: 100%;
    min-height: clamp(450px, 55vh, 650px);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.rv-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.rv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: clamp(40px, 6vw, 80px) var(--pad);
    margin-left: clamp(40px, 6vw, 100px);
}
.rv-hero-logo {
    height: clamp(36px, 4vw, 52px);
    width: auto;
    margin-bottom: 8px;
    display: block;
}
.rv-hero-roomvo {
    height: clamp(28px, 3.5vw, 42px);
    width: auto;
    margin-bottom: 24px;
    display: block;
}
.rv-hero-body {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ── 3-Step Icons ────────────────────────────────── */
.rv-steps {
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) 0;
}
.rv-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
}
.rv-step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}
.rv-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}


/* ══════════════════════════════════════════════════════
   CATALOGUE PAGE
══════════════════════════════════════════════════════ */
.cat-hero {
    position: relative; width: 100%; height: clamp(280px, 35vh, 400px);
    overflow: hidden; display: flex; align-items: center; background: #222;
}
.cat-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.cat-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.cat-hero-content {
    position: relative; z-index: 2; padding: var(--pad); margin-left: clamp(40px, 6vw, 100px);
}
.cat-hero-logo { height: clamp(36px, 4.5vw, 56px); width: auto; margin-bottom: 8px; display: block; }
.cat-hero-title {
    font-family: var(--font); font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400; letter-spacing: 6px; text-transform: uppercase; color: rgba(255,255,255,0.85);
}

.cat-intro { background: var(--bg); padding: clamp(50px, 6vw, 80px) 0; }
.cat-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px); align-items: center;
}
.cat-intro-img-wrap { position: relative; }
.cat-intro-img { width: 100%; border-radius: 2px; }
.cat-intro-text p {
    font-size: clamp(13px, 1vw, 15px); color: var(--text-muted);
    line-height: 1.8; margin-bottom: 24px;
}

.cat-section {
    background: var(--bg);
    padding: clamp(20px, 3vw, 40px) 0;
    border-bottom: 1px solid var(--border);
}
.cat-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.cat-section-header .section-heading {
    margin: 0;
}
.cat-section-header .section-hr {
    flex: 1;
    margin: 0;
}
.cat-section-title {
    font-family: var(--font);
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.cat-carousel-nav {
    display: flex;
    gap: 6px;
}
.cat-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg);
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cat-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Cards wrapper — static 4-col or carousel */
.cat-cards-wrap {
    margin-top: 16px;
}
.cat-cards-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-cards-wrap--carousel {
    overflow: hidden;
}
.cat-cards-wrap--carousel .cat-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.cat-cards-wrap--carousel .cat-cards-track::-webkit-scrollbar {
    display: none;
}
.cat-cards-wrap--carousel .cat-card {
    min-width: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Pantone card */
.cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.cat-card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #eee;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-img img {
    transform: scale(1.04);
}
.cat-card-body {
    padding: 16px 18px;
}
.cat-card-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    display: block;
}
.cat-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background: #fff;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ══════════════════════════════════════════════════════
   DOCUMENTS PAGE
══════════════════════════════════════════════════════ */
.doc-header {
    background: var(--bg); padding: clamp(50px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
}
.doc-intro {
    font-size: clamp(13px, 1vw, 15px); color: var(--text-muted);
    line-height: 1.8; max-width: 600px; margin-top: 12px;
}
.doc-section {
    background: var(--bg); padding: 0 0 clamp(60px, 8vw, 100px);
}
.doc-table {
    width: 100%; border-collapse: collapse;
}
.doc-table th {
    text-align: left; padding: 14px 16px; font-size: 11px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); border-bottom: 2px solid var(--border);
}
.doc-table td {
    padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13px;
}
.doc-table tr:hover td { background: var(--bg-light); }
.doc-download {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-size: 12px; font-weight: 600;
    transition: opacity var(--ease);
}
.doc-download:hover { opacity: 0.7; }
.doc-empty {
    text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 14px;
}
.doc-type-group {
    margin-bottom: 36px;
}
.doc-type-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.doc-warranty-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.doc-warranty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.doc-warranty-row:last-child {
    border-bottom: none;
}
.doc-warranty-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}


/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */

.contact-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 35vh, 400px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #222;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.contact-hero-overlay {
    display: none;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--pad);
    margin-left: clamp(40px, 6vw, 100px);
}
.contact-hero-logo {
    height: clamp(36px, 4.5vw, 56px);
    width: auto;
    margin-bottom: 8px;
    display: block;
}
.contact-hero-title {
    font-family: var(--font);
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* Form + info grid */
.contact-form-section {
    background: #ffffff;
    padding: clamp(50px, 6vw, 80px) 0;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cf-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}
.cf-field input,
.cf-field textarea {
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 10px 14px;
    transition: border-color var(--ease);
}
.cf-field input:focus,
.cf-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.cf-field textarea {
    resize: vertical;
}
.cf-submit {
    align-self: flex-start;
}

.contact-info {
    padding-top: 8px;
}
.contact-intro {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.contact-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.contact-detail a {
    color: var(--text-muted);
    transition: color var(--ease);
}
.contact-detail a:hover {
    color: var(--accent);
}

/* Map sections */
.contact-map-section {
    position: relative;
    overflow: hidden;
    background: #1e1e1e;
    padding: 80px 0;
}
.contact-map-toggle {
    display: flex;
    gap: 0;
    margin: 0 auto 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    overflow: hidden;
    width: fit-content;
}
.contact-map-tab {
    padding: 10px 28px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    transition: background 0.2s, color 0.2s;
}
.contact-map-tab.is-active {
    background: var(--teal);
    color: #fff;
}
.contact-map-tab:hover:not(.is-active) {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}
.contact-map-panel {
    display: none;
}
.contact-map-panel.is-active {
    display: block;
}
.contact-map-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}
.contact-map-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-map-embed iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}
.contact-map-info {
    padding: 20px 0;
}
.contact-map-heading {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.contact-map-info a {
    color: rgba(255,255,255,0.7);
    transition: color var(--ease);
}
.contact-map-info a:hover {
    color: var(--accent);
}
.contact-map-addr {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.contact-map-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.contact-map-detail strong {
    color: rgba(255,255,255,0.9);
}


/* ══════════════════════════════════════════════════════
   WARRANTY & CLAIMS PAGE
══════════════════════════════════════════════════════ */
.warranty-hero {
    position: relative; width: 100%; height: clamp(280px, 35vh, 400px);
    overflow: hidden; display: flex; align-items: center; background: #222;
}
.warranty-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.warranty-hero-overlay { display: none; }
.warranty-hero-content { position: relative; z-index: 2; padding: var(--pad); margin-left: clamp(40px, 6vw, 100px); }
.warranty-hero-logo { height: clamp(36px, 4.5vw, 56px); width: auto; margin-bottom: 8px; display: block; }
.warranty-hero-title {
    font-family: var(--font); font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400; letter-spacing: 6px; text-transform: uppercase; color: rgba(255,255,255,0.85);
}

.warranty-content {
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) 0;
}
.warranty-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

/* Left: Pantone download cards */
.warranty-pantone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}
.warranty-pantone-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.warranty-pantone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.warranty-pantone-img {
    width: 100%;
    height: 200px;
    background: #f4f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.warranty-pantone-img img {
    width: 40%;
    height: auto;
    opacity: 0.15;
}
.warranty-pantone-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.warranty-pantone-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}
.warranty-pantone-action {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
}

/* Right: support section */
.warranty-right {
    padding-top: 10px;
}
.warranty-support-img {
    width: 100%;
    max-width: 280px;
    margin-bottom: 24px;
}
.warranty-support-text {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.warranty-support-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.warranty-support-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.warranty-support-detail a {
    color: var(--text-muted);
    transition: color var(--ease);
}
.warranty-support-detail a:hover {
    color: var(--accent);
}


/* ══════════════════════════════════════════════════════
   ACCESSORIES PAGE
══════════════════════════════════════════════════════ */
.acc-header {
    background: var(--bg);
    padding: clamp(40px, 5vw, 60px) 0 0;
}
.acc-filter-section {
    background: var(--bg);
    padding: clamp(16px, 2vw, 24px) 0;
}
.acc-filter-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #f0efed;
    border-radius: 40px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;
}
.acc-filter-btn {
    padding: 10px 28px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.acc-filter-btn:hover {
    color: var(--text);
}
.acc-filter-btn--active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(90,181,173,0.3);
    font-weight: 600;
}
.acc-grid-section {
    background: var(--bg);
    padding: 0 0 clamp(60px, 8vw, 100px);
}
.acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.acc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.acc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.acc-card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f4f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}
.acc-card:hover .acc-card-img img {
    transform: scale(1.05);
}
.acc-card-body {
    padding: 16px 18px;
}
.acc-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: block;
}
.acc-card-sku {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 3px;
}


/* ══════════════════════════════════════════════════════
   INSTALLATION VIDEOS PAGE
══════════════════════════════════════════════════════ */

/* Tabs - toggle style */
.vid-tabs-section {
    background: var(--bg);
    padding: clamp(24px, 3vw, 40px) 0;
}
.vid-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #f0efed;
    border-radius: 40px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;
}
.vid-tab {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 36px;
    transition: all 0.25s;
    white-space: nowrap;
}
.vid-tab:hover {
    color: var(--text);
}
.vid-tab--active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(90,181,173,0.3);
    font-weight: 600;
}

/* Video grid */
.vid-content {
    background: var(--bg);
    padding: clamp(40px, 5vw, 60px) 0 clamp(60px, 8vw, 100px);
}
.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pantone-style video card */
.vid-card {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.vid-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}
.vid-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s;
}
.vid-card-thumb:hover .vid-card-img {
    transform: scale(1.05);
    opacity: 0.8;
}
.vid-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(90,181,173,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.vid-card-play svg {
    margin-left: 3px;
}
.vid-card-thumb:hover .vid-card-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(90,181,173,0.5);
}
.vid-card-body {
    padding: 16px 18px;
}
.vid-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}


/* ══════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
══════════════════════════════════════════════════════ */
.legal-page {
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.legal-content {
    max-width: 800px;
}
.legal-title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.legal-content h4 {
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 700;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.legal-content p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content a {
    color: var(--accent);
    transition: opacity var(--ease);
}
.legal-content a:hover {
    opacity: 0.7;
}


/* ══════════════════════════════════════════════════════
   COLLECTIONS & PRODUCT PAGES
══════════════════════════════════════════════════════ */

/* ── Collections Header ──────────────────────────── */
.col-hero {
    background: var(--bg);
    padding: clamp(30px, 4vw, 50px) 0 clamp(20px, 3vw, 40px);
}
/* Breadcrumb bar - flush against header */
.col-breadcrumb-bar {
    background: #f4f4f2;
    padding: 0;
    margin-top: 0;
}
.col-breadcrumb-bar .content-wrap {
    display: flex;
    align-items: center;
    min-height: 36px;
}
.col-breadcrumb {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1;
}
.col-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--ease);
}
.col-breadcrumb a:hover {
    color: var(--accent);
}

/* ── Explore Collections Grid (Pantone style) ──── */
.explore-grid-section {
    background: var(--bg);
    padding: 0 0 clamp(60px, 8vw, 100px);
}
.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.explore-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}
.explore-card::before,
.explore-card::after {
    content: '';
    position: absolute;
    border: 1px solid #e2e2e0;
}
.explore-card::before {
    bottom: 0;
    left: 5px; right: 5px;
    top: 0;
    background: #fcfcfc;
    z-index: 1;
}
.explore-card::after {
    bottom: 3px;
    left: 3px; right: 3px;
    top: 0;
    background: #fcfcfc;
    border-color: #e2e2e0;
    z-index: 2;
}
.explore-card-inner {
    position: relative;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s;
}
.explore-card:hover .explore-card-inner {
    transform: translateY(-3px);
}
.explore-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #eee;
}
.explore-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.explore-card:hover .explore-card-img img {
    transform: scale(1.04);
}
.explore-card-body {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.explore-card-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}
.explore-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background: #fff;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ── Collection Type Grid ────────────────────────── */
.col-grid-section {
    background: var(--bg);
    padding: 0 0 clamp(60px, 8vw, 100px);
}
.col-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.col-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}
.col-type-card::before,
.col-type-card::after {
    content: '';
    position: absolute;
    border: 1px solid #e2e2e0;
}
.col-type-card::before {
    bottom: 0;
    left: 5px; right: 5px;
    top: 0;
    background: #fcfcfc;
    z-index: 1;
}
.col-type-card::after {
    bottom: 3px;
    left: 3px; right: 3px;
    top: 0;
    background: #fcfcfc;
    border-color: #e2e2e0;
    z-index: 2;
}
.col-type-inner {
    position: relative;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s;
}
.col-type-card:hover .col-type-inner {
    transform: translateY(-3px);
}
.col-type-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.col-type-card:hover .col-type-img {
    transform: scale(1.04);
}
.col-type-label {
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.col-type-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background: #fff;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
    flex-shrink: 0;
}

/* ── Product Grid (within a collection) ──────────── */
.col-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.col-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.col-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.col-product-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.col-product-img--empty {
    background: var(--border);
}
.col-product-name {
    padding: 14px 16px 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.col-product-sku {
    padding: 0 16px 14px;
    font-size: 11px;
    color: var(--text-muted);
}

/* Specifications PDF button on collection page */
.col-spec-section {
    background: var(--bg);
    padding: 0 0 clamp(40px, 5vw, 60px);
}
.col-spec-btn {
    gap: 8px;
}

/* ── Product Detail Page ─────────────────────────── */
.prod-page {
    background: #fcfcfc;
    padding: clamp(40px, 5vw, 70px) 0;
}
.prod-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 4vw, 56px);
    align-items: start;
}

/* Left: main image + thumbnails */
.prod-left {}
.prod-main-wrap {
    background: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}
.prod-main-img {
    width: 100%;
    display: block;
    object-fit: contain;
    aspect-ratio: 4/3;
    mix-blend-mode: multiply;
}
.prod-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.prod-thumb-wrap {
    width: 64px;
    height: 64px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity var(--ease), border-color var(--ease);
}
.prod-thumb--active,
.prod-thumb-wrap:hover {
    opacity: 1;
    border-color: var(--accent);
}
.prod-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: info card */
.prod-right {
    position: sticky;
    top: calc(var(--h) + 24px);
}
.prod-collection-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}
.prod-name {
    font-family: var(--font);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 4px;
}
.prod-sku {
    font-size: 12px;
    color: var(--text-muted);
}
.prod-hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}
.prod-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.prod-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--ease);
    margin-bottom: 16px;
}
.prod-pdf-btn:hover {
    background: var(--teal-dark);
}
.prod-pdf-btn svg {
    flex-shrink: 0;
}
.prod-back-link {
    display: block;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
    transition: color var(--ease);
}
.prod-back-link:hover {
    color: var(--accent);
}

/* Specs — full-width grid below product in a box */
.prod-specs-section {
    background: #fcfcfc;
    padding: clamp(40px, 5vw, 60px) 0;
}
.prod-specs-box {
    background: #fff;
    border: 1px solid #f0f0ef;
    border-radius: 4px;
    padding: clamp(24px, 3vw, 40px);
}
.prod-specs-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}
.prod-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
}
.prod-spec-item {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 14px 0;
    border-bottom: 1px solid #e8e8e6;
}
.prod-spec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 2px;
}
.prod-spec-value {
    font-size: 13px;
    color: var(--text-muted);
}
.prod-spec-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    transition: opacity var(--ease);
}
.prod-spec-download:hover {
    opacity: 0.7;
}

/* Related products */
.prod-related {
    background: var(--bg-light);
    padding: clamp(40px, 5vw, 60px) 0 clamp(60px, 8vw, 80px);
    border-top: 1px solid var(--border);
}
.prod-related-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 24px;
}
.prod-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* ══════════════════════════════════════════════════════
   TG® TECHNOLOGY PAGE
══════════════════════════════════════════════════════ */

/* ── TG Hero ─────────────────────────────────────── */
.tg-hero {
    position: relative;
    width: 100%;
    height: clamp(380px, 50vh, 550px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}
.tg-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.55;
}
.tg-hero-overlay {
    display: none;
}
.tg-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--pad);
}
.tg-hero-sub {
    font-family: var(--font);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.tg-hero-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.tg-hero-icon {
    height: clamp(50px, 6vw, 80px);
    width: auto;
}
.tg-hero-title {
    font-family: var(--font);
    font-size: clamp(30px, 4.5vw, 60px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.tg-hero-desc {
    font-size: clamp(11px, 0.9vw, 14px);
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── TG Video + Bullets sections ─────────────────── */
.tg-video-section {
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) 0;
}
.tg-video-section--alt {
    background: var(--bg-light);
}
.tg-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}
.tg-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}
.tg-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.tg-video-text .section-heading {
    margin-bottom: 0;
}
.tg-bullets {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}
.tg-bullets li {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ── TG Collection headers ───────────────────────── */
.tg-col-sub {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--accent);
    margin-bottom: 4px;
}
.tg-col-title {
    font-family: var(--font);
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.section-hr--accent {
    border-top-color: var(--accent);
}


/* ══════════════════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════════════════ */

/* ── Projects Hero ────────────────────────────────── */
.proj-hero {
    position: relative;
    width: 100%;
    height: clamp(350px, 45vh, 500px);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.proj-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.proj-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.proj-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--pad);
    margin-left: clamp(40px, 6vw, 100px);
}
.proj-hero-logo {
    height: clamp(36px, 4.5vw, 56px);
    width: auto;
    margin-bottom: 8px;
    display: block;
}
.proj-hero-title {
    font-family: var(--font);
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.proj-hero-body {
    font-size: clamp(13px, 1vw, 15px);
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* ── Project Block (side-by-side: brand + collage) ── */
.proj-block {
    background: var(--bg-light);
    padding: clamp(40px, 5vw, 70px) 0;
}
.proj-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}
.proj-row--reverse {
    grid-template-columns: 2fr 1fr;
}
.proj-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 20px;
}
.proj-brand-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
}
.proj-collage {
    overflow: hidden;
    border-radius: 2px;
}
.proj-collage-img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

/* ── Project Video Section (Marquise) ────────────── */
.proj-video-section {
    position: relative;
    width: 100%;
    min-height: clamp(350px, 50vh, 550px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proj-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proj-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.proj-video-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: var(--pad);
}
.proj-video-logo {
    height: clamp(40px, 5vw, 70px);
    width: auto;
}

/* White outline button variant for dark backgrounds */
.btn-outline--white {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline--white:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* ── Mobile Menu Overrides ────────────── */
    .hdr-nav.is-open { display: flex !important; flex-direction: column; justify-content: center; }
    .nav-list { align-items: center !important; padding: 0 !important; justify-content: center; flex: 1; }
    .nav-link { justify-content: center !important; text-align: center; border-bottom: none !important; padding: 16px 24px !important; font-size: 14px !important; letter-spacing: 2px !important; }
    .nav-item { width: 100%; text-align: center; border-bottom: 1px solid var(--border); }
    .nav-item--lang { border-bottom: none; margin-top: 12px !important; display: flex; justify-content: center; }
    .nav-item--home { display: none; }
    .nav-arrow { margin-left: 8px !important; }

    /* Hide mega menus on mobile — use simple sub-links instead */
    .mega-menu { display: none !important; }
    .mega-menu--resources { display: none !important; }

    /* Mobile sub-menu for Collections & Resources */
    .nav-item--mega .mob-sub {
        display: none;
        width: 100%;
        background: var(--bg-light);
        border-top: 1px solid var(--border);
    }
    .nav-item--mega.is-open .mob-sub {
        display: block;
    }
    .mob-sub a {
        display: block;
        padding: 12px 24px;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
        text-align: center;
        transition: color 0.2s;
    }
    .mob-sub a:last-child { border-bottom: none; }
    .mob-sub a:hover { color: var(--accent); }

    /* Home */
    .story-grid { grid-template-columns: 1fr; }
    .story-images { max-width: 500px; }
    .commitment-grid { grid-template-columns: 1fr; }
    .commitment-images { max-width: 500px; }
    .explore-grid--4col { grid-template-columns: repeat(2, 1fr); }
    .tg-home-grid { grid-template-columns: 1fr; text-align: center; }
    .tg-home-logo { display: flex; justify-content: center; }
    .tg-home-logo img { max-width: 200px; }
    .collections-home-grid { grid-template-columns: 1fr; }
    .roomvo-grid { grid-template-columns: 1fr; }
    .roomvo-video-wrap { max-width: 500px; }
    .quote-mark { display: none; }
    .tagline-inner { flex-direction: column; gap: 10px; }
    .tagline-logo { height: 32px; }

    /* Discover */
    .disc-grid { grid-template-columns: 1fr; }
    .disc-img-wrap { max-width: 400px; }
    .disc-img-wrap--right { margin-left: 0; }
    .discover-hero-content { padding-left: var(--pad); }

    /* Roomvo */
    .rv-hero-content { margin-left: 0; }
    .rv-steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    /* TG Technology */
    .tg-video-grid { grid-template-columns: 1fr; }
    .tg-hero-title-row { flex-direction: column; gap: 8px; }

    /* Collections & Products */
    .prod-layout { grid-template-columns: 1fr; }
    .prod-right { position: static; }
    .prod-related-grid { grid-template-columns: repeat(2, 1fr); }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .col-type-grid { grid-template-columns: repeat(2, 1fr); }
    .col-product-grid { grid-template-columns: repeat(2, 1fr); }

    /* Projects */
    .proj-hero-content { margin-left: 0; }
    .proj-row { grid-template-columns: 1fr; }
    .proj-row--reverse { grid-template-columns: 1fr; }
    .proj-row--reverse .proj-collage { order: -1; }
    .proj-video-section { min-height: 300px; }

    /* Contact */
    .contact-hero-content { margin-left: 0; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-map-grid { grid-template-columns: 1fr; }
    .contact-map-grid--reverse { direction: ltr; }
    .cf-row { grid-template-columns: 1fr; }

    /* Catalogue */
    .cat-hero-content { margin-left: 0; }
    .cat-intro-grid { grid-template-columns: 1fr; }
    .cat-cards-track { grid-template-columns: repeat(2, 1fr); }
    .cat-cards-wrap--carousel .cat-card { min-width: calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); }

    /* Warranty */
    .warranty-hero-content { margin-left: 0; }
    .warranty-grid { grid-template-columns: 1fr; }
    .warranty-pantone-grid { grid-template-columns: repeat(2, 1fr); }

    /* Videos */
    .vid-grid { grid-template-columns: repeat(2, 1fr); }
    .vid-tabs { flex-direction: column; border-radius: 12px; width: 100%; }
    .vid-tab { text-align: center; padding: 10px 20px; font-size: 13px; }

    /* Accessories */
    .acc-grid { grid-template-columns: repeat(2, 1fr); }
    .acc-filter-toggle { flex-wrap: wrap; border-radius: 12px; width: 100%; justify-content: center; }
    .acc-filter-btn { padding: 8px 18px; font-size: 12px; }
}
@media (max-width: 600px) {
    .collections-home-grid { grid-template-columns: 1fr; }
    .quote-banner-inner { padding: 40px var(--pad); }
    .discover-hero { height: 300px; }
    .disc-quote-inner { padding: 40px var(--pad); min-height: 240px; }
    .rv-hero { min-height: 400px; }
}

/* ══════════════════════════════════════════════════════
   TG® TECHNOLOGY PAGE v2
══════════════════════════════════════════════════════ */

.tg-hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.tg-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn-outline--white {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline--white:hover {
    border-color: #fff;
    color: #fff;
}

/* Pillars */
.tg-pillars {
    background: var(--bg);
    padding: 30px 0;
    text-align: center;
}
.tg-pillars-eyebrow {
    font-family: var(--font);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}
.tg-pillars-body {
    max-width: 680px;
    margin: 20px auto 48px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}
.tg-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.tg-pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(107,190,192,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.tg-pillar-title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.tg-pillar-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Tech section intro (TRUEGROUT / TRUEGROOVE) */
.tg-tech-section {
    background: #fff;
    padding: 30px 0;
    text-align: center;
}
.tg-tech-section--alt {
    background: var(--bg);
}
.tg-badge {
    display: inline-block;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    margin-bottom: 24px;
}
.tg-badge--grout {
    background: rgba(107,190,192,0.1);
    color: var(--accent);
}
.tg-badge--groove {
    background: rgba(45,45,45,0.06);
    color: var(--text);
}
.tg-tech-intro {
    max-width: 720px;
    margin: 20px auto 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Features (video above, 2-col lists below) */
.tg-features-section {
    background: #fff;
    padding: 30px 0;
}
.tg-features-section--alt {
    background: var(--bg);
}
.tg-features-video-wrap {
    max-width: 800px;
    margin: 0 auto 48px;
}
.tg-features-video-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: center;
}
.tg-features-video-wrap .tg-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.tg-features-video-wrap .tg-video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.tg-video-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.tg-video-pair .tg-video-embed {
    border-radius: 12px;
}
.tg-video-pair .tg-video-embed video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.tg-features-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
}
.tg-features-block--full {
    grid-column: 1 / -1;
}
.tg-features-lists {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.tg-features-heading {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.tg-features-dl {
    margin: 0;
}
.tg-features-dl dt {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-top: 12px;
}
.tg-features-dl dd {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 4px 0 0 0;
}
.tg-features-footnote {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
}

/* Shield band */
.tg-shield-band {
    background: var(--teal);
    padding: 30px 0;
    text-align: center;
}
.tg-shield-heading-lg {
    font-family: var(--font);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.tg-shield-title {
    font-family: var(--font);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 48px;
}
.tg-shield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.tg-shield-item h5 {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 16px 0 8px;
}
.tg-shield-item p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* Collections section */
.tg-collections {
    background: var(--bg);
    padding: 30px 0;
    text-align: center;
}
.tg-col-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.tg-col-group {
    margin-top: 48px;
    text-align: left;
}
.tg-col-group-label {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.tg-col-carousel {
    position: relative;
}
.tg-col-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.tg-col-track::-webkit-scrollbar { display: none; }
.tg-col-row {
    display: flex;
    gap: 24px;
}
.tg-col-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tg-col-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.tg-col-card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f4f4f2;
}
.tg-col-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.tg-col-card:hover .tg-col-card-img img {
    transform: scale(1.05);
}
.tg-col-card-name {
    display: block;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}
.tg-col-card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--teal);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.25s;
}
.tg-col-card:hover .tg-col-card-hover {
    transform: translateY(0);
}
.tg-col-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.tg-col-arrow:hover { background: var(--bg); }
.tg-col-arrow--left { left: -16px; }
.tg-col-arrow--right { right: -16px; }

/* Closing CTA */
.tg-closing {
    background: #80bcbf;
    padding: 30px 0;
    text-align: center;
}
.tg-closing-eyebrow {
    font-family: var(--font);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 12px;
}
.tg-closing-title {
    font-family: var(--font);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.tg-closing-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 32px;
}
.tg-closing-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.tg-closing-ctas .btn-teal {
    background: #fff;
    color: #2d2d2d;
}
.tg-closing-ctas .btn-teal:hover {
    background: #f4f4f2;
}
.tg-closing-ctas .btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.tg-closing-ctas .btn-outline:hover {
    border-color: #fff;
}

/* TG page responsive */
@media (max-width: 900px) {
    .tg-pillars-grid { grid-template-columns: 1fr; gap: 32px; }
    .tg-features-cols { grid-template-columns: 1fr; }
    .tg-video-pair { grid-template-columns: 1fr; }
    .tg-shield-grid { grid-template-columns: 1fr; gap: 32px; }
    .tg-col-card { flex: 0 0 calc(50% - 12px); }
    .tg-col-arrow { display: none; }
    .tg-hero-ctas { justify-content: center; }
}
@media (max-width: 600px) {
    .tg-col-card { flex: 0 0 75%; }
    .tg-closing-ctas { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════
   INSTALLATION INSTRUCTIONS ACCORDION
══════════════════════════════════════════════════════ */
.inst-accordion {
    margin-top: 24px;
}
.inst-acc-item {
    border-bottom: 1px solid var(--border);
}
.inst-acc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
}
.inst-acc-title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
}
.inst-acc-count {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 10px;
    padding: 2px 8px;
    min-width: 20px;
    text-align: center;
}
.inst-acc-arrow {
    transition: transform 0.25s;
    color: var(--text-muted);
}
.inst-acc-item.is-open .inst-acc-arrow {
    transform: rotate(180deg);
}
.inst-acc-body {
    display: none;
    padding: 0 0 16px 0;
}
.inst-acc-item.is-open .inst-acc-body {
    display: block;
}
.inst-doc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin: 4px 0;
    background: var(--bg);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.inst-doc-link:hover {
    background: var(--accent);
    color: #fff;
}
.inst-doc-link:hover svg {
    stroke: #fff;
}
.inst-doc-link svg {
    flex-shrink: 0;
    stroke: var(--accent);
}
.inst-doc-link span:first-of-type {
    flex: 1;
}
.inst-doc-dl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}
.inst-doc-link:hover .inst-doc-dl {
    color: rgba(255,255,255,0.8);
}

/* Standalone docs section */
.inst-standalone {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}
.inst-standalone-heading {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* Collection product tags */
.col-product-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 0 12px 4px;
}
.col-product-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}
.prod-right .col-product-tags {
    padding: 0;
    margin-bottom: 8px;
}
.prod-right .col-product-tag {
    font-size: 11px;
    padding: 4px 12px;
    background: #1e1e1e !important;
    color: #fff;
}

/* Product page accessories carousel */
.prod-accessories {
    padding: 50px 0 80px;
    background: #f4f8f9;
}
.prod-acc-heading {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.prod-acc-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.prod-acc-track::-webkit-scrollbar { display: none; }
.prod-acc-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.prod-acc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.prod-acc-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
}
.prod-acc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}
.prod-acc-name {
    display: block;
    padding: 12px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .prod-acc-card { flex: 0 0 160px; }
}

/* Inline specs on product page */
.prod-specs-inline {
    margin: 20px 0 24px;
}
.prod-specs-inline-heading {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--text);
}
.prod-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prod-specs-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    gap: 16px;
}
.prod-specs-list-label {
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}
.prod-specs-list-value {
    color: var(--text-muted);
    text-align: right;
}
.prod-specs-inline .prod-spec-download {
    margin-top: 16px;
}
.prod-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.prod-btn-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.prod-btn-row a:hover {
    opacity: 0.85;
}
.prod-btn--black {
    background: #1e1e1e;
    color: #fff;
}
.prod-btn--blue {
    background: #80bcbf;
    color: #fff;
}

/* Home page collections carousel */
.home-col-carousel {
    position: relative;
    padding: 40px 0 60px;
    overflow: visible;
}
.home-col-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.home-col-track::-webkit-scrollbar { display: none; }
.home-col-track .explore-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
}
.home-col-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.home-col-arrow:hover { background: var(--bg); }
.home-col-arrow--left { left: -22px; }
.home-col-arrow--right { right: -22px; }
@media (max-width: 900px) {
    .home-col-track .explore-card { flex: 0 0 calc(50% - 12px); }
    .home-col-arrow { display: none; }
}
@media (max-width: 600px) {
    .home-col-track .explore-card { flex: 0 0 75%; }
}

/* Long spec values wrap below label instead of centering inline */
.prod-specs-list-item {
    flex-wrap: wrap;
}
.prod-specs-list-item .prod-specs-list-value {
    text-align: left !important;
}
