/* ─── Design Tokens ─────────────────────────────────── */
:root {
    --cream:      #eddabc;
    --rust:       #b16448;
    --olive:      #5b5d34;
    --cream-dark: #d9c49e;
    --rust-dark:  #8a4a33;
    --olive-dark: #3f4124;
    --sand:       #f5eed9;
    --text-dark:  #2c2215;
    --text-mid:   #5a4030;
    --white:      #fffdf7;
    --font-display: 'Caveat', cursive;
    --font-body:    'Nunito', sans-serif;
    --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:       12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--sand);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ══════════════════════════════════════════════════════
    EXACT NAVBAR — COPIED FROM INDEX
══════════════════════════════════════════════════════ */
#wedgie a {
    color: var(--rust);
}

/* ══════════════════════════════════════════════════════
    BREADCRUMB
══════════════════════════════════════════════════════ */
.breadcrumb {
    margin-top: 72px;
    background: var(--white);
    border-bottom: 1.5px solid rgba(177,100,72,0.1);
    padding: 0.8rem 5%;
}
.breadcrumb-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-mid);
}
.breadcrumb-inner a { color: var(--rust); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.bc-sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════════
    PRODUCT HERO — TWO COLUMN
══════════════════════════════════════════════════════ */
.product-hero {
    background: var(--white);
    padding: 4rem 5% 5rem;
}
.product-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 5rem; row-gap: 2rem; align-items: start;
}
.product-hero-inner > .info-top { grid-column: 2; grid-row: 1; }

/* ── Left: Image Gallery ── */
.gallery-col { position: sticky; top: 92px; grid-column: 1; grid-row: 1 / span 2; }

.gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    box-shadow: 0 24px 64px rgba(44,34,21,0.14);
    border: 2px solid rgba(177,100,72,0.1);
}

/* The animated product "display" — transitions color via JS */

.gallery-product-display {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.2rem;
    transition: background 0.5s ease;
    position: relative;
}
.gallery-product-display::before {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
}
.gpd-icon {
    display: flex;
    justify-content: center;
    align-items: center; 
    font-size: 7rem; 
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); 
}

.productImg {
    width: 70%;
}
.gpd-icon.full-bleed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
}
.gpd-icon.full-bleed .productImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (hover: hover) {
    .gallery-product-display:hover .gpd-icon { transform: scale(1.08) rotate(-3deg); }
    .gallery-product-display:hover .gpd-icon.full-bleed { transform: none; }
}
.gpd-name {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.gpd-hand-badge {
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(255,255,255,0.2); color: var(--white);
    padding: 0.3rem 0.9rem; border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.patent-corner {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.35rem 0.8rem; border-radius: 99px;
}
/* Flip indicator */
.flip-indicator {
    position: absolute; bottom: 16px; left: 16px;
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); font-size: 0.68rem; font-weight: 800;
    padding: 0.35rem 0.9rem; border-radius: 99px;
    transition: all 0.4s ease;
}
.flip-icon { font-size: 0.9rem; transition: transform 0.5s ease; }

/* Thumbnail strip */
.gallery-thumbs {
    display: flex; gap: 0.8rem; margin-top: 1rem;
}
.thumb {
    flex: 1; aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden; cursor: pointer;
    transition: border-color 0.25s ease, transform 0.2s ease;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(145deg, var(--cream), var(--cream-dark));
}
.thumb:hover { transform: translateY(-2px); }
.thumb.thumb-no-hover:hover { transform: none; }
.thumb.active { border-color: var(--rust); }
.thumb-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.thumb-img.thumb-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb.video-thumb {
    background: linear-gradient(145deg, var(--olive), var(--olive-dark));
    position: relative;
}
.thumb.video-thumb::after {
    content: '▶';
    position: absolute;
    font-size: 1rem; color: var(--cream);
    background: rgba(177,100,72,0.8);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* ── Right: Product Info ── */
.info-col { display: flex; flex-direction: column; gap: 2rem; grid-column: 2; grid-row: 2; }

.info-top { display: flex; flex-direction: column; gap: 0.6rem; }
.info-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.4rem; }
.badge {
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 99px;
}
.badge-patent { background: var(--text-dark); color: var(--cream); }
.badge-best   { background: var(--olive); color: var(--cream); }
.badge-free   { background: rgba(91,93,52,0.12); color: var(--olive); border: 1.5px solid rgba(91,93,52,0.25); }

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    font-weight: 700; line-height: 1.05;
    color: var(--olive);
}
.product-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 500; color: var(--rust);
}

