/* ============================================
   WEED N ROLL — PUNK/GRUNGE STYLES 2026
   Split Hero, Marquee, Glitch, Grain, Dirt
   ============================================ */

/* ===== GRAIN & DIRT OVERLAY ===== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    padding: 0.6rem 0;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-elevated), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-elevated), transparent);
}

.marquee {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== GLITCH EFFECT ===== */
/* ===== GLITCH EFFECT ===== */
.glitch {
    position: relative;
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.glitch::before {
    color: #ff00ff;
    z-index: -1;
    animation: glitch-1 3s infinite;
}
.glitch::after {
    color: #00ffff;
    z-index: -2;
    animation: glitch-2 2.5s infinite;
}
@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
}
@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

/* ===== NAV FIX — CART FAR RIGHT ===== */
.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    order: 3;
}

.cart-toggle-btn {
    position: relative;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    background: rgba(90, 124, 58, 0.1);
    transform: scale(1.05);
}

.cart-toggle-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-warm);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 1px solid var(--color-border);
        display: none !important;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 101;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        transition: all 0.3s ease;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 0.5rem;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
}

/* ===== SPLIT HERO LAYOUT ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

@media (min-width: 1101px) {
    .hero-split {
        gap: 3rem;
    }
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(90, 124, 58, 0.12);
    border: 1px solid rgba(90, 124, 58, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    color: var(--color-warm);
    text-shadow: 0 0 30px rgba(193, 127, 62, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-slider-dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: center;
}

@media (min-width: 901px) {
    .hero-showcase .hero-slider-dots {
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}

/* ===== SHOWCASE SLIDER (RIGHT SIDE) ===== */
.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.showcase-slider {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9) translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
}

.showcase-slide img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.showcase-slide.active img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.showcase-tag {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(15, 12, 9, 0.85);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-light);
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* ===== DOTS ===== */
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--color-primary-light);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== PRODUCT CARD LINKS ===== */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-card-link:hover .product-image img {
    transform: scale(1.08);
}

.product-card-link:hover .product-name {
    color: var(--color-primary-light);
}

.product-card-link .product-card {
    height: 100%;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dim);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--color-text-dim);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-text-dim);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 16px; }
}

