/*
Theme Name: Cockroach Theme
Author: Rahul
Version: 1.0
*/

/*
Theme Name: Cockroach Merchandise
Theme URI: https://cockroachmerch.in
Author: Cockroach Merchandise
Author URI: https://cockroachmerch.in
Description: Premium streetwear WordPress theme with WooCommerce support, dynamic custom sections, countdown timers, and full homepage builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cockroach-merch
Tags: woocommerce, ecommerce, streetwear, dark, custom-logo, custom-menu, featured-images
*/

/* =========================================================
   GLOBAL RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange:       #ff5a00;
    --orange-dark:  #ff3300;
    --orange-dim:   #cc4400;
    --white:        #ffffff;
    --muted:        #9b9b9b;
    --dark:         #050505;
    --dark2:        #0d0d0d;
    --dark3:        #141414;
    --card:         #111111;
    --border:       rgba(255,255,255,.08);
    --text:         #cccccc;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
}

/* =========================================================
   UTILITY
========================================================= */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    box-shadow: 0 8px 30px rgba(255,85,0,.25);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,85,0,.35); color: #fff; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.18);
    color: var(--white);
    padding: 15px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: border-color .2s, color .2s;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* =========================================================
   SECTION SHARED
========================================================= */
.sec { padding: 80px 60px; }
.sec.alt { background: var(--dark2); }

.sec-head { text-align: center; margin-bottom: 52px; }

.sec-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--border);
}

.sec-title {
    font-family: 'Black Ops One', cursive;
    font-size: clamp(28px, 3.5vw, 44px);
    text-transform: uppercase;
    color: var(--white);
}
.sec-title span { color: var(--orange); }

.sec-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.sec-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.sec-head-row .sec-title { margin: 0; }

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    transition: color .2s;
}
.view-all-link:hover { color: var(--orange); }
.view-all-link .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: border-color .2s;
}
.view-all-link:hover .circle { border-color: var(--orange); color: var(--orange); }

/* =========================================================
   TOP ANNOUNCEMENT BAR
========================================================= */
.top-bar {
    background: #090909;
    border-bottom: 1px solid #161616;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 200;
}
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-left span { color: var(--orange); }
.top-bar-left .sep { color: #222; font-size: 18px; font-weight: 300; }
.top-bar-right { color: #555; }

/* =========================================================
   NAVIGATION
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 199;
    background: rgba(6,6,6,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #161616;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-shield {
    width: 48px; height: 48px;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid #2a2a2a;
    clip-path: polygon(50% 0%,100% 20%,100% 80%,50% 100%,0% 80%,0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.logo-shield::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(255,85,0,.25) 0%,transparent 60%);
}
.logo-shield img { width: 32px; height: 32px; object-fit: contain; position: relative; z-index: 1; }
.logo-shield .logo-emoji { font-size: 22px; position: relative; z-index: 1; }
.logo-text { line-height: 1; }
.logo-text .brand {
    font-family: 'Black Ops One', cursive;
    font-size: 19px;
    letter-spacing: 2px;
    color: var(--white);
    display: block;
}
.logo-text .sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    color: #444;
    text-transform: uppercase;
}

.main-nav { display: flex; gap: 0; }
.main-nav li a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    padding: 0 16px;
    display: block;
    line-height: 72px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.main-nav li a:hover,
.main-nav li.current-menu-item a { color: var(--orange); border-bottom-color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    color: #888;
    transition: color .2s;
    font-size: 18px;
}
.nav-icon-btn:hover { color: var(--white); }
.nav-icon-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.cart-wrapper { position: relative; }
.cart-count {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--orange);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); display: block; transition: all .3s; }

/* =========================================================
   TICKER
========================================================= */
.ticker {
    background: var(--dark2);
    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
    padding: 13px 0;
    overflow: hidden;
    position: relative;
}
.ticker::before, .ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--dark2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--dark2), transparent); }

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    padding: 0 32px;
}
.ticker-item.hot { color: var(--orange); }
.ticker-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #2a2a2a;
    flex-shrink: 0;
}
.ticker-item.hot .ticker-dot { background: var(--orange); }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   HERO
========================================================= */
.hero {
    min-height: 100vh;
    background: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,90,0,.14), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,60,0,.16), transparent 35%),
        linear-gradient(to bottom, #050505 0%, #0d0d0d 45%, #170700 100%);
}
.hero-fire {
    position: absolute;
    bottom: -120px; left: -10%;
    width: 120%; height: 420px;
    background:
        radial-gradient(circle at 20% 100%, rgba(255,80,0,.8), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255,50,0,.8), transparent 45%),
        radial-gradient(circle at 80% 100%, rgba(255,120,0,.8), transparent 40%);
    filter: blur(70px);
    animation: fireMove 6s ease-in-out infinite alternate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,.015), rgba(255,255,255,.015));
    opacity: .16;
    animation: smokeAnim 30s linear infinite;
}
.embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.embers span {
    position: absolute;
    bottom: -40px;
    width: 4px; height: 4px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange);
    animation: embersAnim 10s linear infinite;
}
.embers span:nth-child(1){ left:10%; animation-delay:0s; }
.embers span:nth-child(2){ left:20%; animation-delay:2s; }
.embers span:nth-child(3){ left:35%; animation-delay:4s; }
.embers span:nth-child(4){ left:50%; animation-delay:1s; }
.embers span:nth-child(5){ left:65%; animation-delay:5s; }
.embers span:nth-child(6){ left:75%; animation-delay:3s; }
.embers span:nth-child(7){ left:85%; animation-delay:6s; }
.embers span:nth-child(8){ left:95%; animation-delay:2s; }