.rating-row {
    display: flex; align-items: center; gap: 0.8rem;
}
.stars-filled { color: #d4862a; font-size: 1rem; letter-spacing: 0.05em; }
.rating-count { font-size: 0.8rem; font-weight: 700; color: var(--text-mid); }
.rating-link { font-size: 0.78rem; color: var(--rust); text-decoration: underline; cursor: pointer; }

.price-row {
    display: flex; align-items: baseline; gap: 1rem;
}
.price-main {
    font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--rust);
}
.price-note { font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }

/* ── Config Box ── */
.config-box {
    background: var(--sand);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1.5px solid rgba(177,100,72,0.1);
    display: flex; flex-direction: column; gap: 1.6rem;
}

.config-section { display: flex; flex-direction: column; gap: 0.75rem; }

/* Chart links */
.chart-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
    text-decoration: none; transition: opacity 0.2s, color 0.2s;
    opacity: 0.25; color: var(--text-mid);
}
.chart-link.active {
    opacity: 1; color: var(--rust);
    border-bottom: 2px solid var(--rust);
    padding-bottom: 1px;
}
.config-label {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-mid); display: flex; justify-content: space-between; align-items: center;
}
.config-selection { color: var(--rust); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 0.8rem; }

/* Color Options */
.color-options { display: flex; gap: 0.5rem; flex-wrap: nowrap; }
.color-opt {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    cursor: pointer;
}
.color-swatch {
    width: 36px; height: 36px; border-radius: 10px;
    border: 3px solid  #e6d2bc;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.color-swatch:hover { transform: scale(1.08); }
.color-opt.active .color-swatch {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(177,100,72,0.2);
}
.color-opt-name {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-mid);
}
.color-opt.active .color-opt-name { color: var(--rust); }

/* Hand Orientation Toggle */
.hand-toggle { display: flex; gap: 0; border-radius: 12px; overflow: hidden; border: 2px solid rgba(177,100,72,0.15); }
.hand-btn {
    flex: 1; padding: 0.45rem 0.75rem;
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    background: var(--white); color: var(--text-mid);
    border: none; cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.hand-btn:not(:last-child) { border-right: 1.5px solid rgba(177,100,72,0.15); }
.hand-btn.active { background: var(--olive); color: var(--cream); }
.hand-btn:hover:not(.active) { background: var(--cream); }
.hand-icon { font-size: 1.1rem; }

/* Quantity */
.qty-row { display: flex; align-items: center; gap: 0; }
.qty-ctrl {
    width: 42px; height: 42px;
    background: var(--white); border: 1.5px solid rgba(177,100,72,0.2);
    color: var(--text-dark); font-size: 1.2rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.qty-ctrl:first-child { border-radius: 10px 0 0 10px; }
.qty-ctrl:last-child  { border-radius: 0 10px 10px 0; }
.qty-ctrl:hover { background: var(--rust); color: var(--white); border-color: var(--rust); }
.qty-display {
    width: 54px; height: 42px;
    border-top: 1.5px solid rgba(177,100,72,0.2);
    border-bottom: 1.5px solid rgba(177,100,72,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--text-dark); background: var(--white);
    user-select: none;
}

/* Add to Cart */
.atc-row { display: flex; gap: 0.8rem; align-items: stretch; flex-wrap: wrap; }
.btn-atc {
    flex: 1; min-width: 160px;
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    background: var(--rust); color: var(--white);
    border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 1rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    box-shadow: 0 8px 28px rgba(177,100,72,0.38);
    transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.btn-atc:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(177,100,72,0.5); }
.btn-atc.added { background: var(--olive); }
.btn-wish {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--white); border: 2px solid rgba(177,100,72,0.2);
    font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0; align-self: center;
}
.btn-wish:hover { border-color: var(--rust); transform: scale(1.1); }
.btn-wish.liked { background: var(--rust); border-color: var(--rust); }

/* Trust row */
.trust-row {
    display: flex; gap: 0; border-radius: 12px; overflow: hidden;
    border: 1.5px solid rgba(177,100,72,0.12);
}
.trust-item {
    flex: 1; padding: 0.8rem 0.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    background: var(--white);
    border-right: 1.5px solid rgba(177,100,72,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.3rem; }
.trust-txt { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); text-align: center; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0; border-radius: 14px; overflow: hidden; border: 1.5px solid rgba(177,100,72,0.12); }
.acc-item { border-bottom: 1.5px solid rgba(177,100,72,0.1); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger {
    width: 100%; background: var(--white); border: none; cursor: pointer;
    padding: 1rem 1.3rem;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 800;
    color: var(--text-dark); text-align: left;
    transition: background var(--transition);
}
.acc-trigger:hover { background: var(--sand); }
.acc-arrow { font-size: 0.7rem; color: var(--rust); transition: transform 0.3s ease; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--sand);
    font-size: 0.85rem; line-height: 1.75; color: var(--text-mid);
    padding: 0 1.3rem;
}
.acc-item.open .acc-body { max-height: 400px; padding: 1rem 1.3rem; }

/* ══════════════════════════════════════════════════════
    VIDEO SECTION
══════════════════════════════════════════════════════ */
.video-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    position: relative; overflow: hidden;
}
.video-section::before {
    content: '⛳';
    position: absolute; right: -40px; top: -40px;
    font-size: 22rem; opacity: 0.04; pointer-events: none; line-height: 1;
}
.video-section-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 5rem; align-items: center;
}
.video-text { display: flex; flex-direction: column; gap: 1.4rem; }
.video-text .section-label {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(237,218,188,0.6); display: block;
}
.video-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700;
    color: var(--cream); line-height: 1.1;
}
.video-text p { font-size: 0.95rem; line-height: 1.75; color: rgba(237,218,188,0.72); }