/* ===== MOBILE HERO ===== */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        gap: 0.25rem;
    }

    .hero-content {
        order: 2;
        padding: 0.5rem 0 0.5rem;
    }

    .hero-showcase {
        order: 1;
        min-height: 380px;
    }

    .showcase-slider {
        max-width: min(90vw, 340px);
        min-height: 380px;
        aspect-ratio: 3/4;
    }

    .showcase-slide {
        background: var(--color-bg-elevated);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .showcase-slide img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: contain;
        border-radius: var(--radius-lg);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-slider-dots {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .glitch::before,
    
}

@media (max-width: 480px) {
    .hero-showcase {
        min-height: 320px;
    }

    .showcase-slider {
        max-width: min(88vw, 300px);
        min-height: 320px;
        aspect-ratio: 3/4;
    }

    .showcase-slide {
        background: var(--color-bg-elevated);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .showcase-slide img {
        object-fit: contain;
        border-radius: var(--radius-lg);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .marquee span {
        font-size: 0.75rem;
    }
}

/* ===== CART PANEL FIXES ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg-elevated);
    border-left: 1px solid var(--color-border);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cart-panel.open {
    right: 0;
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-panel-close {
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.cart-panel-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1rem;
    color: var(--color-text-dim);
    text-align: center;
}

.cart-panel-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cart-total-row strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-primary-light);
}

.cart-checkout-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

/* ===== CART ITEM ===== */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.cart-item-qty span {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: var(--color-text-dim);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff5555;
}

/* ===== NOTIFICATION ===== */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1100;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    white-space: nowrap;
}

.cart-notification.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== DIRTY DECORATIVE ELEMENTS ===== */
.dirt-stripe {
    height: 3px;
    background: repeating-linear-gradient(
        45deg,
        var(--color-primary),
        var(--color-primary) 10px,
        var(--color-warm) 10px,
        var(--color-warm) 20px
    );
    opacity: 0.6;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--color-text-dim);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.nav-link {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
}

/* ===== PRODUCT DETAIL STYLES ===== */

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-elevated);
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.main-image:hover img {
    transform: scale(1.03);
}

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

.thumbnail {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    background: var(--color-bg-elevated);
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 2px rgba(90, 124, 58, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.3rem;
    background: rgba(15, 12, 9, 0.8);
    color: var(--color-text-muted);
    font-size: 0.65rem;
    text-align: center;
    font-weight: 500;
}

/* Product Details */
.product-details {
    padding-top: 0.5rem;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.product-tagline-detail {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
}

.price-block {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old {
    color: var(--color-text-dim);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.price-current {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.price-save {
    padding: 0.25rem 0.6rem;
    background: rgba(193, 127, 62, 0.15);
    color: var(--color-warm);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Customization */
.product-customize {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.customize-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.wood-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.wood-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: var(--color-bg);
}

.wood-option:hover {
    border-color: var(--color-primary);
    background: rgba(90, 124, 58, 0.05);
}

.wood-option.active {
    border-color: var(--color-primary-light);
    background: rgba(90, 124, 58, 0.1);
    color: var(--color-primary-light);
    font-weight: 600;
}

.wood-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: block;
}

.wood-swatch.buk { background: #c4a77d; }
.wood-swatch.dub { background: #8b6914; }
.wood-swatch.orech { background: #5c3d1e; }

.engrave-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    margin-bottom: 0.5rem;
}

.engrave-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(90, 124, 58, 0.15);
}

/* Quantity & Cart */
.quantity-cart {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-btn {
    padding: 0.75rem 1rem;
    background: var(--color-bg-elevated);
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.qty-input {
    width: 50px;
    text-align: center;
    background: var(--color-bg);
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 1rem;
    padding: 0.75rem 0;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    background: var(--color-bg-elevated);
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* Specs Table */
.specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.specs td:first-child {
    color: var(--color-text-muted);
    width: 40%;
}

/* Related Products */
.related-products {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card-info {
    padding: 1rem;
}

.related-card-info h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.related-card-info .related-price {
    color: var(--color-primary-light);
    font-weight: 600;
}

/* Reviews */
.product-reviews {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.review-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

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

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.review-stars {
    color: var(--color-warm);
    font-size: 0.9rem;
}

.review-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Video Placeholder */
.product-video {
    margin: 2rem 0;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--color-bg-elevated);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-dim);
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    background: rgba(90, 124, 58, 0.05);
}

.video-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

/* ===== SHARE BTN (alias for social-btn used in HTML) ===== */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--color-bg-elevated);
    cursor: pointer;
    line-height: 1;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.share-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-2px);
    background: rgba(90, 124, 58, 0.08);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: default;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 1001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ===== PRODUCT HIGHLIGHTS WITH ICONS ===== */
.highlight-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    transition: all 0.2s ease;
}

.highlight-list li:hover {
    border-color: var(--color-primary);
    background: rgba(90, 124, 58, 0.06);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .social-share {
        flex-wrap: wrap;
    }
    .share-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }
    .share-btn svg {
        width: 14px;
        height: 14px;
    }
}


/* ===== WNR GALLERY SECTION ===== */
.wnr-gallery {
    padding: 6rem 0;
    background: var(--color-bg);
    position: relative;
}

.wnr-gallery .section-header {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}


.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) saturate(1.1);
}

.gallery-tile:hover img {
    transform: scale(1.08);
    filter: brightness(0.7) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,12,9,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.gallery-subtitle {
    font-size: 0.85rem;
    color: rgba(139, 94, 60, 0.9);
    margin-top: 0.25rem;
}

/* Feature tile sizes */
.gallery-tile-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-tile-2 {
    grid-column: 2;
    grid-row: 1;
}

.gallery-tile-3 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-tile-4 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-tile-5 {
    grid-column: 3;
    grid-row: 2;
}


.gallery-tile-6 {
    grid-column: 1;
    grid-row: 2;
}


/* Large featured tile */
.gallery-tile-1 .gallery-overlay {
    opacity: 1;
}

.gallery-tile-1 .gallery-title {
    font-size: 2rem;
}


.gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===== BIGGER HERO SHOWCASE ===== */
.hero-showcase {
    min-height: 500px;
}


.showcase-slider {
    max-width: 480px;
}

.showcase-slide img {
    max-width: 90%;
    max-height: 90%;
}


.showcase-tag {
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
}

/* Product cards - responsive thumbnails */
.product-image {
    max-height: 440px;
    aspect-ratio: 4/3;
}

.product-image img {
    max-height: 420px;
    object-fit: contain;
}


/* Mobile gallery */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-tile-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .gallery-tile-2 {
        grid-column: 1;
        grid-row: 2;
    }
    .gallery-tile-3 {
        grid-column: 2;
        grid-row: 2;
    }
    .gallery-tile-4 {
        grid-column: 1;
        grid-row: 3;
    }
    .gallery-tile-5 {
        grid-column: 2;
        grid-row: 3;
    }
    .gallery-tile-6 {
        display: none;
    }
    .gallery-tile-1 .gallery-overlay {
        opacity: 1;
    }
    .hero-showcase {
        min-height: 380px;
    }
    .showcase-slider {
        max-width: 340px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .gallery-tile-1 {
        grid-column: 1 / 3;
    }
    .gallery-tile-5, .gallery-tile-6 {
        display: none;
    }
    .product-image {
        height: 320px;
    }
}


/* ===== MOBILE NAV MENU FIX ===== */
/* JS toggles .active class, but CSS had no right:0 for open state */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 1px solid var(--color-border);
        display: none !important;
    }

    .nav-menu.open {
        right: 0;
        display: flex !important;
    }

    .nav-menu.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-toggle {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }
}


/* ===== HIDE CART PANEL ON MOBILE ===== */
@media (max-width: 768px) {
    .cart-panel {
        display: none !important;
    }
}


/* ===== BAND SOCIAL BUTTONS (Task 3) ===== */
.band-socials {
    display: flex;
    gap: 0.6rem;
    padding: 0 1.25rem 1rem;
}

.band-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(90, 124, 58, 0.12);
    border: 1px solid rgba(90, 124, 58, 0.2);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.25s ease;
}

.band-social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 124, 58, 0.3);
}

