/* =====================================================================
   DTS Aviation — Bespoke Theme
   Reference: dtsaviation.com
   Palette: navy #0055a6, burgundy #be151b, white, cool grays
   ===================================================================== */

:root {
    /* DTS tokens */
    --dts-navy: #0055a6;
    --dts-navy-dark: #003c75;
    --dts-navy-deep: #012a50;
    --dts-burgundy: #be151b;
    --dts-burgundy-dark: #8d0e13;
    --dts-ink: #272626;
    --dts-slate: #3a4454;
    --dts-muted: #6b7280;
    --dts-line: #e5e7eb;
    --dts-cloud: #f4f5f7;
    --dts-paper: #fafbfc;
    --dts-white: #ffffff;

    /* Framework overrides — so fallback sections use DTS palette */
    --color-primary: #0055a6;
    --color-accent: #be151b;
    --color-secondary: #003c75;
    --color-dark: #012a50;
    --color-dark-grey: #012a50;
    --color-text: #272626;
    --color-text-muted: #6b7280;

    /* Typography */
    --dts-font-body: 'Figtree', 'Inter', system-ui, -apple-system, sans-serif;
    --dts-font-heading: 'Inter', 'Figtree', system-ui, -apple-system, sans-serif;
    --font-body: 'Figtree', 'Inter', system-ui, sans-serif;
    --font-heading: 'Inter', 'Figtree', system-ui, sans-serif;

    /* Header offset */
    --dts-header-h: 76px;
}

/* ───────────────────────── Base ───────────────────────── */
html, body { background: var(--dts-white); }

.dts-body {
    font-family: var(--dts-font-body);
    color: var(--dts-ink);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--dts-header-h);
}