.video-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.vstep {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 0.9rem 1.1rem;
    background: rgba(255,253,247,0.07);
    border-radius: var(--radius);
    border-left: 3px solid var(--rust);
}
.vstep-num {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--rust); line-height: 1; flex-shrink: 0; min-width: 28px;
}
.vstep-text h4 { font-size: 0.85rem; font-weight: 800; color: var(--cream); margin-bottom: 0.2rem; }
.vstep-text p  { font-size: 0.78rem; color: rgba(237,218,188,0.6); line-height: 1.5; }

/* Video Player */
.video-player-wrap {
    position: relative;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    aspect-ratio: 16/10;
    background: #0a0d06;
    cursor: pointer;
}
/* Placeholder video with animated "scene" */
.video-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.2rem;
    background: linear-gradient(160deg, #1a2010 0%, #2e3818 40%, #1a2010 100%);
    position: relative; overflow: hidden;
}
/* Animated grass */
.vp-grass {
    position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(180deg, #2d4a1e 0%, #1a3010 100%);
    border-radius: 60% 60% 0 0 / 20px 20px 0 0;
}
.vp-sky {
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, #1a3a5c 0%, #2a5c3a 100%);
}
/* Animated sun */
.vp-sun {
    position: absolute; top: 18%; right: 22%;
    width: 60px; height: 60px; border-radius: 50%;
    background: radial-gradient(circle, #f5c842 0%, #d4862a 60%, transparent 100%);
    box-shadow: 0 0 40px rgba(245,200,66,0.4), 0 0 80px rgba(245,200,66,0.2);
    animation: pulse-sun 3s ease-in-out infinite;
}
@keyframes pulse-sun {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}
/* Golf scene icons */
.vp-scene {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    animation: scene-float 4s ease-in-out infinite;
}
@keyframes scene-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.vp-scene .vp-emoji { font-size: 4.5rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)); }
.vp-caption {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: rgba(237,218,188,0.9); z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Play overlay */
.play-overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    background: rgba(10,13,6,0.35);
    transition: background 0.3s ease;
}
.video-player-wrap:hover .play-overlay { background: rgba(10,13,6,0.2); }
.play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--rust); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(177,100,72,0.6);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.video-player-wrap:hover .play-btn { transform: scale(1.12); box-shadow: 0 14px 40px rgba(177,100,72,0.8); }
.play-label {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Video duration badge */
.vid-duration {
    position: absolute; bottom: 14px; right: 14px; z-index: 11;
    background: rgba(0,0,0,0.55); color: var(--cream);
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem; border-radius: 6px;
}
/* Chapter pills below video */
.video-chapters {
    display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.chap-pill {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.4rem 0.9rem; border-radius: 99px;
    background: rgba(237,218,188,0.1); color: rgba(237,218,188,0.6);
    border: 1.5px solid rgba(237,218,188,0.15);
    cursor: pointer; transition: all 0.2s;
}
.chap-pill.active, .chap-pill:hover { background: var(--rust); color: var(--white); border-color: var(--rust); }

/* ══════════════════════════════════════════════════════
    SPECS SECTION
══════════════════════════════════════════════════════ */
.specs-section { padding: 6rem 5%; background: var(--white); }
.specs-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label-sm {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--rust); display: block; margin-bottom: 0.7rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
    color: var(--olive); line-height: 1.15;
}
.specs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.spec-card {
    background: var(--sand); border-radius: 18px;
    padding: 1.8rem 1.5rem;
    border: 1.5px solid rgba(177,100,72,0.08);
    display: flex; flex-direction: column; gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,34,21,0.1); }
