/* ============================================================================
   STRIKE OFFROAD - v3
   Old Money 4x4 — Military Green + Cream + Champagne + Burgundy/Rust accents
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* === MAIN PALETTE === */
    --green-dark: #2A3528;       /* Verde militar oscuro (header dark blocks, footer) */
    --green-darker: #1F2820;     /* Verde aún más oscuro */
    --cream: #F0EAE0;            /* Crema cálido (fondo principal) */
    --cream-light: #F7F3EC;      /* Crema más claro */
    --champagne: #C9A878;        /* Dorado champagne */
    --champagne-dark: #B89260;   /* Champagne oscuro hover */
    --burgundy: #722F37;         /* Rojo vino (acentos premium) */
    --rust: #A0522D;             /* Rojo oxidado (tags 4x4) */
    --rust-dark: #8B3A2F;        /* Rojo oxidado oscuro */
    --black: #1A1A1A;
    --charcoal: #2A2A2A;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --border-light: #E5DFD3;
    --text: #2A2A2A;
    --text-light: #6B6B6B;
    --text-mute: #999;
    --gold-line: #C9A878;

    /* === FONTS === */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================================
   TOP BAR
   ============================================================================ */
.topbar {
    background: var(--green-dark);
    color: var(--cream);
    padding: 12px 48px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--champagne);
}

/* ============================================================================
   HEADER & NAV
   ============================================================================ */
.header {
    background: var(--cream);
    padding: 28px 48px;
    border-bottom: 1px solid rgba(201, 168, 120, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.header-nav-left {
    display: flex;
    gap: 36px;
    list-style: none;
}

.header-nav-left a {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.header-nav-left a:hover,
.header-nav-left a.active {
    color: var(--burgundy);
}

.header-logo {
    text-align: center;
}

.header-logo-shield {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.shield-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-icon::before,
.shield-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 30px;
    border: 1px solid var(--champagne);
    border-radius: 50%;
    transform: translateY(-50%);
}

.shield-icon::before {
    left: -2px;
    transform: translateY(-50%) rotate(15deg);
    border-right: none;
}

.shield-icon::after {
    right: -2px;
    transform: translateY(-50%) rotate(-15deg);
    border-left: none;
}

.shield-icon span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--burgundy);
    letter-spacing: -0.05em;
    z-index: 2;
}

.header-brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
    line-height: 1;
    margin-top: 2px;
}

.header-brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

.header-nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    align-items: center;
}

.header-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 0;
}

.header-icon:hover {
    color: var(--burgundy);
}

.header-icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.cart-count {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 75vh;
    max-height: 700px;
}

.hero-left {
    background: var(--green-dark);
    color: var(--cream);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(201, 168, 120, 0.08), transparent 60%);
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 500;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--cream);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--champagne);
    margin: 32px 0;
    position: relative;
}

.hero-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--champagne);
    background: var(--green-dark);
    padding: 0 6px;
    font-size: 0.7rem;
}

.hero-description {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.9;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-right {
    background-image: url('https://images.unsplash.com/photo-1591380309761-9eb7e9be4d80?w=1800&q=85');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(42, 53, 40, 0.15), transparent 30%);
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-block;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid currentColor;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
    text-align: center;
}

.btn-gold {
    background: var(--champagne);
    color: var(--green-dark);
    border-color: var(--champagne);
}

.btn-gold:hover {
    background: var(--champagne-dark);
    border-color: var(--champagne-dark);
}

.btn-outline-light {
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--green-dark);
}

.btn-burgundy {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
}

.btn-burgundy:hover {
    background: var(--rust-dark);
    border-color: var(--rust-dark);
}

.btn-dark {
    background: var(--green-dark);
    color: var(--cream);
    border-color: var(--green-dark);
}

.btn-dark:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-outline-dark {
    color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-outline-dark:hover {
    background: var(--green-dark);
    color: var(--cream);
}

/* ============================================================================
   SECTION HEADERS WITH ORNAMENT
   ============================================================================ */
.section-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.section-header-ornament-line {
    width: 80px;
    height: 1px;
    background: var(--champagne);
}

.section-header-ornament-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    text-align: center;
}

.section-header-ornament-diamond {
    color: var(--champagne);
    font-size: 0.8rem;
}

/* ============================================================================
   CATEGORIES SECTION
   ============================================================================ */
.categories {
    padding: 90px 48px;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
}

.category-card {
    text-align: left;
    display: block;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card-image {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.category-card:hover .category-card-image {
    border-color: var(--champagne);
}

.category-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.category-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-card-desc::after {
    content: '›';
    font-size: 1.2em;
    color: var(--burgundy);
    transition: transform 0.3s;
}

.category-card:hover .category-card-desc::after {
    transform: translateX(4px);
}

/* ============================================================================
   PRODUCTS SECTION (ESSENTIAL 4X4)
   ============================================================================ */
.products-section {
    padding: 90px 48px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
}

.products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto 60px;
}

.products-section-header .section-header-ornament {
    margin-bottom: 0;
}

.products-view-all {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-view-all:hover {
    color: var(--burgundy);
}

.products-view-all::after {
    content: '›';
    font-size: 1.3em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1500px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--champagne);
    box-shadow: 0 12px 40px rgba(42, 53, 40, 0.08);
    transform: translateY(-4px);
}

.product-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green-dark);
    color: var(--cream);
    padding: 6px 14px;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 3;
}

.product-card-tag.rust {
    background: var(--rust);
}

.product-card-tag.burgundy {
    background: var(--burgundy);
}

.product-card-tag.gold {
    background: var(--champagne);
    color: var(--green-dark);
}

