/* ============================================
   CAW'S — Streetwear Brand Stylesheet
   Theme: Dark, Chaotic, Edgy, Unique
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;

    --text-primary: #e8e8e8;
    --text-secondary: #8a8a8a;
    --text-muted: #555555;

    --accent: #ff1a1a;
    --accent-dark: #cc0000;
    --accent-glow: rgba(255, 26, 26, 0.3);

    --border-color: #222222;
    --border-light: #333333;

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Inter', -apple-system, sans-serif;

    --nav-height: 70px;
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-primary);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ---- Cursor Glow ---- */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

@media (hover: hover) {
    .cursor-glow {
        opacity: 1;
    }
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    letter-spacing: 0.3em;
    color: var(--text-primary);
    position: relative;
    animation: preloaderGlitch 2s infinite;
}

.preloader-text::before,
.preloader-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-text::before {
    color: var(--accent);
    animation: glitchLeft 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.preloader-text::after {
    color: #00ffff;
    animation: glitchRight 0.3s infinite;
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 20px auto;
    animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderGlitch {

    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 preloaderLine {

    0%,
    100% {
        width: 60px;
        opacity: 1;
    }

    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes glitchLeft {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 0);
    }

    40% {
        transform: translate(3px, 0);
    }

    60% {
        transform: translate(-1px, 0);
    }

    80% {
        transform: translate(2px, 0);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitchRight {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(3px, 0);
    }

    40% {
        transform: translate(-3px, 0);
    }

    60% {
        transform: translate(1px, 0);
    }

    80% {
        transform: translate(-2px, 0);
    }

    100% {
        transform: translate(0);
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition-fast), backdrop-filter var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    position: relative;
    transition: var(--transition-fast);
}

.logo-text:hover {
    color: var(--accent);
}

.logo-text::before,
.logo-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.1s;
}

.logo-text::before {
    color: var(--accent);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.logo-text::after {
    color: #00ffff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.nav-logo:hover .logo-text::before {
    opacity: 1;
    animation: glitchLeft 0.2s infinite;
}

.nav-logo:hover .logo-text::after {
    opacity: 1;
    animation: glitchRight 0.2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    padding: 8px;
}

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

.cart-count {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 26, 26, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 26, 26, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 10, 10, 0.95) 40%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    /* This is where the user's banner will go as background-image */
    background: var(--bg-primary);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--accent);
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 14vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    position: relative;
}

.title-accent {
    color: var(--accent);
    text-shadow:
        0 0 40px var(--accent-glow),
        0 0 80px rgba(255, 26, 26, 0.15);
    position: relative;
}

.title-accent::before,
.title-accent::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.title-accent::before {
    color: #ff0000;
    animation: heroGlitch1 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.title-accent::after {
    color: #00ffff;
    animation: heroGlitch2 4s infinite;
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

@keyframes heroGlitch1 {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    91% {
        opacity: 0.8;
        transform: translate(-5px, 0);
    }

    93% {
        opacity: 0;
        transform: translate(5px, 0);
    }

    95% {
        opacity: 0.6;
        transform: translate(-3px, 0);
    }

    97% {
        opacity: 0;
        transform: translate(0);
    }
}

@keyframes heroGlitch2 {

    0%,
    88%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    89% {
        opacity: 0.8;
        transform: translate(5px, 0);
    }

    91% {
        opacity: 0;
        transform: translate(-5px, 0);
    }

    94% {
        opacity: 0.6;
        transform: translate(3px, 0);
    }

    96% {
        opacity: 0;
        transform: translate(0);
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Scroll Indicator */
/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    border: 2px solid var(--text-primary);
    position: relative;
    margin-bottom: 6px;
}

.wheel {
    height: 4px;
    width: 4px;
    /* fixed width */
    display: block;
    margin: 5px auto;
    background: var(--accent);
    position: relative;
    border-radius: 50%;
    animation: mouse-wheel 1.2s ease infinite;
}

.m_scroll_arrows {
    display: block;
    width: 10px;
    /* larger arrow */
    height: 10px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    margin: 0 0 3px 0;
    /* closer spacing */
    width: 10px;
    height: 10px;
    animation: mouse-scroll 1s infinite;
    animation-direction: alternate;
}

.unu {
    margin-top: 1px;
    animation-delay: .1s;
}

.doi {
    margin-top: -6px;
    animation-delay: .2s;
}

.trei {
    margin-top: -6px;
    animation-delay: .3s;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}



/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    background: var(--accent);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--bg-primary);
    font-weight: 700;
}

.marquee-dot {
    font-size: 0.5rem !important;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECTION GLOBAL STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

.text-accent {
    color: var(--accent);
}

/* Glitch Text */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text::before {
    color: var(--accent);
    animation: heroGlitch1 6s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}

.glitch-text::after {
    color: #00ffff;
    animation: heroGlitch2 6s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 100px 0;
    position: relative;
}

.products .container,
.coming-soon .container {
    max-width: 1440px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coming-soon .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-secondary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: contrast(1.1) brightness(0.9);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    display: flex;
    justify-content: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.btn-quick-add {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: white;
    background: var(--accent);
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

.btn-quick-add:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 20px var(--accent-glow);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    z-index: 2;
}

.product-badge.hot {
    background: #ff6600;
}

.product-badge.promo {
    background: #8b00ff;
}

.product-sold-out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.product-sold-out span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    transform: rotate(-15deg);
    border: 2px solid var(--text-muted);
    padding: 6px 20px;
}

.btn-quick-add:disabled {
    background: var(--bg-secondary);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.product-info {
    padding: 20px;
}

/* ============================================
   DROP COUNTDOWN
   ============================================ */
.drop-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-item span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.countdown-item small {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 0.1em;
}

#dropDateDisplay {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-soon {
    padding: 80px 0;
    background: #050505;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.locked-grid {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(100%) blur(1px);
    transition: all 0.5s ease;
}

.coming-soon:hover .locked-grid {
    filter: grayscale(80%) blur(0px);
    opacity: 0.7;
}

.locked-grid .product-card .product-overlay {
    display: none;
    /* Hide add to cart buttons */
}

/* Add lock icon overlay for coming soon items */
.locked-grid .product-card::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 10;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .drop-countdown {
        gap: 10px;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }
}

.product-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    opacity: 0.9;
}



.about-accent-block {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent);
    z-index: -1;
}