.hero-content { position: relative; z-index: 5; max-width: 620px; }

.hero-eyebrow {
    color: var(--orange);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
}

.hero-title {
    font-size: clamp(70px, 9vw, 140px);
    line-height: .88;
    color: #fff;
    margin: 0;
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,90,0,.25), 0 0 50px rgba(255,60,0,.18);
}
.hero-title .orange-line {
    display: block;
    color: var(--orange);
    text-shadow: 0 0 15px rgba(255,90,0,.8), 0 0 40px rgba(255,50,0,.35);
}

.hero-sub {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 28px 0 40px;
    max-width: 520px;
}

.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.h-badge { display: flex; align-items: center; gap: 12px; }
.h-badge-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.h-badge-text strong { display: block; color: #fff; font-size: 12px; letter-spacing: 1px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }
.h-badge-text span { color: var(--muted); font-size: 11px; }

.hero-visual {
    width: 42%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glow-circle {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,90,0,.22), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.tshirt-card {
    width: 320px; height: 390px;
    background: #111;
    border: 1px solid rgba(255,90,0,.18);
    position: relative;
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(255,90,0,.12), inset 0 0 80px rgba(255,60,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-6deg);
    animation: floatAnim 5s ease-in-out infinite;
    overflow: hidden;
}
.tshirt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,90,0,.08), transparent 60%);
}
.tshirt-neck {
    position: absolute;
    top: -14px;
    width: 90px; height: 40px;
    border: 8px solid #1d1d1d;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
}
.tshirt-design { position: relative; z-index: 2; text-align: center; }
.tshirt-small-text { color: #777; letter-spacing: 4px; font-size: 12px; margin-bottom: 16px; font-family: 'Barlow Condensed', sans-serif; }
.tshirt-main-text {
    font-size: 48px;
    line-height: 1;
    color: #fff;
    font-family: 'Black Ops One', cursive;
}
.tshirt-main-text .sub-line {
    display: block;
    margin-top: 12px;
    color: var(--orange);
    font-size: 26px;
    text-shadow: 0 0 20px rgba(255,90,0,.5);
}
.tshirt-roach { margin-top: 30px; font-size: 40px; }

/* Hero product image alternative */
.tshirt-card .hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* =========================================================
   FEATURED COLLECTIONS
========================================================= */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fc-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: border-color .25s, transform .25s;
    background: var(--card);
}
.fc-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.fc-card:hover .fc-card-img img { transform: scale(1.08); }

.fc-card-img {
    aspect-ratio: 3/4;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}
.fc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fc-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
    z-index: 1;
}
.fc-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    z-index: 3;
}
.fc-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 16px;
    z-index: 2;
}
.fc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}
.fc-sub { font-size: 12px; color: var(--muted); }
.fc-price {
    font-family: 'Black Ops One', cursive;
    font-size: 16px;
    color: var(--orange);
    margin-top: 6px;
}
.fc-viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    min-height: 200px;
    font-family: 'Black Ops One', cursive;
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    background: var(--card);
}
.fc-viewall:hover { border-color: var(--orange); color: var(--orange); }
.fc-viewall .arrow { font-size: 24px; color: var(--orange); }

/* =========================================================
   ABOUT BRAND
========================================================= */
.about-section { padding: 80px 60px; background: var(--dark2); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-left h2 { font-size: 44px; margin-bottom: 16px; }
.about-left p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 20px; font-family: 'Barlow', sans-serif; }
.feature-list { margin-bottom: 30px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 9px;
}
.feature-list li::before {
    content: '';
    width: 16px; height: 16px;
    background: var(--orange);
    clip-path: polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);
    flex-shrink: 0;
}

