/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --cyan: #00C9C8;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --mid-gray: #e0e0e0;
    --dark-gray: #1a1a1a;
    --border-color: #eaeaea;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1440px;
    --container-pad: 4rem;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-dark {
    background-color: var(--primary-color);
    color: #fff !important;
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    color: #fff !important;
}

.btn-light {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-cyan {
    background-color: var(--cyan);
    color: var(--primary-color);
    border-color: var(--cyan);
    font-weight: 700;
}

.btn-cyan:hover {
    background-color: #00b5b4;
    border-color: #00b5b4;
    color: #000;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-weight: 600;
}

.btn-outline-white:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-bar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-bar a:hover { opacity: 0.8; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    border-bottom: 1px solid var(--border-color);
    background: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem var(--container-pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a:hover { color: #666; }

.nav-active {
    color: #000 !important;
    font-weight: 600;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-cart { position: relative; }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.625rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.has-dropdown { position: relative; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 800px;
    max-width: 90vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    padding: 2rem;
}

.has-dropdown:hover .mega-menu,
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1.5rem;
}

.mega-menu-content {
    display: flex;
    gap: 3rem;
}

.mega-col { flex: 1; }

.mega-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mega-col ul li { margin-bottom: 0.5rem; }

.mega-col ul li a {
    color: #666;
    font-weight: 400;
    font-size: 0.875rem;
}

.mega-col ul li a:hover { color: var(--primary-color); }

.feature-col {
    background: #f9f9f9;
    padding: 1.5rem;
    text-align: center;
}

.feature-col img {
    margin-bottom: 1rem;
    max-height: 150px;
    object-fit: contain;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad) 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-logo .logo-x {
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-underline-offset: 3px;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    text-transform: none;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

.footer-socials a:hover { color: #fff; }

.footer-col h4 {
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-family: var(--font-body);
    text-transform: none;
}

.footer-col ul li a:hover { color: #fff; }

.footer-col > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: var(--font-body);
    text-transform: none;
}

.footer-newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-newsletter input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.65rem 0.85rem;
    flex: 1;
    outline: none;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter button {
    background: rgba(255,255,255,0.1);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: var(--font-body);
    padding: 0 1rem;
    transition: background 0.2s ease;
}

.footer-newsletter button:hover { background: rgba(255,255,255,0.2); }

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem var(--container-pad);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    font-family: var(--font-body);
    text-transform: none;
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
    position: relative;
    background: url('../images/banner-bg.png') center right/cover no-repeat;
    background-color: #0d0d0d;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 7rem 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.hero-content { max-width: 540px; }

.hero-accent-line {
    width: 48px;
    height: 3px;
    background: var(--cyan);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: #fff;
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 360px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ============================================================
   HOMEPAGE — CATEGORIES
   ============================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.category-card {
    padding: 5rem var(--container-pad);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 460px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.category-card p { margin-bottom: 1.75rem; font-size: 0.95rem; }

.dark-card {
    background-color: #111;
    color: var(--secondary-color);
}

.dark-card::before {
    background: linear-gradient(to right, rgba(10,10,10,0.88) 30%, rgba(10,10,10,0.05) 100%);
}

.dark-card h2 { color: var(--secondary-color); }
.dark-card p { color: rgba(255,255,255,0.65); }

.light-card { background-color: #f4f4f4; }

.light-card::before {
    background: linear-gradient(to right, rgba(244,244,244,0.92) 35%, rgba(244,244,244,0.05) 100%);
}

.category-image {
    position: absolute;
    top: 0; right: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.explore-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.explore-link:hover { gap: 0.7rem; }
.explore-link-dark { color: var(--primary-color); }

/* ============================================================
   HOMEPAGE — FEATURED GEAR
   ============================================================ */
.featured-gear {
    border-top: 2px dotted #ccc;
    background: #fff;
    padding: 5rem 0;
}

.featured-gear-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section-header { margin-bottom: 2.5rem; }

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-sub {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.35rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.view-all {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cyan);
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.view-all:hover { color: #00b5b4; }

.featured-gear-inner .section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.1rem;
}

/* ============================================================
   HOMEPAGE — PRODUCT CARDS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.product-card {
    background: #fff;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card:hover { transform: translateY(-4px); }

.product-image-container {
    position: relative;
    background: #efefef;
    height: 300px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info { padding: 1rem 0 1.25rem; }

.badge-new {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--cyan);
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.03em;
    color: #111;
}

.product-range {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
    text-transform: none;
    font-weight: 400;
}

.price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    font-family: var(--font-body);
}

/* ============================================================
   HOMEPAGE — VALUE PROPS
   ============================================================ */
.value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #333;
    margin-top: 2px;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.value-text strong {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111;
    text-transform: uppercase;
}

.value-text span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

/* ============================================================
   HOMEPAGE — BRAND STORY
   ============================================================ */
.brand-story { overflow: hidden; }

.brand-story-main {
    position: relative;
    background: url('../images/loxee_action_shot.png') center/cover no-repeat;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.brand-story-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.9) 35%, rgba(8,8,8,0.3) 65%, rgba(8,8,8,0) 100%);
}

.brand-story-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 3rem var(--container-pad);
}

.brand-story-image { display: none; }

.brand-story-content h2 {
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 400px;
}

.brand-story-content p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.75;
    max-width: 360px;
    margin-bottom: 1.75rem;
}

.brand-story-content .btn-cyan {
    padding: 0.75rem 1.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.trust-icons {
    background: #0d0d0d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 1.4rem var(--container-pad);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    flex-shrink: 0;
}

.trust-item svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
    width: 22px;
    height: 22px;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.trust-text strong {
    font-family: var(--font-heading);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.trust-text span {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.col-hero {
    position: relative;
    background: url('../images/banner-bg.png') center/cover no-repeat;
    background-color: #c8d4dd;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.col-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.col-hero-image { display: none; }

.col-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.5rem var(--container-pad);
}

.col-hero-text { max-width: 520px; }

.col-breadcrumb {
    font-size: 0.72rem;
    color: #777;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.col-breadcrumb span { color: #333; }

.col-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.col-hero-sub {
    font-size: 0.85rem;
    color: #444;
    font-family: var(--font-body);
    line-height: 1.5;
}

.col-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.5rem var(--container-pad);
    align-items: start;
}

.col-sidebar {
    padding-right: 2rem;
    border-right: 1px solid #e8e8e8;
    position: sticky;
    top: 80px;
}

.filter-group {
    border-bottom: 1px solid #ebebeb;
    padding: 1rem 0;
}

.filter-group:first-child { padding-top: 0; }

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    cursor: pointer;
}

.filter-group-header svg { color: #666; flex-shrink: 0; }

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-list li label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: #444;
    font-family: var(--font-body);
    cursor: pointer;
    line-height: 1.4;
}

.filter-list li label input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #000;
    flex-shrink: 0;
    cursor: pointer;
}

.filter-list li label:hover { color: #000; }

.reset-filters {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #555;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.reset-filters:hover { color: #000; }

.col-main { padding-left: 2rem; }

.col-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.col-count {
    font-size: 0.78rem;
    color: #777;
    font-family: var(--font-body);
}

.col-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #555;
    font-family: var(--font-body);
}

.col-sort select {
    border: 1px solid #ccc;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    color: #222;
    cursor: pointer;
    outline: none;
    border-radius: 2px;
}

.col-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.col-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.col-product-card:hover { transform: translateY(-4px); }

.col-product-img {
    position: relative;
    background: #efefef;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.col-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
    font-family: var(--font-body);
    z-index: 2;
}

.col-badge-new,
.col-badge-hot {
    background: var(--cyan);
    color: #fff;
}

.col-product-info { padding: 0.75rem 0 0.5rem; }

.col-product-info h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.col-range {
    font-size: 0.72rem;
    color: #999;
    font-family: var(--font-body);
    margin-bottom: 0.3rem;
}

.col-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    font-family: var(--font-body);
}

.vol-guide-banner {
    position: relative;
    background: url('../images/banner-bg.png') center/cover no-repeat;
    background-color: #c8d4dd;
    min-height: 200px;
    overflow: hidden;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.vol-guide-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(240,240,240,0.97) 0%, rgba(240,240,240,0.88) 35%, rgba(240,240,240,0.3) 60%, rgba(240,240,240,0) 100%);
    z-index: 1;
}

.vol-guide-image { display: none; }

.vol-guide-text {
    position: relative;
    z-index: 2;
    padding: 2.5rem var(--container-pad);
    max-width: 520px;
}

.vol-guide-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.vol-guide-text p {
    font-size: 0.82rem;
    color: #444;
    font-family: var(--font-body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.vol-guide-text .btn-cyan {
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    display: inline-block;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pd-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.pd-breadcrumb {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pd-breadcrumb span {
    font-size: 0.75rem;
    color: #888;
    font-family: var(--font-body);
}

.pd-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.pd-breadcrumb a:hover { color: #000; }

.pd-section { padding: 2rem 0 0; }

.pd-grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 4rem;
    align-items: start;
}

.pd-gallery-wrap {
    display: flex;
    gap: 1rem;
    position: sticky;
    top: 80px;
}

.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 68px;
    flex-shrink: 0;
}

.pd-thumb {
    width: 68px;
    height: 68px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.pd-thumb-active {
    border-color: var(--cyan);
    border-width: 2px;
}

.pd-thumb:hover { border-color: #aaa; }

.pd-main-img {
    flex: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    overflow: hidden;
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.pd-info { padding-top: 0.5rem; }

.pd-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 0.4rem;
}

.pd-range {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cyan);
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-bottom: 0.75rem;
}

.pd-price {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.pd-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.pd-star-icons {
    color: #111;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pd-star-count {
    font-size: 0.75rem;
    color: #888;
    font-family: var(--font-body);
}

.pd-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    max-width: 360px;
}

.pd-option-group { margin-bottom: 1.25rem; }

.pd-option-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.pd-swatches {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pd-swatch {
    border: 1px solid #d0d0d0;
    background: #fff;
    padding: 0.4rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.pd-swatch:hover { border-color: #999; }

.pd-swatch-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.pd-qty {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    width: fit-content;
    gap: 0;
}

.pd-qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pd-qty-btn:hover { background: #f5f5f5; }

.pd-qty-val {
    width: 36px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    line-height: 36px;
}

.pd-btn-cart {
    display: block;
    width: 100%;
    background: var(--cyan);
    color: #000;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
    transition: background 0.2s;
}

.pd-btn-cart:hover { background: #00b5b4; }

.pd-btn-buy {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
}

.pd-btn-buy:hover { background: #333; }

.pd-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.25rem;
}

.pd-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pd-trust-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #555;
    margin-top: 2px;
}

.pd-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pd-trust-item strong {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
}

.pd-trust-item span {
    font-size: 0.63rem;
    color: #888;
    font-family: var(--font-body);
}

.pd-tabs-wrap {
    border-bottom: 1px solid #e0e0e0;
    margin-top: 2.5rem;
}

.pd-tabs {
    display: flex;
    gap: 0;
}

.pd-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #777;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    margin-bottom: -1px;
}

.pd-tab:hover { color: #111; }

.pd-tab-active {
    color: #111;
    border-bottom-color: var(--cyan);
}

.pd-tab-content {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid #eee;
}

.pd-tab-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pd-tab-desc p {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.8;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.pd-tab-desc ul { list-style: none; margin-bottom: 1.25rem; }

.pd-tab-desc ul li {
    font-size: 0.82rem;
    color: #444;
    font-family: var(--font-body);
    padding: 0.2rem 0;
}

.pd-tab-desc ul li::before { content: '·  '; color: #888; }

.pd-read-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    font-family: var(--font-body);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.pd-read-more:hover { text-decoration: underline; }

.pd-tab-specs {
    border-left: 1px solid #eee;
    padding-left: 3rem;
}

.pd-spec-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: start;
}

.pd-spec-row:last-child { border-bottom: none; }

.pd-spec-key {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333;
    text-transform: uppercase;
}

.pd-spec-val {
    font-size: 0.8rem;
    color: #444;
    font-family: var(--font-body);
    line-height: 1.5;
}

.pd-tab-single { max-width: 720px; }

.pd-full-desc p {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.8;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.pd-full-desc ul { list-style: none; margin-bottom: 1.25rem; }

.pd-full-desc ul li {
    font-size: 0.82rem;
    color: #444;
    font-family: var(--font-body);
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pd-full-desc ul li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
}

.pd-size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.pd-size-table th {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111;
    text-transform: uppercase;
    text-align: left;
    padding: 0.65rem 1rem;
    background: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
}

.pd-size-table td {
    font-size: 0.8rem;
    color: #444;
    font-family: var(--font-body);
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.4;
}

.pd-size-table tr:last-child td { border-bottom: none; }

.pd-size-active td {
    background: #f0fffe;
    color: #111;
    font-weight: 600;
}

.pd-size-active td:first-child { border-left: 3px solid var(--cyan); }

.pd-reviews {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pd-review-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.pd-review-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pd-review-score strong {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.pd-review-score span {
    font-size: 0.75rem;
    color: #888;
    font-family: var(--font-body);
}

.pd-review-stars {
    font-size: 1.1rem;
    color: #111;
    letter-spacing: 2px;
}

.pd-review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pd-review {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.pd-review:last-child { border-bottom: none; padding-bottom: 0; }

.pd-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pd-review-stars-sm {
    font-size: 0.8rem;
    color: #111;
    letter-spacing: 1px;
}

.pd-review-author {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
}

.pd-review p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.7;
    font-family: var(--font-body);
}

.pd-upsell { padding: 2.5rem 0 4rem; }

.pd-upsell-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pd-upsell-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pd-upsell-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #f5f5f5;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.pd-upsell-card:hover { transform: translateY(-3px); }

.pd-upsell-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-upsell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.pd-upsell-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pd-upsell-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.pd-upsell-cat {
    font-size: 0.65rem;
    color: var(--cyan);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pd-upsell-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    font-family: var(--font-body);
    margin-top: 0.2rem;
}

/* ============================================================
   ACCESSORIES PAGE
   ============================================================ */
.acc-header { border-bottom: 1px solid #eee; }

.acc-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem var(--container-pad) 1.75rem;
}

.acc-breadcrumb {
    font-size: 0.72rem;
    color: #777;
    font-family: var(--font-body);
    margin-bottom: 0.6rem;
}

.acc-breadcrumb span { color: #333; }

.acc-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.acc-sub {
    font-size: 0.85rem;
    color: #555;
    font-family: var(--font-body);
    line-height: 1.5;
}

.acc-body { padding: 2.5rem 0 4rem; }

.acc-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.acc-row { display: grid; gap: 1.5rem; }
.acc-row-2 { grid-template-columns: 1fr 1fr; }
.acc-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.acc-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: #f0f0f0;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    padding: 2rem 0 2rem 2rem;
    transition: background 0.2s;
    min-height: 240px;
    position: relative;
}

.acc-row-3 .acc-card {
    min-height: 200px;
    padding: 1.75rem 0 1.75rem 1.75rem;
}

.acc-card:hover { background: #e8e8e8; }

.acc-card-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    max-width: calc(100% - 240px);
    position: relative;
    z-index: 1;
}

.acc-card-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
}

.acc-row-3 .acc-card-title { font-size: 1.25rem; }

.acc-card-desc {
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.acc-row-3 .acc-card-desc { margin-bottom: 1.25rem; }

.acc-card-link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #111;
    text-transform: uppercase;
}

.acc-card:hover .acc-card-link { color: var(--cyan); }

.acc-card-img {
    flex-shrink: 0;
    width: 220px;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.acc-row-3 .acc-card-img { width: 170px; }

.acc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-wrap { padding: 2.5rem 0 4rem; }

.cart-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.cart-header { margin-bottom: 2.5rem; }

.cart-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cart-breadcrumb {
    font-size: 0.72rem;
    color: #777;
    font-family: var(--font-body);
    margin-bottom: 0.4rem;
}

.cart-breadcrumb span { color: #333; }

.cart-sub {
    font-size: 0.82rem;
    color: #555;
    font-family: var(--font-body);
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:first-child { border-top: 1px solid #eee; }

.cart-item-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.cart-item-variant {
    font-size: 0.78rem;
    color: #888;
    font-family: var(--font-body);
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    width: fit-content;
}

.cart-qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.cart-qty-btn:hover { background: #f5f5f5; }

.cart-qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    line-height: 32px;
}

.cart-item-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.cart-item-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.cart-remove {
    font-size: 0.68rem;
    color: #aaa;
    font-family: var(--font-body);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.cart-remove:hover { color: #111; }

.cart-summary {
    background: #f7f7f7;
    padding: 1.75rem;
    position: sticky;
    top: 90px;
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: #555;
}

.cart-shipping-note {
    font-size: 0.72rem;
    color: #999;
    text-align: right;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.cart-summary-total small {
    font-size: 0.65rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.3rem;
}

.cart-btn-checkout {
    display: block;
    width: 100%;
    background: var(--cyan);
    color: #000;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0.65rem;
    transition: background 0.2s;
}

.cart-btn-checkout:hover { background: #00b5b4; }

.cart-btn-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
}

.cart-btn-apple:hover { background: #333; }

.cart-trust {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid #e5e5e5;
    padding-top: 1.25rem;
}

.cart-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.cart-trust-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #666;
    margin-top: 1px;
}

.cart-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.cart-trust-item strong {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: #111;
}

.cart-trust-item span {
    font-size: 0.65rem;
    color: #888;
    font-family: var(--font-body);
}

.cart-upsell {
    border-top: 1px solid #eee;
    padding-top: 2.5rem;
}

.cart-upsell-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cart-upsell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cart-upsell-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f5f5f5;
    padding: 1rem;
}

.cart-upsell-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #e8e8e8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-upsell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.cart-upsell-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-upsell-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.cart-upsell-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    font-family: var(--font-body);
}

.cart-upsell-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.45rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.2rem;
    transition: background 0.2s;
    width: fit-content;
}

.cart-upsell-btn:hover { background: #333; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    position: relative;
    background: url('../images/loxee_action_shot.png') center right/cover no-repeat;
    background-color: #0d0d0d;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 7rem 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.about-hero-img { display: none; }

.about-hero-overlay { display: none; }

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-hero-inner .about-eyebrow,
.about-hero-title {
    max-width: 560px;
}

.about-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}

/* Statement */
.about-statement {
    padding: 5rem 0;
    border-bottom: 1px solid #eee;
}

.about-statement-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-statement-inner > * {
    max-width: 720px;
}

.about-statement-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.about-statement-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.about-statement-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.85;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

/* Pillars */
.about-pillars {
    background: #f7f7f7;
    padding: 5rem 0;
}

.about-pillars-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-pillar-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.about-pillar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.about-pillar-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.75;
    font-family: var(--font-body);
}

/* Split section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-split-img {
    background: #111;
    overflow: hidden;
    min-height: 480px;
}

.about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.85;
}

.about-split-text {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.about-eyebrow-dark {
    color: var(--cyan);
}

.about-split-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.about-split-text p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    font-family: var(--font-body);
    margin-bottom: 0.85rem;
}

/* Stats bar */
.about-stats {
    background: #111;
    padding: 3.5rem 0;
}

.about-stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* CTA Banner */
.about-cta {
    position: relative;
    background: url('../images/banner-bg.png') center/cover no-repeat;
    background-color: #0d0d0d;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    text-align: center;
    width: 100%;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-cta-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    margin-bottom: 2rem;
}

.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
    padding: 0;
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
    align-items: start;
}

.contact-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.contact-intro {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.75;
    font-family: var(--font-body);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555;
}

.contact-detail-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-detail-item strong {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #111;
    text-transform: none;
}

.contact-detail-item span {
    font-size: 0.8rem;
    color: #666;
    font-family: var(--font-body);
}

.contact-faq-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.contact-faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-faq-list li a {
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-body);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-faq-list li a:hover { color: var(--cyan); }

/* Form */
.contact-form-wrap {
    background: #f7f7f7;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cf-field label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    border: 1px solid #ddd;
    background: #fff;
    padding: 0.82rem 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    width: 100%;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #bbb; }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: #999; }

.cf-field textarea { resize: vertical; }

.cf-field select { cursor: pointer; appearance: auto; }

.cf-btn {
    display: block;
    width: 100%;
    background: var(--cyan);
    color: #000;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.cf-btn:hover { background: #00b5b4; }

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.acct-wrap {
    padding: 2.5rem 0 5rem;
    background: #f7f7f7;
    min-height: calc(100vh - 120px);
}

.acct-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.acct-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
    width: 500px;
}

/* Tab headers */
.acct-tabs {
    display: flex;
    gap: 0;
    width: 500px;
}

.acct-tab {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    cursor: pointer;
    padding: 0 0 0.6rem;
    margin-right: 2.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.acct-tab-active {
    color: #111;
    border-bottom-color: var(--cyan);
}

.acct-tab:hover { color: #111; }

.acct-divider {
    width: 500px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

/* Single-panel container */
.acct-grid {
    display: block;
    width: 500px;
}

.acct-desc {
    font-size: 0.82rem;
    color: #555;
    font-family: var(--font-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.acct-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.acct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.acct-field {
    position: relative;
}

.acct-field input {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 2px;
}

.acct-field input::placeholder { color: #aaa; }

.acct-field input:focus { border-color: #999; }

.acct-field-icon input { padding-right: 2.5rem; }

.acct-field-icon svg {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.acct-forgot {
    font-size: 0.78rem;
    color: #888;
    font-family: var(--font-body);
    font-style: italic;
    text-decoration: none;
    margin-top: 0.1rem;
}

.acct-forgot:hover { color: #333; }

.acct-btn {
    display: block;
    width: 100%;
    background: var(--cyan);
    color: #000;
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.acct-btn:hover { background: #00b5b4; }

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 149;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #fff;
    z-index: 150;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 0;
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.mobile-nav-header .mobile-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    font-size: 1.4rem;
    line-height: 1;
    color: #000;
}

.mobile-nav-links {
    flex: 1;
    padding: 1.5rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
}

.mobile-nav-links > li > a svg {
    transition: transform 0.2s ease;
}

.mobile-nav-links > li.open > a svg {
    transform: rotate(180deg);
}

.mobile-sub {
    display: none;
    background: #f7f7f7;
    padding: 0.5rem 0;
}

.mobile-nav-links > li.open .mobile-sub {
    display: block;
}

.mobile-sub li a {
    display: block;
    padding: 0.6rem 2rem;
    font-size: 0.8rem;
    color: #444;
    font-family: var(--font-body);
}

.mobile-sub li a:hover { color: #000; }

.mobile-nav-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    gap: 1rem;
}

.mobile-nav-footer a {
    color: #555;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .col-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: 1fr; }
    .product-grid,
    .value-props { grid-template-columns: repeat(2, 1fr); }
    .pd-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pd-gallery-wrap { position: static; }
    .pd-trust { grid-template-columns: repeat(2, 1fr); }
    .pd-tab-body { grid-template-columns: 1fr; }
    .pd-tab-specs { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 1.5rem; }
    .pd-upsell-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cart-summary { position: static; }
    .cart-upsell-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
    .acc-row-3 { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .about-split-text { padding: 3rem 2rem; }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
    .about-pillars-inner { grid-template-columns: 1fr 1fr; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .col-body { grid-template-columns: 1fr; }
    .col-sidebar {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        position: static;
    }
    .col-main { padding-left: 0; }
    .col-product-grid { grid-template-columns: repeat(2, 1fr); }
    .acc-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --container-pad: 1.25rem; }

    /* Nav */
    .nav-container { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { padding: 4rem 1.25rem; min-height: 420px; }
    .hero h1 { font-size: 3rem; }
    .hero-sub { font-size: 0.875rem; }

    /* Grids */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .value-props { grid-template-columns: 1fr 1fr; }
    .category-card { min-height: 280px; padding: 2rem 1.25rem; }

    /* Trust */
    .trust-icons { gap: 1.25rem; flex-wrap: wrap; justify-content: flex-start; padding: 1.25rem 1.25rem; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 1.25rem 2.5rem; }

    /* Collection */
    .col-hero { padding: 3rem 1.25rem; }
    .col-hero-title { font-size: 2.5rem; }
    .col-filter-bar { padding: 0.875rem 1.25rem; flex-wrap: wrap; gap: 0.75rem; }

    /* Product page */
    .pd-wrap { padding: 2rem 1.25rem; }
    .pd-breadcrumb { padding: 1rem 1.25rem; }
    .pd-upsell { padding: 2rem 1.25rem; }

    /* Cart */
    .cart-wrap { padding: 2rem 1.25rem; }

    /* About */
    .about-statement { padding: 3rem 1.25rem; }
    .about-statement-inner { padding: 0; }
    .about-pillars { padding: 3rem 1.25rem; }
    .about-stats { padding: 2.5rem 1.25rem; }
    .about-cta { padding: 4rem 1.25rem; }
    .about-hero-title { font-size: 3.5rem; }
    .about-split-img img { height: 280px; object-fit: cover; }

    /* Contact */
    .contact-wrap { padding: 3rem 1.25rem; }

    /* Accessories */
    .acc-header { padding: 2.5rem 1.25rem; }
    .acc-body { padding: 2rem 1.25rem; }

    /* Account */
    .acct-wrap { padding: 3rem 1.25rem; }
    .acct-container { width: 100%; }
    .acct-tabs, .acct-divider, .acct-grid { width: 100%; max-width: 480px; }
}

@media (max-width: 600px) {
    :root { --container-pad: 1rem; }

    /* Nav */
    .nav-container { padding: 0.875rem 1rem; }

    /* Hero */
    .hero { padding: 3rem 1rem; min-height: 360px; }
    .hero h1 { font-size: 2.4rem; }

    /* Grids */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .value-props { grid-template-columns: 1fr; }
    .categories-grid { gap: 0.75rem; }
    .category-card { min-height: 240px; padding: 1.75rem 1rem; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem; }

    /* About */
    .about-hero-title { font-size: 2.8rem; }
    .about-pillars-inner { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-cta-title { font-size: 2rem; }
    .about-cta-btns { flex-direction: column; align-items: center; }

    /* Contact */
    .cf-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.5rem 1rem; }

    /* Collection */
    .col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Product */
    .pd-tabs { overflow-x: auto; }
    .pd-trust { grid-template-columns: 1fr 1fr; }
    .pd-upsell-grid { grid-template-columns: 1fr; }

    /* Cart */
    .cart-upsell-grid { grid-template-columns: 1fr; }
    .cart-title { font-size: 2rem; }

    /* Accessories */
    .acc-row-3 { grid-template-columns: 1fr; }
    .acc-card { min-height: 160px; padding: 1.5rem 0 1.5rem 1.25rem; }
    .acc-card-img { width: 110px; height: 120px; }
    .acc-title { font-size: 2rem; }

    /* Account */
    .acct-container { padding: 0 1rem; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: 1fr; }
    .pd-upsell-grid { grid-template-columns: 1fr; }
    .acc-row-2 { grid-template-columns: 1fr; }
}