.about-content .section-tag {
    display: block;
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--accent);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */
.manifesto {
    padding: 120px 0;
    position: relative;
    background: var(--bg-secondary);
}

.manifesto::before,
.manifesto::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
    opacity: 0.3;
}

.manifesto::before {
    top: 0;
}

.manifesto::after {
    bottom: 0;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-content .section-tag {
    margin-bottom: 32px;
}

.manifesto-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
}

.quote-mark {
    color: var(--accent);
    font-size: 1.5em;
    opacity: 0.5;
}

.quote-mark-end {
    display: inline;
}

.manifesto-author {
    margin-top: 32px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: 80px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.newsletter-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    min-width: 280px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-social h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.footer-credit {
    opacity: 0.5;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    transform: translateY(120%);
    transition: transform var(--transition-base);
}

.toast.show {
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.toast-content svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.products-grid .product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.products-grid .product-card:nth-child(3) {
    transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(4) {
    transition-delay: 0.3s;
}

.products-grid .product-card:nth-child(5) {
    transition-delay: 0.4s;
}

.products-grid .product-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .newsletter-form .btn {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right var(--transition-base);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-title .title-line {
        font-size: clamp(2.5rem, 16vw, 5rem);
    }

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

    .product-info {
        padding: 14px;
    }

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

    .product-price {
        font-size: 0.75rem;
    }

    .product-overlay {
        transform: translateY(0);
        padding: 10px;
    }

    .btn-quick-add {
        padding: 10px 16px;
        font-size: 0.6rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .manifesto-quote {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}