.band-social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.band-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 1.25rem 1.25rem;
    padding: 0.55rem 1rem;
    background: rgba(90, 124, 58, 0.1);
    border: 1px solid rgba(90, 124, 58, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
}

.band-profile-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateX(3px);
}


/* ===== 3D MODEL TEASER (Task 5) ===== */
.model-3d-teaser {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(15, 12, 9, 0.7);
    border: 1px solid rgba(90, 124, 58, 0.3);
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary-light);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.model-3d-teaser:hover {
    opacity: 1;
    border-color: var(--color-primary);
}

.wireframe-cube {
    width: 24px;
    height: 24px;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 4s linear infinite;
}

.wireframe-cube::before,
.wireframe-cube::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--color-primary-light);
    opacity: 0.7;
}

.wireframe-cube::before {
    transform: rotateY(45deg) rotateX(45deg);
}

.wireframe-cube::after {
    transform: rotateY(-45deg) rotateX(-45deg);
}

@keyframes cube-rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@media (max-width: 900px) {
    .model-3d-teaser {
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    .wireframe-cube {
        width: 20px;
        height: 20px;
    }
}


/* ===== BAND PROFILE PAGES (Task 4) ===== */
.band-hero-banner {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 4rem var(--container-padding);
    position: relative;
    margin-top: 70px;
}

.band-hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding-bottom: 2rem;
}

.band-genre-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(90, 124, 58, 0.2);
    border: 1px solid rgba(90, 124, 58, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.band-hero-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.band-hero-banner blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-muted);
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Bio */
.band-bio {
    padding: 4rem 0;
}

.band-bio .section-title {
    margin-bottom: 2rem;
}

.band-bio-text {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.band-bio-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* Social Grid */
.band-social-section {
    padding: 2rem 0 4rem;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.band-social-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.band-social-grid .band-social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.band-social-grid .band-social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 124, 58, 0.3);
}

.band-social-grid .band-social-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-label {
    font-weight: 500;
}

/* WNR Collab */
.band-collab {
    padding: 2rem 0 4rem;
}

.band-collab-box {
    background: rgba(90, 124, 58, 0.06);
    border: 1px solid rgba(90, 124, 58, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 720px;
}

.band-collab-box h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary-light);
}

.band-collab-box p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Back Nav */
.band-back {
    padding: 2rem 0 4rem;
    text-align: center;
}

.band-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .band-hero-banner {
        min-height: 50vh;
        padding: 3rem 1rem;
    }
    .band-social-grid {
        gap: 0.75rem;
    }
    .band-social-grid .band-social-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    .band-collab-box {
        padding: 1.5rem;
    }
}

