/* =========================================
   LAYOUT
========================================= */

.page-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.main-content {
    min-width: 0;
}

section {
    margin-top: 56px;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* LOGO */

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #000;
    font-family: Arial, sans-serif;
    letter-spacing: -.03em;
}

.logo-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: .01em;
}

.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* DESKTOP MENU */

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .2s, background .2s;
    letter-spacing: .01em;
}

.nav-desktop a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.nav-desktop a.active {
    color: var(--accent);
}

/* =========================================
   MOBILE MENU
========================================= */



/* =========================================
   HERO
========================================= */



/* =========================================
   SECTION LABELS
========================================= */



/* =========================================
   TABLE OF CONTENTS (TOC)
========================================= */



/* =========================================
   SIDEBAR
========================================= */



/* =========================================
   CARDS
========================================= */



/* =========================================
   FEATURE CARDS
========================================= */



/* =========================================
   SPEC GRID
========================================= */



/* =========================================
   PERFORMANCE
========================================= */



/* =========================================
   BUILD QUALITY
========================================= */



/* =========================================
   COMPARISON TABLE
========================================= */



/* =========================================
   PROS & CONS
========================================= */



/* =========================================
   VERDICT
========================================= */



/* =========================================
   WARRANTY
========================================= */



/* =========================================
   FAQ
========================================= */



/* =========================================
   GALLERY
========================================= */



/* =========================================
   REVIEWS
========================================= */



/* =========================================
   BUY BUTTONS
========================================= */



/* =========================================
   POPUPS
========================================= */



/* =========================================
   CTA SECTIONS
========================================= */



/* =========================================
   DIVIDERS
========================================= */

.divider {
    height: 1px;
    background: var(--border);
    margin: 40px 0;
}


/* =========================================
   CALLOUTS
========================================= */

.callout {
    background: rgba(240,165,0,.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: 18px;
    color: #d0c090;
    margin: 18px 0;
}


/* =========================================
   FOOTER
========================================= */