.product-card-image {
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--white);
    margin-bottom: 24px;
    padding: 10%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.04);
}

.product-card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-card-series {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 48px;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.product-card-price-current {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
}

.product-card-price-old {
    font-size: 0.95rem;
    color: var(--text-mute);
    text-decoration: line-through;
}

.product-card-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-card-stars {
    color: var(--champagne);
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    background: var(--cream-light);
}

.qty-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text);
    font-size: 0.95rem;
    transition: background 0.3s;
}

.qty-btn:hover { background: rgba(0,0,0,0.05); }

.qty-input {
    border: none;
    background: transparent;
    text-align: center;
    width: 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    padding: 4px 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--green-dark);
    color: var(--cream);
    border: 1px solid var(--green-dark);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.add-to-cart-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.wishlist-btn {
    background: none;
    border: 1px solid var(--border-light);
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* ============================================================================
   TRUST BADGES
   ============================================================================ */
.trust-badges {
    background: var(--green-dark);
    color: var(--cream);
    padding: 60px 48px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.trust-badge-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.2;
    fill: none;
}

.trust-badge-content h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--cream);
}

.trust-badge-content p {
    font-size: 0.83rem;
    line-height: 1.5;
    color: rgba(240, 234, 224, 0.7);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--green-darker);
    color: var(--cream);
    padding: 80px 48px 36px;
}

.footer-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(201, 168, 120, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand .header-logo-shield {
    align-self: flex-start;
}

.footer-brand .shield-icon::before,
.footer-brand .shield-icon::after {
    border-color: var(--champagne);
}

.footer-brand .shield-icon span {
    color: var(--champagne);
}

.footer-brand .header-brand-name {
    color: var(--cream);
}

.footer-brand .header-brand-tagline {
    color: var(--champagne);
}

.footer-brand-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(240, 234, 224, 0.65);
    max-width: 280px;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 14px;
}

.footer-newsletter p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(240, 234, 224, 0.75);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(201, 168, 120, 0.3);
    background: rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(240, 234, 224, 0.4);
}

.newsletter-submit {
    background: var(--burgundy);
    color: var(--cream);
    border: none;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit:hover {
    background: var(--rust-dark);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(240, 234, 224, 0.7);
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--champagne);
}

.footer-col-contact .contact-line {
    font-size: 0.88rem;
    color: rgba(240, 234, 224, 0.75);
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-col-contact .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(240, 234, 224, 0.4);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 234, 224, 0.7);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--cream);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* ============================================================================
   PAGE HEADER (Sub Pages)
   ============================================================================ */
.page-header {
    padding: 100px 48px;
    background: var(--green-dark);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=2400&q=85');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    color: var(--cream);
}

.page-header p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--champagne);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================================
   PRODUCT DETAIL
   ============================================================================ */
.product-detail {
    padding: 80px 48px;
    background: var(--cream);
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.product-detail-gallery .main-image {
    background: var(--white);
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6%;
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.product-detail-thumb {
    aspect-ratio: 1/1;
    background: var(--white);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10%;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: border-color 0.3s;
    opacity: 0.7;
}

.product-detail-thumb:hover,
.product-detail-thumb.active {
    border-color: var(--burgundy);
    opacity: 1;
}

.product-detail-info {
    padding-top: 8px;
}

.product-detail-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 28px;
}

.product-detail-breadcrumb a {
    color: var(--text-light);
}

.product-detail-breadcrumb a:hover {
    color: var(--burgundy);
}

.product-detail-cat {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 14px;
    font-weight: 600;
}

.product-detail-info h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 12px;
    line-height: 1.1;
    color: var(--text);
}

.product-detail-series {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.product-detail-rating .stars {
    color: var(--champagne);
    font-size: 1rem;
    letter-spacing: 2px;
}

.product-detail-rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
}

.product-detail-price-current {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--burgundy);
}

.product-detail-price-old {
    font-size: 1.2rem;
    color: var(--text-mute);
    text-decoration: line-through;
}

.product-detail-desc {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text);
}

.product-detail-specs {
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    padding: 24px;
    margin-bottom: 32px;
}

.product-detail-specs h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--burgundy);
}

.product-detail-specs ul {
    list-style: none;
}

.product-detail-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(229, 223, 211, 0.5);
}

.product-detail-specs li:last-child {
    border-bottom: none;
}

.product-detail-specs li span:first-child {
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.product-detail-specs li span:last-child {
    font-weight: 600;
    color: var(--text);
}

.product-detail-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.product-detail-actions .qty-selector {
    border-color: var(--text-light);
    background: var(--white);
}

.product-detail-actions .add-to-cart-btn {
    padding: 18px 32px;
    font-size: 0.7rem;
}

.product-detail-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-detail-extras-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-extras-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--burgundy);
    stroke-width: 1.5;
    fill: none;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
    .hero-right { min-height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 60px; }
    .header-grid { grid-template-columns: 1fr auto 1fr; gap: 20px; }
    .header-nav-left { gap: 22px; }
    .header-nav-left a { font-size: 0.65rem; }
}

@media (max-width: 768px) {
    .topbar { padding: 10px 20px; font-size: 0.65rem; flex-direction: column; gap: 6px; }
    .topbar-right { font-size: 0.6rem; }
    .header { padding: 20px 20px; }
    .header-grid { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .header-nav-left { justify-content: center; flex-wrap: wrap; gap: 16px; }
    .header-nav-right { justify-content: center; }
    .hero-left { padding: 60px 32px; }
    .categories, .products-section, .trust-badges { padding: 60px 20px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .products-section-header { flex-direction: column; gap: 24px; }
    .trust-badges-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 60px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .product-detail { padding: 60px 20px; }
}