/* ===== VIBE PHOTO SLIDER (crossfade) ===== */
.vibe-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 1;
}

.vibe-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.vibe-slide.active {
    opacity: 1;
    z-index: 2;
}

.vibe-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Show vibe-slider only on mobile (< 900px) */

    .hero-showcase {
        position: relative;
        min-height: 420px;
        width: 100%;
        max-width: min(92vw, 420px);
        aspect-ratio: 3/4;
        margin: 0 auto;
    }
    .vibe-slider {
        display: block !important;
        position: absolute;
        inset: 0;
    }
}

@media (max-width: 480px) {
    .hero-showcase {
        min-height: 360px;
        max-width: min(90vw, 380px);
    }
}

/* On desktop: show both side by side */
@media (min-width: 900px) {
    .vibe-slider {
        display: none !important;
    }
}



/* ===== MATERIAL SYMBOLS ICONS ===== */
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.feature-icon.material-symbols-rounded {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    font-size: 28px;
    background: rgba(90, 124, 58, 0.12);
    border: 1px solid rgba(90, 124, 58, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-primary-light);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

/* Remove old SVG icon styles if present */
.feature-icon svg {
    display: none;
}

/* Lighter hero */
.hero {
    min-height: 85vh;
    padding-bottom: 2rem;
}

.hero-content {
    padding: 1.5rem 0;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-showcase {
        min-height: 380px;
    }

    .showcase-slider {
        max-width: min(85vw, 360px);
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .hero-showcase {
        min-height: 320px;
    }

    .showcase-slider {
        max-width: min(85vw, 300px);
        min-height: 320px;
    }
}



/* ===== PSEUDO-3D CROSSFADE SLIDER (PRODUCT ONLY) ===== */
.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 680px;
}

.pseudo-3d {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 1;
    pointer-events: none;
    z-index: 2;
    opacity: 1 !important;
}

.pseudo-3d img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: pseudo3d 8s infinite;
    opacity: 0;
}

.pseudo-3d img:nth-child(1) { animation-delay: 0s; }
.pseudo-3d img:nth-child(2) { animation-delay: 2s; }
.pseudo-3d img:nth-child(3) { animation-delay: 4s; }
.pseudo-3d img:nth-child(4) { animation-delay: 6s; }

@keyframes pseudo3d {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    22%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Desktop: bigger showcase */
@media (min-width: 901px) {
    .hero-showcase {
        min-height: 760px;
    }
    .pseudo-3d {
        max-width: 780px;
    }
}

/* Mobile: compact hero */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        gap: 0.25rem;
    }

    .hero-content {
        order: 2;
        padding: 0.5rem 0 0.5rem;
    }

    .hero-showcase {
        order: 1;
        min-height: 300px;
    }

    .pseudo-3d {
        max-width: min(80vw, 300px);
        min-height: 300px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6.5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-showcase {
        min-height: 260px;
    }

    .pseudo-3d {
        max-width: min(72vw, 260px);
        min-height: 260px;
    }

    .hero-badge {
        margin-bottom: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7.5vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ============================================
   MOBILE COMPACTNESS FIXES 2026-05-01
   ============================================ */
@media (max-width: 900px) {
    section, .products, .limited, .features, .magazine, .wnr-gallery, .bands {
        padding: 2rem 0 !important;
    }
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    .section-title {
        font-size: clamp(1.5rem, 4.5vw, 2.25rem) !important;
        margin-bottom: 0.4rem;
    }
    .section-desc {
        font-size: 0.9rem !important;
    }
    .products-grid, .limited-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .product-card, .limited-card {
        width: 100%;
        max-width: 100%;
    }
    .product-card .product-image, .limited-card .limited-image {
        height: auto;
        max-height: 260px;
    }
    .product-card .product-image img, .limited-card .limited-image img {
        width: 100%;
        height: 100%;
        max-height: 260px;
    }
    .product-name {
        font-size: 1.1rem;
    }
    .feature-card {
        padding: 1rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .band-card {
        width: 100%;
        max-width: 100%;
    }
    .article-card {
        padding: 0;
    }
    .article-content {
        padding: 1rem;
    }
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    .scroll-indicator, .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .products-grid, .limited-grid {
        gap: 0.75rem;
    }
    .product-card .product-image, .limited-card .limited-image {
        max-height: 220px;
    }
    .product-price .price-current {
        font-size: 1.1rem;
    }
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
}
