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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ========== CSS VARIABLES ========== */
:root {
    --red: #ff3333;
    --red-dark: #cc0000;
    --red-glow: rgba(255, 51, 51, 0.3);
    --pink: #ff6b8a;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --gray-dark: #1a1a1a;
    --gray-mid: #2a2a2a;
    --gray-text: #999999;
    --white: #ffffff;
    --max-width: 1200px;
    --section-pad: clamp(3rem, 8vw, 6rem);
}

/* ========== UTILITY ========== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 0 30px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--red);
}

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

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }
.fade-up-delay-5 { animation-delay: 0.5s; opacity: 0; }
.fade-up-delay-6 { animation-delay: 0.6s; opacity: 0; }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
}

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

.nav-logo {
    height: 64px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--red);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 3px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--red) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 51, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease forwards;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    background: rgba(255, 51, 51, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.hero-title span {
    display: block;
    color: var(--red);
}

.hero-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-text);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.hero-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease forwards;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--gray-dark), var(--black-card));
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.08), transparent 60%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.hero-image-label span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 0.05em;
}

.hero-image-label small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========== BESTSELLER BANNER ========== */
.bestseller-strip {
    background: var(--red);
    padding: 0.8rem 0;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.bestseller-strip-inner {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bestseller-strip-inner span {
    white-space: nowrap;
}

/* ========== PRODUCTS ========== */
.products {
    padding: var(--section-pad) 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.3), transparent);
}

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

.product-card {
    background: var(--black-card);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    border-color: rgba(255, 51, 51, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--red-glow);
}

.product-image {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #1a1a1a, #111);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-image-placeholder {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: rgba(255, 51, 51, 0.25);
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 2;
    padding: 1rem;
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    z-index: 2;
}

.product-info {
    padding: 1.2rem 1.4rem 1.4rem;
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.product-price .product-shipping {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray-text);
    margin-left: 0.3rem;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.product-sizes {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.size-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-text);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.size-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(255, 51, 51, 0.1);
}

.product-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: var(--red);
    color: var(--white);
}

/* ========== WHY VELVET INK ========== */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--black-light);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.2), transparent);
}

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

.why-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: rgba(255, 51, 51, 0.15);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 51, 51, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.7rem;
}

.why-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========== CONCERT CALLOUT ========== */
.concert-section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.concert-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concert-visual {
    position: relative;
}

.concert-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a0a0a, #0a0a0a);
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.concert-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 51, 51, 0.15), transparent 60%);
}

.concert-image-placeholder {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: rgba(255, 51, 51, 0.15);
    text-align: center;
    letter-spacing: 0.1em;
}

.concert-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.2), transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.concert-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.concert-content h2 span {
    color: var(--red);
}

.concert-content p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.concert-features {
    list-style: none;
    margin-bottom: 2rem;
}

.concert-features li {
    font-size: 0.95rem;
    color: #ccc;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.concert-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== SOCIAL / INSTAGRAM ========== */
.social-section {
    padding: var(--section-pad) 0;
    background: var(--black-light);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.social-tile {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-tile:hover {
    transform: scale(0.97);
    opacity: 0.85;
}

.social-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 51, 51, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-tile:hover::after {
    opacity: 1;
}

.social-tile-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-tile-icon {
    font-size: 1.5rem;
    opacity: 0.15;
}

.social-tile-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(255, 51, 51, 0.05);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========== EMAIL SIGNUP ========== */
.signup-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.06), transparent 70%);
    pointer-events: none;
}

.signup-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.signup-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.signup-box p {
    color: var(--gray-text);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    gap: 0.8rem;
    max-width: 480px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
    color: #666;
}

.signup-form input[type="email"]:focus {
    border-color: var(--red);
}

.signup-form button {
    padding: 0.85rem 1.8rem;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-form button:hover {
    background: var(--white);
    color: var(--red);
}

.signup-note {
    font-size: 0.75rem;
    color: #555;
    margin-top: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--gray-text);
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(255, 51, 51, 0.08);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #555;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #555;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--red);
}

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 3rem;
    }

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

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

    .hero-image-area {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .concert-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .concert-features li {
        justify-content: center;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== CART ========== */
.cart-toggle-btn {
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    position: relative;
    padding: 4px;
    transition: color 0.3s ease;
}

.cart-toggle-btn:hover {
    color: var(--red);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-count.visible {
    opacity: 1;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--black-card);
    border-left: 1px solid rgba(255, 51, 51, 0.15);
    z-index: 1600;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.cart-close {
    background: none;
    border: none;
    color: var(--gray-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-close:hover { color: var(--red); }

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

.cart-empty {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.cart-item-size {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-transform: uppercase;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--red); }

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1.5rem;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--white);
}

.cart-subtotal span:last-child {
    font-weight: 700;
}

.cart-shipping-note {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: var(--white);
    color: var(--red);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.size-link.active {
    border-color: var(--red);
    color: var(--red);
    background: rgba(255, 51, 51, 0.15);
}

.product-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-cta:disabled:hover {
    background: transparent;
    color: var(--red);
}

/* Cart count pulse for returning visitors */
.pulse {
    animation: cart-pulse 0.6s ease-in-out 3;
}

@keyframes cart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); background: var(--red); }
}

.added-feedback {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: #fff !important;
}

/* Cart item thumbnails */
.cart-item-thumb {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Cart quantity controls */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    background: none;
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    padding: 0;
}

.qty-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.cart-item-qty span {
    font-size: 0.8rem;
    color: var(--white);
    min-width: 1rem;
    text-align: center;
}

/* Payment method icons */
.cart-payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    opacity: 0.6;
}

/* Size hint on product cards */
.size-hint {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-text);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

/* Social proof / reviews section */
.social-proof {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 1.5rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.review-author {
    color: var(--gray-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof-stat {
    text-align: center;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== BLOG ========== */
.blog-page {
    padding-top: 90px;
    min-height: 100vh;
}

/* Blog listing grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    border-color: rgba(255, 51, 51, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: rgba(255, 51, 51, 0.3);
    letter-spacing: 0.1em;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--white);
}

/* Blog article */
.blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.blog-article-date {
    font-size: 0.8rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-article-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 1rem;
}

.blog-article-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-article-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 2.5rem 0 1rem;
}

.blog-article-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.blog-article-content p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-content strong {
    color: var(--white);
    font-weight: 600;
}

.blog-article-content em {
    color: var(--gray-text);
}

/* Blog product CTA banner */
.blog-cta {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.08), rgba(255, 51, 51, 0.03));
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.blog-cta p {
    font-size: 0.95rem !important;
    color: var(--gray-text) !important;
    margin-bottom: 0.75rem !important;
}

.blog-cta .btn {
    margin-top: 0.25rem;
}

/* Blog breadcrumb */
.blog-breadcrumb {
    padding: 1.5rem 0 0;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.blog-breadcrumb a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--red);
}

.blog-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Blog responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-article-content p,
    .blog-article-content ul,
    .blog-article-content ol {
        font-size: 1rem;
    }
}