.dts-body h1, .dts-body h2, .dts-body h3, .dts-body h4, .dts-body h5, .dts-body h6 {
    font-family: var(--dts-font-heading);
    color: var(--dts-navy-deep);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.dts-body h1 { font-size: clamp(2rem, 4.2vw, 2.75rem); font-weight: 800; }
.dts-body h2 { font-size: clamp(1.65rem, 3vw, 2.125rem); font-weight: 700; }
.dts-body h3 { font-size: 1.25rem; font-weight: 700; }

.dts-body a { color: var(--dts-navy); text-decoration: none; }
.dts-body a:hover { color: var(--dts-burgundy); }

/* Force white text on buttons and links inside dark/colored contexts */
.dts-body .dts-btn { color: #fff; }
.dts-body .dts-btn:hover { color: #fff; }
.dts-body .dts-btn-outline { color: #fff; }
.dts-body .dts-btn-outline:hover { color: var(--dts-navy-deep); }
.dts-body .dts-cta-btn { color: #fff; }
.dts-body .dts-cta-btn:hover { color: #fff; }
.dts-body .dts-hero a { color: #fff; }
.dts-body .dts-cta-banner a { color: #fff; }
.dts-body .dts-footer a { color: rgba(255,255,255,0.7); }
.dts-body .dts-footer a:hover { color: #fff; }
.dts-body .dts-drawer a { color: rgba(255,255,255,0.9); }
.dts-body .dts-drawer a:hover { color: #fff; }
.dts-body .dts-notif-bar a { color: #fff; }

.dts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ───────────────────────── Notification Bar ───────────────────────── */
.dts-notif-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    background: var(--dts-burgundy);
    color: var(--dts-white);
    font-size: 0.85rem;
}
.dts-notif-bar .dts-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 10px; padding-bottom: 10px; }
.dts-notif-bar p { margin: 0; font-weight: 500; }
.dts-notif-bar a { color: #fff; text-decoration: underline; }
.dts-notif-bar a:hover { color: #ffe; }
.dts-notif-close { background: transparent; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 8px; }

.dts-body:has(.dts-notif-bar) { padding-top: calc(var(--dts-header-h) + 40px); }
.dts-body:has(.dts-notif-bar) .dts-header { top: 40px; }

/* ───────────────────────── Header ───────────────────────── */
.dts-header {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--dts-line);
    box-shadow: 0 1px 0 rgba(12, 30, 54, 0.04);
    transition: box-shadow 0.2s ease;
}
.dts-header.is-scrolled { box-shadow: 0 4px 18px rgba(12, 30, 54, 0.08); }

/* Desktop: single row */
.dts-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; width: 100%; height: var(--dts-header-h);
}

/* Logo: icon + text block */
.dts-logo { flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.dts-logo-icon { display: block; height: 44px; width: auto; object-fit: contain; }
.dts-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.dts-logo-name { font-family: var(--dts-font-heading); font-weight: 800; font-size: 0.95rem; color: var(--dts-navy-deep); letter-spacing: -0.01em; white-space: nowrap; }
.dts-logo-tag { font-family: var(--dts-font-body); font-weight: 500; font-size: 0.68rem; color: var(--dts-muted); letter-spacing: 0.01em; margin-top: 1px; white-space: nowrap; }

/* Desktop nav */
.dts-nav { flex: 1; display: flex; justify-content: center; }
.dts-nav-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.dts-nav-item { position: relative; }
.dts-nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; color: var(--dts-ink); font-family: var(--dts-font-heading); font-weight: 500; font-size: 0.88rem; border-radius: 4px; transition: color 0.15s, background 0.15s; text-decoration: none; }
.dts-nav-link:hover { color: var(--dts-navy); background: var(--dts-cloud); }
.dts-chevron { transition: transform 0.2s; }
.dts-has-dropdown:hover > .dts-nav-link .dts-chevron { transform: rotate(180deg); }

/* Desktop dropdown */
.dts-dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 240px; background: #fff;
    border: 1px solid var(--dts-line); border-top: 3px solid var(--dts-burgundy);
    box-shadow: 0 10px 30px rgba(12, 30, 54, 0.12);
    list-style: none; margin: 0; padding: 6px 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.18s ease; z-index: 100;
}
.dts-has-dropdown:hover > .dts-dropdown,
.dts-has-dropdown:focus-within > .dts-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dts-dropdown li { display: block; }
.dts-dropdown a { display: block; padding: 10px 20px; color: var(--dts-slate); font-size: 0.88rem; font-weight: 500; text-decoration: none; }
.dts-dropdown a:hover { background: var(--dts-cloud); color: var(--dts-navy); }

/* Desktop right actions */
.dts-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dts-desktop-only { }
.dts-header-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--dts-ink); font-family: var(--dts-font-heading); font-weight: 600; font-size: 0.82rem; white-space: nowrap; text-decoration: none; transition: color 0.15s; }
.dts-header-phone svg { color: var(--dts-navy); flex-shrink: 0; }
.dts-header-phone:hover { color: var(--dts-navy); }
.dts-cta-btn { display: inline-flex; align-items: center; padding: 9px 18px; background: var(--dts-burgundy); color: #fff; font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px; transition: background 0.15s; text-decoration: none; }
.dts-cta-btn:hover { background: var(--dts-burgundy-dark); color: #fff; }

/* ── Mobile Row 2 toolbar (hidden on desktop, shown on mobile) ── */
.dts-mobile-bar { display: none; }
.dts-mobile-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }

/* Red "Menu" button + hamburger icon */
.dts-mobile-toggle {
    display: none; /* shown via media query */
    background: transparent; border: 0; cursor: pointer;
    align-items: center; gap: 8px; padding: 0;
    color: var(--dts-burgundy);
    font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.dts-hamburger-icon { flex-shrink: 0; color: var(--dts-burgundy); }
.dts-menu-label { line-height: 1; }

/* Mobile contact bar (right side of Row 2) */
.dts-mobile-bar-contact { display: flex; align-items: center; gap: 14px; }
.dts-mobile-bar-link { display: inline-flex; align-items: center; gap: 6px; color: var(--dts-slate); font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.dts-mobile-bar-link svg { flex-shrink: 0; }
.dts-mobile-bar-link:hover { color: var(--dts-navy); }

/* ───────────────────────── Mobile Drawer (slide from left) ───────────────────────── */
.dts-drawer-backdrop {
    position: fixed; inset: 0;
    z-index: 1999;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dts-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.dts-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 2000;
    background: var(--dts-navy-deep);
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.dts-drawer.is-open { transform: translateX(0); }

.dts-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.dts-drawer-logo { display: inline-flex; align-items: center; }
.dts-drawer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.dts-drawer-logo-text { font-family: var(--dts-font-heading); font-weight: 800; font-size: 1.1rem; color: #fff; }
.dts-drawer-close {
    background: transparent; border: 0; color: rgba(255,255,255,0.6);
    font-size: 1.6rem; cursor: pointer; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; transition: all 0.15s;
}
.dts-drawer-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Nav links */
.dts-drawer-nav { flex: 1; padding: 8px 0; }
.dts-drawer-nav > ul { list-style: none; margin: 0; padding: 0; }
.dts-drawer-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.dts-drawer-link-row { display: flex; align-items: center; }
.dts-drawer-link-row a {
    flex: 1; display: block; padding: 14px 20px;
    color: rgba(255,255,255,0.9); font-family: var(--dts-font-heading);
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.dts-drawer-link-row a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dts-drawer-expand {
    background: transparent; border: 0; color: rgba(255,255,255,0.5);
    cursor: pointer; width: 44px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.dts-drawer-expand:hover { color: #fff; }
.dts-drawer-expand svg { transition: transform 0.25s ease; }
.dts-drawer-has-sub.is-expanded > .dts-drawer-link-row .dts-drawer-expand svg { transform: rotate(180deg); }

/* Subnav */
.dts-drawer-subnav {
    list-style: none; margin: 0; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.15);
}
.dts-drawer-has-sub.is-expanded > .dts-drawer-subnav { max-height: 400px; }
.dts-drawer-subnav li a {
    display: block; padding: 10px 20px 10px 36px;
    color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; transition: color 0.15s, background 0.15s;
}
.dts-drawer-subnav li a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* Footer area: phone, email, CTA */
.dts-drawer-footer {
    padding: 20px; flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 10px;
}
.dts-drawer-contact-link {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; transition: color 0.15s;
}
.dts-drawer-contact-link svg { color: var(--dts-burgundy); flex-shrink: 0; }
.dts-drawer-contact-link:hover { color: #fff; }

/* ───────────────────────── Hero ───────────────────────── */
.dts-hero {
    position: relative;
    min-height: clamp(520px, 72vh, 720px);
    background: var(--dts-navy-deep);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.dts-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dts-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(1, 42, 80, 0.88) 0%, rgba(1, 42, 80, 0.65) 50%, rgba(1, 42, 80, 0.40) 100%);
}
.dts-hero-inner { position: relative; z-index: 2; padding: 80px 0; width: 100%; }
.dts-hero-kicker { display: inline-block; background: var(--dts-burgundy); color: #fff; font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; margin-bottom: 24px; }
.dts-hero .dts-hero-title { color: #ffffff; font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 20px; max-width: 780px; }
.dts-hero-title span { color: #ffffff; }
.dts-hero-sub { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.6; color: #ffffff; max-width: 640px; margin: 0 0 36px; font-weight: 400; opacity: 0.92; }
.dts-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.dts-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; border: 2px solid transparent; cursor: pointer; transition: all 0.18s ease; line-height: 1; }
.dts-btn-primary { background: var(--dts-burgundy); color: #fff; border-color: var(--dts-burgundy); }
.dts-btn-primary:hover { background: var(--dts-burgundy-dark); border-color: var(--dts-burgundy-dark); color: #fff; transform: translateY(-2px); }
.dts-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.dts-btn-outline:hover { background: #fff; color: var(--dts-navy-deep); border-color: #fff; }
.dts-btn-navy { background: var(--dts-navy); color: #fff; border-color: var(--dts-navy); }
.dts-btn-navy:hover { background: var(--dts-navy-dark); border-color: var(--dts-navy-dark); color: #fff; transform: translateY(-2px); }

.dts-hero-badges { display: flex; gap: 32px; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.dts-hero-badge { display: flex; flex-direction: column; gap: 2px; }
.dts-hero-badge-num { font-family: var(--dts-font-heading); font-weight: 800; font-size: 2rem; color: #ffffff; line-height: 1; }
.dts-hero-badge-label { font-size: 0.78rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ───────────────────────── Section base ───────────────────────── */
.dts-section { padding: clamp(60px, 8vw, 100px) 0; }
.dts-section--cloud { background: var(--dts-cloud); }
.dts-section--navy { background: var(--dts-navy-deep); color: #fff; }
.dts-body .dts-section--navy h2, .dts-body .dts-section--navy h3 { color: #ffffff; }

.dts-section-header { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.dts-body .dts-section-kicker { display: inline-block; font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dts-burgundy); margin-bottom: 12px; }
.dts-section-title { margin: 0 0 14px; }
.dts-section-intro { color: var(--dts-muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }
.dts-section--navy .dts-section-intro { color: rgba(255,255,255,0.75); }

/* ───────────────────────── Services/Feature Cards ───────────────────────── */
.dts-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dts-feature-card {
    background: #fff;
    border: 1px solid var(--dts-line);
    border-radius: 6px;
    padding: 32px 28px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.dts-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--dts-burgundy); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.dts-feature-card:hover::before { transform: scaleX(1); }
.dts-feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(12, 30, 54, 0.09); border-color: transparent; }
.dts-feature-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--dts-cloud); border-radius: 4px; color: var(--dts-navy); margin-bottom: 20px; }
.dts-feature-card:hover .dts-feature-icon { background: var(--dts-navy); color: #fff; }
.dts-feature-title { margin: 0 0 10px; font-size: 1.15rem; color: var(--dts-navy-deep); }
.dts-feature-text { color: var(--dts-muted); font-size: 0.93rem; line-height: 1.65; margin: 0; }
.dts-body .dts-feature-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dts-burgundy); }

/* ───────────────────────── Stat strip ───────────────────────── */
.dts-stat-strip { background: var(--dts-navy); padding: 56px 0; color: #fff; }
.dts-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.dts-stat-num { font-family: var(--dts-font-heading); font-weight: 900; font-size: clamp(2.25rem, 4vw, 3.25rem); color: #fff; line-height: 1; margin-bottom: 8px; }
.dts-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ───────────────────────── CTA Banner ───────────────────────── */
.dts-cta-banner { background: var(--dts-navy-deep); color: #fff; padding: clamp(60px, 8vw, 88px) 0; position: relative; overflow: hidden; }
.dts-cta-banner::after { content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(190,21,27,0.18) 0%, transparent 70%); pointer-events: none; }
.dts-cta-banner-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.dts-body .dts-cta-banner h2 { color: #ffffff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 16px; }
.dts-body .dts-cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0 0 32px; }

/* ───────────────────────── Footer ───────────────────────── */
.dts-footer { background: var(--dts-navy-deep); color: #c4d6e8; padding: 0; margin-top: auto; }
.dts-footer-accent { height: 3px; background: linear-gradient(90deg, var(--dts-burgundy) 0%, var(--dts-navy) 50%, var(--dts-burgundy) 100%); }
.dts-footer .dts-container { padding-top: 56px; padding-bottom: 28px; }
.dts-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.dts-footer-logo { max-height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.dts-footer-logotext { font-family: var(--dts-font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.dts-footer-tag { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.7); margin: 0 0 20px; max-width: 360px; }
.dts-footer-social { display: flex; gap: 10px; }
.dts-footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 4px; background: rgba(255,255,255,0.08); color: #fff; transition: all 0.18s; }
.dts-footer-social a:hover { background: var(--dts-burgundy); color: #fff; }

.dts-body .dts-footer-heading { font-family: var(--dts-font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff; margin: 0 0 20px; }
.dts-footer-links { list-style: none; padding: 0; margin: 0; }
.dts-footer-links li { margin-bottom: 10px; }
.dts-footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.15s; }
.dts-footer-links a:hover { color: #fff; }
.dts-footer-contact { list-style: none; padding: 0; margin: 0; }
.dts-footer-contact li { margin-bottom: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.dts-footer-contact a { color: rgba(255,255,255,0.85); }
.dts-footer-contact a:hover { color: #fff; }
.dts-footer-label { display: block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2px; font-weight: 600; }

.dts-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.dts-footer-bottom p { margin: 0; }
.dts-footer-credit a { color: rgba(255,255,255,0.7); }
.dts-footer-credit a:hover { color: #fff; }

/* ───────────────────────── Framework Inner Page Overrides ───────────────────────── */
/* Inner hero banner — let the image show, light dark overlay for contrast */
.dts-body .inner-hero-banner {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
}
.dts-body .inner-hero-overlay {
    background: rgba(0, 0, 0, 0.25);
}
/* h1 inside a navy rectangle box, white text */
.dts-body .inner-hero-overlay h1 {
    color: #ffffff;
    background: var(--dts-navy);
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--dts-font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    letter-spacing: 0.01em;
    line-height: 1.3;
}
/* Inner page content area */
.dts-body .inner-content { font-family: var(--dts-font-body); color: var(--dts-ink); }
.dts-body .inner-content h1,
.dts-body .inner-content h2,
.dts-body .inner-content h3 { color: var(--dts-navy-deep); }
.dts-body .inner-content a { color: var(--dts-navy); }
.dts-body .inner-content a:hover { color: var(--dts-burgundy); }

/* Framework buttons on inner pages */
.dts-body .btn-primary { background: var(--dts-burgundy); color: #fff; border-color: var(--dts-burgundy); }
.dts-body .btn-primary:hover { background: var(--dts-burgundy-dark); color: #fff; }
.dts-body .btn-outline { border-color: var(--dts-navy); color: var(--dts-navy); }
.dts-body .btn-outline:hover { background: var(--dts-navy); color: #fff; }

/* Framework section headings inside dark backgrounds */
.dts-body .cta-section h2,
.dts-body .cta-centered h2 { color: inherit; }

/* Framework callout cards — override body heading colors */
.dts-body .callout-title { color: var(--dts-navy-deep); }
.dts-body .callout-desc { color: var(--dts-muted); }

/* ───────────────────────── Reveal animation ───────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ───────────────────────── Shop page styling (framework Shop Mendol) ───────────────────────── */
.is-shop-page main { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; background: #fff; }
.is-shop-page h1 { color: var(--dts-navy-deep); font-family: var(--dts-font-heading); font-weight: 800; font-size: 2.25rem !important; border-bottom: 3px solid var(--dts-burgundy); padding-bottom: 16px; margin-bottom: 32px !important; display: inline-block; }
.is-shop-page main h1 + div { margin-bottom: 32px !important; }

/* Breadcrumb (product detail) — "Shop › Name" */
.is-shop-page main > div[style*="font-size:.85rem"]:first-child { font-size: 0.8rem !important; color: var(--dts-muted) !important; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 24px !important; padding-bottom: 16px; border-bottom: 1px solid var(--dts-line); }
.is-shop-page main > div[style*="font-size:.85rem"]:first-child a { color: var(--dts-navy) !important; font-weight: 700; }
.is-shop-page main > div[style*="font-size:.85rem"]:first-child a:hover { color: var(--dts-burgundy) !important; }

/* Shop category chips — restyle the inline-styled filter buttons */
.is-shop-page a[href*="category="],
.is-shop-page a[href*="shop.index"]:not([href*="/"]) { transition: all 0.15s; }
.is-shop-page main > div[style*="display:flex"][style*="flex-wrap:wrap"]:first-of-type a {
    background: #fff !important;
    color: var(--dts-slate) !important;
    border: 1px solid var(--dts-line);
    font-family: var(--dts-font-heading);
}
.is-shop-page main > div[style*="display:flex"][style*="flex-wrap:wrap"]:first-of-type a[style*="background:#dc5234"],
.is-shop-page main > div[style*="display:flex"][style*="flex-wrap:wrap"]:first-of-type a[style*="background:var(--color-primary"] {
    background: var(--dts-navy) !important;
    color: #fff !important;
    border-color: var(--dts-navy);
}

/* Shop product card grid — target inline-styled grid */
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] > div {
    background: #fff !important;
    border: 1px solid var(--dts-line) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden !important;
}
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] > div::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--dts-burgundy);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
}
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] > div:hover::before { transform: scaleX(1); }
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(12, 30, 54, 0.09) !important;
    border-color: transparent !important;
}

/* Product card image background */
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] img[style*="height:200px"],
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] > div > a > div[style*="height:200px"] {
    background: var(--dts-cloud) !important;
}

/* Product card title + price */
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] h3 { font-family: var(--dts-font-heading); font-weight: 700; font-size: 1.05rem !important; }
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] h3 a { color: var(--dts-navy-deep) !important; }
.is-shop-page div[style*="grid-template-columns:repeat(auto-fill"] p[style*="color:#dc5234"] { color: var(--dts-burgundy) !important; font-family: var(--dts-font-heading); font-weight: 800 !important; font-size: 1.2rem !important; }

/* Shop buttons — unify with theme */
.is-shop-page .btn-primary, .is-shop-page .btn-full, .is-shop-page button[type="submit"]:not(.dts-btn):not(.dts-notif-close):not(.dts-mobile-close):not(.dts-mobile-toggle) {
    background: var(--dts-navy) !important;
    color: #fff !important;
    border: 2px solid var(--dts-navy) !important;
    border-radius: 3px !important;
    font-family: var(--dts-font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 20px !important;
    cursor: pointer;
    transition: all 0.18s ease;
    width: 100%;
}
.is-shop-page .btn-primary:hover:not(:disabled), .is-shop-page button[type="submit"]:hover:not(:disabled) { background: var(--dts-burgundy) !important; border-color: var(--dts-burgundy) !important; transform: translateY(-1px); }
.is-shop-page button:disabled { background: #9ca3af !important; border-color: #9ca3af !important; cursor: not-allowed; }

/* Product detail page — recolor orange (#dc5234) accents to burgundy */
.is-shop-page span[style*="color:#dc5234"],
.is-shop-page div[style*="color:#dc5234"] { color: var(--dts-burgundy) !important; }

/* Variant / option selection buttons */
.is-shop-page .variant-btn, .is-shop-page .option-btn { font-family: var(--dts-font-heading); transition: all 0.15s; }
.is-shop-page .variant-btn-active, .is-shop-page .option-btn-active,
.is-shop-page span[style*="background:#dc5234"] { background: var(--dts-navy) !important; border-color: var(--dts-navy) !important; color: #fff !important; }
.is-shop-page .variant-btn:not(.variant-btn-active), .is-shop-page .option-btn:not(.option-btn-active) { border-color: var(--dts-line) !important; color: var(--dts-slate) !important; background: #fff !important; }

/* Variant inline borders (inline style #dc5234) */
.is-shop-page span[style*="border:2px solid #dc5234"],
.is-shop-page span[style*="border:2px solid rgb(220, 82, 52)"] { border-color: var(--dts-navy) !important; }

/* Product detail h1 (not wrapped in border) + price */
.is-shop-page main > div[style*="grid-template-columns:1fr 1fr"] h1 { border: 0 !important; padding: 0 !important; font-size: 1.85rem !important; margin-bottom: 14px !important; }
.is-shop-page #display-price { color: var(--dts-burgundy) !important; font-family: var(--dts-font-heading); font-weight: 800; font-size: 1.8rem !important; }

/* Cart page — sidebar summary box */
.is-shop-page div[style*="grid-template-columns:1fr 340px"] > div:last-child { background: var(--dts-cloud) !important; border: 1px solid var(--dts-line); border-top: 3px solid var(--dts-burgundy); border-radius: 6px !important; box-shadow: none !important; }

/* Cart items */
.is-shop-page div[style*="grid-template-columns:1fr 340px"] > div:first-child > div[style*="display:flex"][style*="padding:16px"][style*="background:#fff"] { background: #fff !important; border: 1px solid var(--dts-line) !important; box-shadow: none !important; border-radius: 6px !important; }

/* Cart empty state link */
.is-shop-page main p[style*="color:#999"] a[style*="color:#dc5234"] { color: var(--dts-navy) !important; font-weight: 700; text-decoration: underline; }

/* Quantity controls */
.is-shop-page button[name="quantity"] { background: #fff !important; border: 1px solid var(--dts-line) !important; border-radius: 3px !important; font-weight: 700; color: var(--dts-navy); width: 28px !important; height: 28px !important; padding: 0 !important; text-transform: none !important; font-size: 1rem !important; letter-spacing: 0 !important; }
.is-shop-page button[name="quantity"]:hover { background: var(--dts-navy) !important; color: #fff !important; border-color: var(--dts-navy) !important; }

/* "Remove" text button in cart — restore to small link */
.is-shop-page button[style*="color:#c00"] { background: transparent !important; border: 0 !important; color: var(--dts-burgundy) !important; padding: 4px 8px !important; font-size: 0.78rem !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 0.04em; width: auto !important; }
.is-shop-page button[style*="color:#c00"]:hover { color: var(--dts-burgundy-dark) !important; background: transparent !important; text-decoration: underline; transform: none !important; }

/* Continue shopping link */
.is-shop-page a[href*="shop"][style*="font-size:.875rem"] { color: var(--dts-navy) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.is-shop-page a[href*="shop"][style*="font-size:.875rem"]:hover { color: var(--dts-burgundy) !important; }

/* Variant active label inner (e.g. "Select Size:") */
.is-shop-page p[style*="font-weight:600"][style*="color:#444"] { font-family: var(--dts-font-heading); color: var(--dts-slate) !important; font-size: 0.82rem !important; letter-spacing: 0.04em; text-transform: uppercase; }

/* Select dropdowns (options) */
.is-shop-page select.option-select { border: 1px solid var(--dts-line) !important; border-radius: 3px !important; padding: 10px 14px !important; font-family: var(--dts-font-body) !important; color: var(--dts-ink) !important; }
.is-shop-page select.option-select:focus { outline: 0; border-color: var(--dts-navy) !important; box-shadow: 0 0 0 3px rgba(0, 85, 166, 0.1); }

/* Small sized price labels */
.is-shop-page div[style*="font-size:.8rem"][style*="text-transform:uppercase"] { color: var(--dts-burgundy) !important; font-weight: 700 !important; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    /* Hide desktop nav + desktop actions; show mobile two-row header */
    .dts-nav { display: none; }
    .dts-desktop-only { display: none; }
    .dts-mobile-bar { display: block; border-top: 1px solid var(--dts-line); }
    .dts-mobile-toggle { display: inline-flex; }

    /* Enlarge logo for mobile Row 1 */
    .dts-header-inner { justify-content: center; }
    .dts-logo { gap: 12px; }
    .dts-logo-icon { height: 56px; }
    .dts-logo-name { font-size: 1.1rem; }
    .dts-logo-tag { font-size: 0.72rem; color: var(--dts-burgundy); font-weight: 600; letter-spacing: 0.04em; }

    .dts-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dts-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .dts-container { padding-left: 16px; padding-right: 16px; }
    .dts-logo-icon { height: 50px; }
    .dts-logo-name { font-size: 1rem; }
    .dts-hero-badges { gap: 20px; margin-top: 36px; padding-top: 24px; }
    .dts-hero-badge-num { font-size: 1.5rem; }
    .dts-hero-ctas { flex-direction: column; align-items: stretch; }
    .dts-hero-ctas .dts-btn { justify-content: center; }
    .dts-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .dts-footer-brand { grid-column: auto; }
    .dts-footer-bottom { flex-direction: column; text-align: center; }
    .is-shop-page h1 { font-size: 1.75rem !important; }

    /* Product detail — stack image above content */
    .is-shop-page main > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    /* Cart — stack items above summary */
    .is-shop-page div[style*="grid-template-columns:1fr 340px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 420px) {
    .dts-logo-icon { height: 42px; }
    .dts-logo-name { font-size: 0.88rem; }
    .dts-logo-tag { font-size: 0.65rem; }
    .dts-mobile-bar-link span { display: none; }
}