.spec-icon { font-size: 2.2rem; }
.spec-name {
    font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--rust);
}
.spec-val {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--olive);
}
.spec-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
    REVIEWS SECTION
══════════════════════════════════════════════════════ */
.reviews-section { padding: 6rem 5%; background: var(--sand); }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.rating-summary { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.big-rating {
    font-family: var(--font-display); font-size: 5rem; font-weight: 700;
    color: var(--rust); line-height: 1;
}
.rating-breakdown { display: flex; flex-direction: column; gap: 0.3rem; }
.rbar-row { display: flex; align-items: center; gap: 0.7rem; font-size: 0.72rem; }
.rbar-label { font-weight: 700; color: var(--text-mid); width: 12px; text-align: right; }
.rbar-track {
    width: 100px; height: 6px; background: var(--cream-dark); border-radius: 99px; overflow: hidden;
}
.rbar-fill { height: 100%; background: #d4862a; border-radius: 99px; }
.rbar-count { color: var(--text-mid); }

.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.review-card {
    background: var(--white); border-radius: 18px; padding: 1.6rem;
    border: 1.5px solid rgba(177,100,72,0.08);
    box-shadow: 0 4px 16px rgba(44,34,21,0.05);
    position: relative;
}
.review-card::before {
    content: '"';
    font-family: var(--font-display); font-size: 4rem; line-height: 0.8;
    color: var(--rust); opacity: 0.18;
    position: absolute; top: 12px; left: 14px;
}
.rv-stars { color: #d4862a; font-size: 0.85rem; margin-bottom: 0.6rem; }
.rv-title { font-size: 0.88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.rv-body  { font-size: 0.82rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.1rem; }
.rv-author { display: flex; align-items: center; gap: 0.7rem; }
.rv-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--cream-dark); display: flex; align-items: center;
    justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.rv-name { font-size: 0.8rem; font-weight: 800; color: var(--text-dark); display: block; }
.rv-meta { font-size: 0.68rem; color: var(--text-mid); }
.rv-verified { color: var(--olive); font-weight: 700; }

/* ══════════════════════════════════════════════════════
    YOU MAY ALSO LIKE — FEATURED CARDS
══════════════════════════════════════════════════════ */
.featured-section { padding: 6rem 5%; background: var(--white); }
.featured-inner { max-width: 1200px; margin: 0 auto; }
.featured-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.feat-card {
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%); border-radius: 18px; overflow: hidden;
    border: 1.5px solid rgba(177,100,72,0.08);
    box-shadow: 0 4px 18px rgba(44,34,21,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(44,34,21,0.14); }

.feat-img {
    aspect-ratio: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem; position: relative;
}
.feat-emoji { font-size: 3.5rem; z-index: 1; }
.feat-label {
    font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
    z-index: 1; text-align: center; padding: 0 0.5rem;
}
.feat-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.28rem 0.65rem; border-radius: 99px; z-index: 2;
}
.fb-new  { background: var(--rust); color: var(--white); }
.fb-sale { background: #c4552a; color: var(--white); }
.fb-best { background: var(--olive); color: var(--cream); }
.feat-body { padding: 1rem 1.1rem 1.2rem; background: var(--sand); }
.feat-cat  { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.25rem; display: block; }
.feat-name { font-size: 0.88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.feat-stars { font-size: 0.72rem; color: #d4862a; margin-bottom: 0.6rem; }
.feat-stars span { font-size: 0.68rem; color: var(--text-mid); margin-left: 0.25rem; font-weight: 600; }
.feat-footer { display: flex; align-items: center; justify-content: space-between; }
.feat-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--rust); }
.btn-feat-add {
    font-size: 0.68rem; padding: 0.42rem 0.85rem; border-radius: 8px;
    background: var(--olive); color: var(--cream); border: none; cursor: pointer;
    font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    transition: background var(--transition), transform 0.2s;
}
.btn-feat-add:hover { background: var(--rust); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
    TOAST
══════════════════════════════════════════════════════ */
.toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
    background: var(--olive); color: var(--cream);
    padding: 0.9rem 2rem; border-radius: 99px;
    font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
    box-shadow: 0 8px 32px rgba(44,34,21,0.28); z-index: 500;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
    opacity: 0; pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }


/* ══════════════════════════════════════════════════════
    FOOTER — EXACT FROM INDEX
══════════════════════════════════════════════════════ */
footer { background: var(--text-dark); color: var(--cream); padding: 4rem 5% 2rem; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    max-width: 1200px; margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(237,218,188,0.1);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(237,218,188,0.55); margin-top: 0.8rem; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin-bottom: 1rem; }
.footer-col a { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; color: rgba(237,218,188,0.55); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; max-width: 1200px; margin: 0 auto; font-size: 0.78rem; color: rgba(237,218,188,0.35); flex-wrap: wrap; gap: 0.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(237,218,188,0.08); border: 1px solid rgba(237,218,188,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; text-decoration: none; transition: background var(--transition); }
.social-links a:hover { background: var(--rust); }



/* ============================================================
   INVENTORY BUTTON STATES
   Add these rules to the bottom of wedgie.css
   (or @import this file after wedgie.css)
============================================================ */
 
/* ── Sold Out ─────────────────────────────────────────────── */
.btn-atc.sold-out {
    background:  #9e9e8c;          /* muted warm grey — clearly unavailable */
    color:       rgba(255,253,247,0.75);
    box-shadow:  none;
    cursor:      not-allowed;
    transform:   none !important;  /* cancel hover lift */
    position:    relative;
    overflow:    hidden;
}
 
/* Diagonal stripe texture — classic "unavailable" signal */
.btn-atc.sold-out::before {
    content:          '';
    position:         absolute;
    inset:            0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,253,247,0.06) 0px,
        rgba(255,253,247,0.06) 6px,
        transparent 6px,
        transparent 14px
    );
    pointer-events: none;
}
 
.btn-atc.sold-out:hover {
    background:  #9e9e8c;
    box-shadow:  none;
    transform:   none;
}
 
/* ── Low Stock (≤3 units) ─────────────────────────────────── */
.btn-atc.low-stock {
    background:     var(--rust-dark);  /* slightly darker rust = urgency */
    box-shadow:     0 8px 28px rgba(138, 74, 51, 0.5);
    animation:      pulse-low 2.2s ease-in-out infinite;
}
 
.btn-atc.low-stock:hover {
    background: #6e3622;
    box-shadow: 0 14px 36px rgba(138, 74, 51, 0.6);
}
 
@keyframes pulse-low {
    0%, 100% { box-shadow: 0 8px 28px rgba(138, 74, 51, 0.5); }
    50%       { box-shadow: 0 8px 36px rgba(138, 74, 51, 0.75); }
}
 
/* ── Loading / Checking Stock ─────────────────────────────── */
.btn-atc.loading {
    background:  var(--rust);
    opacity:     0.65;
    cursor:      wait;
    transform:   none !important;
}
 
.btn-atc.loading:hover {
    background: var(--rust);
    box-shadow: 0 8px 28px rgba(177,100,72,0.38);
    transform:  none;
}
 


/* ══════════════════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .product-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .product-hero-inner > .info-top, .gallery-col, .info-col { grid-column: auto; grid-row: auto; }
    .gallery-col { position: static; }
    .video-section-inner { grid-template-columns: 1fr; gap: 3rem; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .featured-grid { display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; gap: 1.5rem; margin-top: 2rem; }
    .feat-card { flex: 0 0 75vw; scroll-snap-align: start; }
    .feat-card.reveal { opacity: 1; transform: none; }
    .feat-footer { display: none; }
    .feat-price-pill {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: var(--rust);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 800;
        padding: 0.25rem 0.65rem;
        border-radius: 99px;
        z-index: 2;
        pointer-events: none;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; }
}
@media (max-width: 480px) {
    .specs-grid { grid-template-columns: 1fr; }
    .trust-txt { font-size: 0.58rem; }
}