.brand-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.emblem-wrap {
    width: 280px; height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.emblem-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,90,0,.2), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
.emblem-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255,90,0,.2);
    animation: spinSlow 20s linear infinite;
}
.emblem-inner {
    width: 220px; height: 220px;
    background: var(--card);
    border-radius: 50%;
    border: 2px solid rgba(255,90,0,.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.emblem-inner img { width: 80px; height: 80px; object-fit: contain; }
.emblem-inner .logo-icon-new { font-size: 60px; }
.emblem-inner .name {
    font-family: 'Black Ops One', cursive;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}

.about-right { display: flex; flex-direction: column; gap: 0; }
.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-bottom: none;
    transition: background .2s;
}
.stat-box:last-child { border-bottom: 1px solid var(--border); }
.stat-box:hover { background: rgba(255,90,0,.04); }
.stat-num {
    font-family: 'Black Ops One', cursive;
    font-size: 36px;
    color: var(--orange);
    line-height: 1;
    min-width: 80px;
}
.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
}

/* =========================================================
   PRODUCTS GRID
========================================================= */
.products-section { padding: 80px 60px; background: var(--dark); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: border-color .3s, transform .3s;
}
.product-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.product-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--orange);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    z-index: 3;
}
.product-badge.limited { background: #cc2200; color: #fff; }
.product-badge.new     { background: #1a6622; color: #fff; }

.product-wishlist {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px; height: 30px;
    border: 1px solid #252525;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 3;
    transition: border-color .2s, color .2s;
    color: #555;
}
.product-wishlist:hover { border-color: var(--orange); color: var(--orange); }

.product-img {
    aspect-ratio: 1;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img a { display: block; width: 100%; height: 100%; }

.product-info { padding: 14px; }
.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}
.product-name:hover { color: var(--orange); }

.product-price { font-family: 'Black Ops One', cursive; font-size: 20px; color: var(--orange); }
.product-price del { font-size: 13px; color: #333; margin-left: 6px; font-family: 'Barlow Condensed', sans-serif; font-weight: 400; }
.product-price ins { text-decoration: none; }

.product-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.size-option {
    min-width: 38px; height: 36px;
    padding: 0 10px;
    background: #141414;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .25s;
    position: relative;
    overflow: hidden;
}
.size-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s;
    z-index: 0;
}
.size-option span { position: relative; z-index: 1; }
.size-option:hover { transform: translateY(-2px); }
.size-option:hover::before { transform: scaleX(1); }

.add-cart-btn {
    width: 36px; height: 36px;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.add-cart-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* WooCommerce price override */
.woocommerce-Price-amount { font-family: 'Black Ops One', cursive; }

/* =========================================================
   DROP / COUNTDOWN BANNER
========================================================= */
.drop-banner {
    background: var(--dark2);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}
.drop-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 72% 50%, rgba(140,48,0,.22) 0%, transparent 60%);
    pointer-events: none;
}
.drop-left { padding: 56px 44px 56px 64px; position: relative; z-index: 1; }
.drop-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.drop-title {
    font-family: 'Black Ops One', cursive;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.drop-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 28px;
}
.countdown { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.count-box {
    background: var(--dark);
    border: 1px solid #1e1e1e;
    padding: 14px 18px;
    text-align: center;
    min-width: 64px;
}
.count-num {
    font-family: 'Black Ops One', cursive;
    font-size: 42px;
    color: var(--orange);
    line-height: 1;
    display: block;
}
.count-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3a3a3a;
    text-transform: uppercase;
}
.drop-right {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.drop-hoodie-text {
    font-family: 'Black Ops One', cursive;
    position: absolute;
    font-size: 90px;
    letter-spacing: 8px;
    color: rgba(255,255,255,.04);
    line-height: 1;
    text-align: center;
    transform: rotate(-8deg);
    white-space: nowrap;
    pointer-events: none;
}
.drop-hoodie {
    font-size: 180px;
    position: relative;
    z-index: 2;
    line-height: 1;
}
.drop-hoodie img { width: 280px; height: auto; object-fit: contain; position: relative; z-index: 2; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials { background: var(--dark2); border-top: 1px solid var(--border); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 26px;
    transition: border-color .2s;
}
.test-card:hover { border-color: rgba(255,85,0,.3); }
.test-stars { color: var(--orange); font-size: 13px; margin-bottom: 12px; letter-spacing: 1px; }
.test-text { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; font-family: 'Barlow', sans-serif; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.test-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
}
.test-date { font-size: 11px; color: var(--muted); }

/* =========================================================
   CUSTOM ORDER FORM / CREATE TOGETHER
========================================================= */
.create-together { padding: 80px 60px; background: var(--dark); }
.ct-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ct-left h2 { font-size: clamp(28px,3.5vw,42px); margin-bottom: 10px; }
.ct-left h2 span { color: var(--orange); }
.ct-left p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; font-family: 'Barlow', sans-serif; }

.chat-list { display: flex; flex-direction: column; }
.chat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    color: inherit;
}
.chat-item:last-child { border-bottom: 1px solid var(--border); }
.chat-item:hover { background: var(--card); }
.chat-item.active { background: var(--card); border-left: 2px solid var(--orange); }
.chat-icon {
    width: 36px; height: 36px;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.chat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}
.chat-sub { font-size: 11px; color: var(--muted); }
.chat-arrow { margin-left: auto; color: var(--muted); font-size: 13px; }

.ct-right h3 {
    font-family: 'Black Ops One', cursive;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ct-right h3 span { color: var(--orange); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}
.form-input {
    background: var(--card);
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: #333; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-full { grid-column: span 2; }
.form-submit {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background .2s;
    margin-top: 8px;
}
.form-submit:hover { background: var(--orange-dark); }

/* =========================================================
   JOIN THE TRIBE CTA
========================================================= */
.join-tribe { background: var(--orange); padding: 64px 60px; }
.jt-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.jt-left h2 {
    font-family: 'Black Ops One', cursive;
    font-size: clamp(26px,3.5vw,40px);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.jt-left p { font-size: 14px; color: rgba(255,255,255,.75); max-width: 480px; line-height: 1.65; font-family: 'Barlow', sans-serif; }
.btn-tribe {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 42px;
    font-family: 'Black Ops One', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.btn-tribe:hover { background: #1a1a1a; color: #fff; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: #080808; border-top: 1px solid #111; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 44px; padding: 56px 60px; border-bottom: 1px solid #111; }
.footer-brand-desc { font-size: 12px; color: #333; line-height: 1.9; margin: 16px 0 22px; max-width: 220px; font-family: 'Barlow', sans-serif; }
.footer-socials { display: flex; gap: 8px; }
.f-social {
    width: 34px; height: 34px;
    border: 1px solid #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.f-social:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,90,0,.15);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 12px; color: #2e2e2e; transition: color .2s; display: block; font-family: 'Barlow', sans-serif; }
.footer-col a:hover { color: #777; }
.nl-form { display: flex; margin-top: 14px; }
.nl-input {
    flex: 1;
    background: #111;
    border: 1px solid #1c1c1c;
    border-right: none;
    padding: 11px 13px;
    color: #777;
    font-size: 12px;
    outline: none;
    font-family: 'Barlow', sans-serif;
}
.nl-input::placeholder { color: #282828; }
.nl-input:focus { border-color: #2a2a2a; }
.nl-btn {
    background: var(--orange);
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    letter-spacing: 1px;
    transition: background .2s;
}
.nl-btn:hover { background: var(--orange-dark); color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
}
.footer-copy { font-size: 11px; color: #222; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }
.footer-pay { display: flex; gap: 6px; }
.pay-badge {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #2a2a2a;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* Mobile menu */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 998;
    padding: 100px 40px 40px;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay li a {
    font-family: 'Black Ops One', cursive;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: color .2s;
}
.mobile-nav-overlay li a:hover { color: var(--orange); }
.mobile-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fireMove { 0% { transform: translateY(0); } 100% { transform: translateY(-25px); } }
@keyframes smokeAnim { from { transform: translateY(0); } to { transform: translateY(-80px); } }
@keyframes embersAnim {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(-1000px) scale(0); opacity: 0; }
}
@keyframes floatAnim {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50%       { transform: rotate(-6deg) translateY(-18px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .8; }
    50%       { transform: scale(1.08); opacity: 1; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Reveal animation */
.cm-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.cm-reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main  { grid-template-columns: 1fr 1fr 1fr; }
    .fc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero { flex-direction: column; justify-content: center; padding: 120px 30px 80px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-visual { width: 100%; margin-top: 70px; }
    .hero-title { font-size: 72px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .ct-inner { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr 1fr; }
    .drop-banner { grid-template-columns: 1fr; }
    .drop-right { display: none; }
    .sec { padding: 56px 24px; }
    .about-section { padding: 56px 24px; }
    .create-together { padding: 56px 24px; }
    .join-tribe { padding: 48px 24px; }
    .jt-inner { flex-direction: column; text-align: center; }
    .footer-main { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .top-bar { flex-direction: column; gap: 4px; padding: 8px 24px; }
    .nav-inner { padding: 0 24px; }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .fc-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: span 1; }
    .footer-main { grid-template-columns: 1fr; }
}

/* ==================== WOOCOMMERCE CUSTOM DESIGN ==================== */
