/* ==========================================================================
   1. CSS Variables & Dark Streetwear Theme
   ========================================================================== */
.luckteez-home-v2 {
    /* Dark Theme Backgrounds */
    --bg-main: #0a0a0a;
    --bg-soft: #141414;
    --bg-card: #1c1c1c;
    --bg-card-hover: #242424;

    /* Acid / Neon Accents */
    --accent: #D4FF00; /* Acid Green/Yellow */
    --accent-hover: #bde600;
    --accent-mute: rgba(212, 255, 0, 0.1);

    /* Text Colors */
    --text-main: #F5F5F5;
    --text-muted: #888888;
    --text-dark: #0a0a0a;

    /* Borders */
    --border: #2a2a2a;
    --border-light: #3a3a3a;

    /* Washed T-shirt Colors */
    --tee-washed-black: url(#wash-black);
    --tee-washed-charcoal: url(#wash-charcoal);
    --tee-washed-olive: url(#wash-olive);
    --tee-washed-navy: url(#wash-navy);
    --tee-washed-brown: url(#wash-brown);
    --tee-washed-purple: url(#wash-purple);
    --tee-off-white: url(#wash-offwhite);

    /* Shadows & Radii - Sharper, Brutalist feel */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 255, 0, 0.15);
    
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;
    --radius-pill: 999px;

    /* Typography */
    --font-main: "Helvetica Neue", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Arial Black", Impact, "Helvetica Neue", sans-serif;
    
    --container-max: 1280px;
    --pad-desktop: 80px;
    --pad-mobile: 40px;
    --header-height: 72px;
    --announce-height: 40px;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
.luckteez-home-v2 * { margin: 0; padding: 0; box-sizing: border-box; }

.luckteez-home-v2 {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.luckteez-home-v2 a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
.luckteez-home-v2 button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
.luckteez-home-v2 ul { list-style: none; }
.luckteez-home-v2 img, .luckteez-home-v2 svg { display: block; max-width: 100%; }

.luckteez-home-v2 .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.luckteez-home-v2 section { padding: var(--pad-desktop) 0; }

@media (max-width: 768px) {
    .luckteez-home-v2 section { padding: var(--pad-mobile) 0; }
    .luckteez-home-v2 .container { padding: 0 16px; }
}

/* Typography - Streetwear Edgy Vibe */
.luckteez-home-v2 h1, .luckteez-home-v2 h2, .luckteez-home-v2 h3, .luckteez-home-v2 h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.luckteez-home-v2 h1 { font-size: 4.5rem; font-weight: 900; }
.luckteez-home-v2 h2 { font-size: 3rem; margin-bottom: 16px; font-weight: 900;}
.luckteez-home-v2 h3 { font-size: 2rem; margin-bottom: 8px; font-weight: 900;}
.luckteez-home-v2 h4 { font-size: 1.25rem; font-weight: 800; letter-spacing: 0;}
.luckteez-home-v2 p { color: var(--text-muted); font-size: 1rem;}

.luckteez-home-v2 .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}
.luckteez-home-v2 .section-header p {
    max-width: 500px;
    margin: 0;
}

@media (max-width: 768px) {
    .luckteez-home-v2 h1 { font-size: 2.5rem; }
    .luckteez-home-v2 h2 { font-size: 2rem; }
    .luckteez-home-v2 .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ==========================================================================
   3. Buttons & Tags
   ========================================================================== */
.luckteez-home-v2 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.luckteez-home-v2 .btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
}

.luckteez-home-v2 .btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.luckteez-home-v2 .btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-light);
}

.luckteez-home-v2 .btn-secondary:hover {
    border-color: var(--text-main);
    background-color: var(--text-main);
    color: var(--text-dark);
}

.luckteez-home-v2 .btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.luckteez-home-v2 .tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--border);
    color: var(--text-main);
}
.luckteez-home-v2 .tag.highlight {
    background: var(--accent);
    color: var(--text-dark);
}
.luckteez-home-v2 .tag.new {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   4. Announcement & Header
   ========================================================================== */
.luckteez-home-v2 .announcement-bar {
    background-color: var(--accent);
    color: var(--text-dark);
    height: var(--announce-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 100;
}

.luckteez-home-v2 header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 99;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.luckteez-home-v2 .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.luckteez-home-v2 .logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.luckteez-home-v2 .logo span {
    color: var(--accent);
}

.luckteez-home-v2 .nav-desktop {
    display: flex;
    gap: 32px;
}
.luckteez-home-v2 .nav-desktop a {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    position: relative;
}
.luckteez-home-v2 .nav-desktop a:hover, .nav-desktop a.active {
    color: var(--text-main);
}
.luckteez-home-v2 .nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.luckteez-home-v2 .header-actions { display: flex; align-items: center; gap: 16px; }
.luckteez-home-v2 .icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.luckteez-home-v2 .icon-btn:hover { background: var(--bg-card); color: var(--accent); }

.luckteez-home-v2 .hamburger { display: none; }

/* Mobile Nav */
.luckteez-home-v2 .mobile-nav-overlay {
    position: fixed;
    top: calc(var(--announce-height) + var(--header-height)); left: 0;
    width: 100%; height: calc(100vh - var(--announce-height) - var(--header-height));
    background: var(--bg-main);
    z-index: 98;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    border-top: 1px solid var(--border);
}
.luckteez-home-v2 .mobile-nav-overlay.open { transform: translateX(0); }
.luckteez-home-v2 .mobile-nav-list { display: flex; flex-direction: column; gap: 0; }
.luckteez-home-v2 .mobile-nav-list a {
    font-size: 1.5rem; font-family: var(--font-display); font-weight: 900;
    text-transform: uppercase; display: block; padding: 20px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.luckteez-home-v2 .mobile-nav-list a.active { color: var(--accent); }

@media (max-width: 1024px) {
    .luckteez-home-v2 .nav-desktop { display: none; }
    .luckteez-home-v2 .hamburger { display: flex; }
    .luckteez-home-v2 .header-actions .icon-search, .header-actions .icon-account { display: none; }
}

/* ==========================================================================
   5. Hero Section (Streetwear Collage)
   ========================================================================== */
.luckteez-home-v2 .hero {
    padding: 0;
    background: var(--bg-main);
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(212, 255, 0, 0.03) 0%, transparent 50%),
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.luckteez-home-v2 .hero-inner {
    display: flex;
    align-items: center;
    min-height: 650px;
}

.luckteez-home-v2 .hero-content {
    flex: 0 0 50%;
    padding: 80px 48px 80px 0;
    position: relative;
    z-index: 2;
}

.luckteez-home-v2 .hero-pill {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
}
.luckteez-home-v2 .hero-pill span { color: var(--accent); margin-right: 8px;}

.luckteez-home-v2 .hero-content h1 { margin-bottom: 24px; text-shadow: 4px 4px 0 rgba(0,0,0,0.5); }
.luckteez-home-v2 .hero-content p.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.luckteez-home-v2 .hero-actions { display: flex; gap: 16px; margin-bottom: 40px; }

.luckteez-home-v2 .hero-visual {
    flex: 0 0 50%;
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luckteez-home-v2 .collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.luckteez-home-v2 .tee-mockup-absolute {
    position: absolute;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.luckteez-home-v2 .tee-mockup-absolute:hover {
    transform: translateY(-10px) scale(1.05) !important;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,1));
    z-index: 20 !important;
}

.luckteez-home-v2 .hero-tee-main {
    width: 420px; top: 50%; left: 45%;
    transform: translate(-50%, -50%); z-index: 5;
}

.luckteez-home-v2 .hero-tee-left {
    width: 280px; top: 20%; left: -5%;
    transform: rotate(-10deg); z-index: 3;
}

.luckteez-home-v2 .hero-tee-right {
    width: 260px; bottom: 15%; right: 10%;
    transform: rotate(8deg); z-index: 4;
}

/* Edgy Decor */
.luckteez-home-v2 .hero-cross {
    position: absolute; top: 15%; right: 20%;
    width: 60px; height: 60px; z-index: 1; opacity: 0.5;
}
.luckteez-home-v2 .hero-circle {
    position: absolute; bottom: 20%; left: 5%;
    width: 150px; height: 150px; border: 2px dashed var(--border-light);
    border-radius: 50%; z-index: 1; animation: spin 20s linear infinite;
}

.luckteez-home-v2 .hero-sticker {
    position: absolute; top: 30%; right: 20%;
    background: var(--accent); color: #000;
    font-family: var(--font-display); font-weight: 900;
    padding: 16px; border-radius: var(--radius-sm);
    transform: rotate(12deg); z-index: 10;
    text-transform: uppercase; font-size: 1.25rem;
    box-shadow: 4px 4px 0 #fff;
    border: 2px solid #000;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

@media (max-width: 1024px) {
    .luckteez-home-v2 .hero-inner { flex-direction: column; text-align: center; padding-top: 40px; }
    .luckteez-home-v2 .hero-content { padding: 0 0 40px 0; }
    .luckteez-home-v2 .hero-content p.subtitle { margin: 0 auto 32px auto; }
    .luckteez-home-v2 .hero-actions { justify-content: center; }
    .luckteez-home-v2 .hero-visual { width: 100%; height: 500px; }
    .luckteez-home-v2 .hero-tee-main { width: 320px; left: 50%; }
    .luckteez-home-v2 .hero-tee-left { width: 200px; left: 5%; }
    .luckteez-home-v2 .hero-tee-right { width: 200px; right: 5%; }
    .luckteez-home-v2 .hero-sticker { right: 10%; }
}
@media (max-width: 480px) {
    .luckteez-home-v2 .hero-actions { flex-direction: column; }
    .luckteez-home-v2 .hero-visual { height: 400px; }
    .luckteez-home-v2 .hero-tee-main { width: 280px; }
    .luckteez-home-v2 .hero-tee-left, .hero-tee-right { display: none; }
    .luckteez-home-v2 .hero-sticker { top: 10%; right: 5%; font-size: 1rem; }
}

/* ==========================================================================
   6. Shop by Theme (Dark Bento)
   ========================================================================== */
.luckteez-home-v2 .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 320px);
    gap: 24px;
}
.luckteez-home-v2 .bento-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background-color: var(--bg-card);
}
.luckteez-home-v2 .bento-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
.luckteez-home-v2 .bento-card-main { grid-row: span 2; background-color: #1a1c1a; }
.luckteez-home-v2 .bento-card-tr { background-color: #1c1a16; }
.luckteez-home-v2 .bento-card-mr { background-color: #16181c; }
.luckteez-home-v2 .bento-card-br { background-color: #1c161a; }

.luckteez-home-v2 .bc-right-col { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.luckteez-home-v2 .bc-grid-right { grid-column: 2; grid-row: 1 / span 2; display: flex; flex-direction: column; gap: 24px; }

.luckteez-home-v2 .bento-content { position: relative; z-index: 10; max-width: 80%; }
.luckteez-home-v2 .bento-card h3 { font-size: 2rem; margin-bottom: 12px; }
.luckteez-home-v2 .bento-card-main h3 { font-size: 3rem; color: var(--accent); }
.luckteez-home-v2 .bento-card p { margin-bottom: 24px; color: var(--text-muted); }

.luckteez-home-v2 .bento-visual {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

/* Dark Bento Visuals */
.luckteez-home-v2 .bc-main-visual .tee-1 { width: 320px; position: absolute; top: -30px; right: -20px; transform: rotate(8deg); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.9));}
.luckteez-home-v2 .bc-main-visual .tee-2 { width: 240px; position: absolute; top: 180px; right: 180px; transform: rotate(-12deg); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.9));}
.luckteez-home-v2 .bc-main-visual .bg-text { position: absolute; top: 20px; left: 20px; font-family: var(--font-display); font-size: 120px; color: rgba(255,255,255,0.02); font-weight: 900; line-height: 0.8;}

.luckteez-home-v2 .bc-tr-visual .tee-1 { width: 220px; position: absolute; top: 20px; right: 10px; transform: rotate(5deg); filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));}
.luckteez-home-v2 .bc-mr-visual .tee-1 { width: 220px; position: absolute; top: 20px; right: 10px; transform: rotate(-5deg); filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));}
.luckteez-home-v2 .bc-br-visual .tee-wrapper { position: absolute; top: 10px; right: -20px; display: flex; gap: -60px; }
.luckteez-home-v2 .bc-br-visual .tee-1 { width: 180px; transform: rotate(-10deg); z-index: 2; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));}
.luckteez-home-v2 .bc-br-visual .tee-2 { width: 180px; transform: rotate(10deg); z-index: 1; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));}

@media (max-width: 1024px) {
    .luckteez-home-v2 .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .luckteez-home-v2 .bc-grid-right { grid-column: 1; grid-row: auto; }
    .luckteez-home-v2 .bento-card-main { min-height: 450px;}
    .luckteez-home-v2 .bento-card { min-height: 350px; padding: 32px;}
    .luckteez-home-v2 .bc-main-visual .tee-1 { width: 260px; right: -20px; }
    .luckteez-home-v2 .bc-main-visual .tee-2 { width: 180px; right: 100px; top: 150px;}
}

/* ==========================================================================
   7. Product Grid & Cards (Dark Mode)
   ========================================================================== */
.luckteez-home-v2 .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

.luckteez-home-v2 .product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
}

.luckteez-home-v2 .pc-image-wrapper {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    aspect-ratio: 4/5;
}

.luckteez-home-v2 .product-card:hover .pc-image-wrapper {
    border-color: var(--border-light);
    background-color: var(--bg-card-hover);
}

.luckteez-home-v2 .pc-mockup {
    width: 90%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
}

.luckteez-home-v2 .product-card:hover .pc-mockup { transform: scale(1.08) translateY(-5px); }

.luckteez-home-v2 .pc-tag { position: absolute; top: 16px; left: 16px; z-index: 2; }

.luckteez-home-v2 .pc-quick-add {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0; width: calc(100% - 32px);
    transition: all 0.3s ease; z-index: 10;
    background-color: var(--text-main);
    color: var(--text-dark);
    border: none;
}
.luckteez-home-v2 .pc-quick-add:hover { background-color: var(--accent); color: #000; }

.luckteez-home-v2 .product-card:hover .pc-quick-add {
    transform: translateX(-50%) translateY(0); opacity: 1;
}

.luckteez-home-v2 .pc-info { display: flex; flex-direction: column; gap: 4px; }
.luckteez-home-v2 .pc-title { font-size: 1.125rem; font-family: var(--font-display); text-transform: uppercase; color: var(--text-main); }
.luckteez-home-v2 .pc-price { font-size: 1rem; color: var(--text-muted); font-weight: 600; font-family: var(--font-main); }

.luckteez-home-v2 .view-all-wrapper { text-align: center; margin-top: 56px; }

@media (max-width: 1024px) { .luckteez-home-v2 .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .luckteez-home-v2 .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .luckteez-home-v2 .pc-quick-add { opacity: 1; transform: translateX(-50%) translateY(0); position: relative; bottom: 0; width: 100%; margin-top: 12px; }
    .luckteez-home-v2 .pc-image-wrapper { padding: 20px 10px; }
}
@media (max-width: 480px) { .luckteez-home-v2 .product-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   8. Promo Banner (High Contrast)
   ========================================================================== */
.luckteez-home-v2 .promo-banner {
    background-color: var(--accent);
    border-radius: var(--radius-md);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 255, 0, 0.1);
}

.luckteez-home-v2 .promo-content { flex: 0 0 45%; position: relative; z-index: 2; }
.luckteez-home-v2 .promo-content h2 { font-size: 3.5rem; margin-bottom: 16px; color: #000; }
.luckteez-home-v2 .promo-content p { font-size: 1.25rem; color: #222; margin-bottom: 32px; font-weight: 600; text-transform: uppercase;}

.luckteez-home-v2 .promo-visual {
    flex: 0 0 50%; position: relative; height: 350px;
    display: flex; align-items: center; justify-content: center;
}

.luckteez-home-v2 .promo-stack { position: relative; width: 100%; height: 100%; }

.luckteez-home-v2 .ps-tee-1 { position: absolute; width: 300px; top: 10%; right: 10%; transform: rotate(15deg); z-index: 3; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));}
.luckteez-home-v2 .ps-tee-2 { position: absolute; width: 280px; top: 30%; right: 25%; transform: rotate(-5deg); z-index: 2; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));}

.luckteez-home-v2 .promo-sticker {
    position: absolute; bottom: 20px; right: 20px;
    background: #000; color: var(--accent);
    padding: 16px 24px; font-family: var(--font-display);
    border-radius: var(--radius-sm); font-weight: 900; font-size: 1.25rem;
    transform: rotate(-10deg); border: 2px solid var(--accent); z-index: 10;
}

@media (max-width: 1024px) {
    .luckteez-home-v2 .promo-banner { flex-direction: column; padding: 48px; text-align: center; }
    .luckteez-home-v2 .promo-content { margin-bottom: 40px; }
    .luckteez-home-v2 .promo-visual { width: 100%; height: 300px; }
    .luckteez-home-v2 .ps-tee-1 { right: 0; width: 240px; }
    .luckteez-home-v2 .ps-tee-2 { right: 20%; width: 220px; }
}
@media (max-width: 768px) {
    .luckteez-home-v2 .promo-banner { padding: 32px 24px; }
    .luckteez-home-v2 .promo-content h2 { font-size: 2.5rem; }
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.luckteez-home-v2 footer {
    background-color: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.luckteez-home-v2 .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 64px;
}

.luckteez-home-v2 .footer-brand p { margin: 16px 0 24px; max-width: 300px; }

.luckteez-home-v2 .email-signup { display: flex; flex-direction: column; gap: 12px; max-width: 350px; }
.luckteez-home-v2 .email-signup p { font-weight: 700; color: var(--text-main); font-size: 0.9375rem; text-transform: uppercase;}

.luckteez-home-v2 .input-group { display: flex; gap: 8px; }
.luckteez-home-v2 .input-group input {
    flex-grow: 1; padding: 12px 16px;
    background: var(--bg-main); border: 1px solid var(--border);
    color: var(--text-main); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.9375rem; outline: none;
}
.luckteez-home-v2 .input-group input:focus { border-color: var(--accent); }

.luckteez-home-v2 .footer-col h4 { margin-bottom: 20px; font-size: 1.125rem; color: var(--text-main);}
.luckteez-home-v2 .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.luckteez-home-v2 .footer-col a { color: var(--text-muted); font-size: 0.9375rem; font-weight: 500;}
.luckteez-home-v2 .footer-col a:hover { color: var(--accent); }

.luckteez-home-v2 .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 0.875rem; text-transform: uppercase;
}

@media (max-width: 1024px) { .luckteez-home-v2 .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .luckteez-home-v2 .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .luckteez-home-v2 .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
}

/* ==========================================================================
   10. Custom SVG Definitions (Dark/Washed T-Shirts & Edgy Graphics)
   ========================================================================== */
.luckteez-home-v2 .svg-defs { display: none; }

/* Luckteez global header/footer finish */
body[data-page-type="index"] .announcement-bar,
body[data-page-type="index"] [class*="announcement"] {
  background: #d4ff00 !important;
  color: #050505 !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body[data-page-type="index"] .header-section,
body[data-page-type="index"] theme-sticky-header header,
body[data-page-type="index"] .header__container,
body[data-page-type="index"] .header__container-top,
body[data-page-type="index"] .header__container-bottom {
  background: #080808 !important;
  color: #f5f5f5 !important;
  border-color: #242424 !important;
}

body[data-page-type="index"] .header__container-top-wrap,
body[data-page-type="index"] .header__container-bottom {
  min-height: 72px;
}

body[data-page-type="index"] .header__logo,
body[data-page-type="index"] .header__logo a,
body[data-page-type="index"] .header__logo-wrapper,
body[data-page-type="index"] .header__logo-wrapper * {
  color: #f5f5f5 !important;
  font-family: "Arial Black", Impact, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body[data-page-type="index"] .header__logo a::after,
body[data-page-type="index"] .header__logo-wrapper::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background: #d4ff00;
  vertical-align: middle;
}

body[data-page-type="index"] .header-section a,
body[data-page-type="index"] .header-section button,
body[data-page-type="index"] .header-section svg,
body[data-page-type="index"] .header-section [class*="icon"] {
  color: #f5f5f5 !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

body[data-page-type="index"] .header-section a:hover,
body[data-page-type="index"] .header-section button:hover {
  color: #d4ff00 !important;
}

body[data-page-type="index"] .header-section input,
body[data-page-type="index"] .header-section [role="search"] {
  background: #141414 !important;
  color: #f5f5f5 !important;
  border-color: #2a2a2a !important;
}

.ltz-footer {
  background: #080808;
  color: #f5f5f5;
  border-top: 1px solid #242424;
  padding: 72px 24px 32px;
}

.ltz-footer__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(160px, 1fr));
  gap: 48px;
}

.ltz-footer__logo {
  display: inline-block;
  color: #f5f5f5;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.ltz-footer__logo span { color: #d4ff00; }

.ltz-footer p {
  max-width: 360px;
  margin: 18px 0 26px;
  color: #888;
  line-height: 1.6;
}

.ltz-footer__signup {
  display: flex;
  max-width: 420px;
  gap: 10px;
}

.ltz-footer__signup input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 14px;
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #f5f5f5;
}

.ltz-footer__signup button {
  height: 48px;
  padding: 0 22px;
  background: #d4ff00;
  border: 1px solid #d4ff00;
  color: #050505;
  font-weight: 900;
  text-transform: uppercase;
}

.ltz-footer__col h3 {
  margin: 0 0 18px;
  color: #f5f5f5;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.ltz-footer__col a {
  display: block;
  margin: 0 0 12px;
  color: #8f8f8f;
  text-decoration: none;
}

.ltz-footer__col a:hover { color: #d4ff00; }

.ltz-footer__bottom {
  width: min(1280px, 100%);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid #242424;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ltz-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ltz-footer {
    padding: 56px 18px 28px;
  }

  .ltz-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ltz-footer__signup,
  .ltz-footer__bottom {
    flex-direction: column;
  }
}

/* Strong header override */
theme-sticky-header,
theme-sticky-header .header-section,
theme-sticky-header header,
theme-sticky-header .header__container,
theme-sticky-header .header__container-top,
theme-sticky-header .header__container-bottom,
theme-sticky-header .header__container-top-wrap {
  background: #080808 !important;
  color: #f5f5f5 !important;
  border-color: #242424 !important;
}

theme-sticky-header .header__container-top-wrap,
theme-sticky-header .header__container-bottom {
  min-height: 64px !important;
}

theme-sticky-header .header__logo,
theme-sticky-header .header__logo *,
theme-sticky-header a,
theme-sticky-header button,
theme-sticky-header svg,
theme-sticky-header [class*="icon"] {
  color: #f5f5f5 !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

theme-sticky-header .header__logo,
theme-sticky-header .header__logo * {
  font-family: "Arial Black", Impact, sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

theme-sticky-header a:hover,
theme-sticky-header button:hover {
  color: #d4ff00 !important;
}

theme-sticky-header input,
theme-sticky-header [class*="search"] input,
theme-sticky-header [class*="search"] {
  background-color: #141414 !important;
  border-color: #2a2a2a !important;
  color: #f5f5f5 !important;
}

.ltz-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  padding: 0 18px 18px;
  background: #080808;
}

.ltz-nav a {
  position: relative;
  color: #f5f5f5 !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1.2;
}

.ltz-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #d4ff00;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.ltz-nav a:hover,
.ltz-nav a[aria-current="page"] {
  color: #d4ff00 !important;
}

.ltz-nav a:hover::after,
.ltz-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (max-width: 760px) {
  .ltz-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 16px 14px;
    scrollbar-width: none;
  }

  .ltz-nav::-webkit-scrollbar { display: none; }

  .ltz-nav a {
    white-space: nowrap;
    font-size: 13px !important;
  }
}

/* Clean duplicate default nav after installing Luckteez category nav */
theme-sticky-header nav:not(.ltz-nav),
theme-sticky-header .header__container-bottom:not(.ltz-nav-wrap) {
  display: none !important;
}

theme-sticky-header .ltz-nav-wrap {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  background: #080808 !important;
  padding: 0 !important;
}

theme-sticky-header .ltz-nav {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 24px 20px !important;
}

@media (min-width: 960px) {
  theme-sticky-header .header__container-top-wrap {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
  }

  theme-sticky-header .header__logo {
    justify-self: center !important;
    text-align: center !important;
  }
}

/* Header locale/currency controls */
theme-sticky-header [class*="locale"],
theme-sticky-header [class*="country"],
theme-sticky-header [class*="market"],
theme-sticky-header [class*="picker"],
theme-sticky-header [class*="locale"] *,
theme-sticky-header [class*="country"] *,
theme-sticky-header [class*="market"] *,
theme-sticky-header [class*="picker"] * {
  color: #f5f5f5 !important;
  opacity: 1 !important;
}

theme-sticky-header [class*="locale"] svg,
theme-sticky-header [class*="country"] svg,
theme-sticky-header [class*="market"] svg,
theme-sticky-header [class*="picker"] svg {
  color: #f5f5f5 !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

theme-sticky-header .header__container-top-wrap > *:has([class*="locale"]),
theme-sticky-header .header__container-top-wrap > *:has([class*="country"]) {
  border-color: rgba(245, 245, 245, 0.14) !important;
}

theme-sticky-header [class*="locale"]:hover,
theme-sticky-header [class*="country"]:hover,
theme-sticky-header [class*="market"]:hover,
theme-sticky-header [class*="picker"]:hover,
theme-sticky-header [class*="locale"]:hover *,
theme-sticky-header [class*="country"]:hover *,
theme-sticky-header [class*="market"]:hover *,
theme-sticky-header [class*="picker"]:hover * {
  color: #d4ff00 !important;
}

/* Force right header action text to readable white */
theme-sticky-header .right,
theme-sticky-header .right *,
theme-sticky-header .header-actions,
theme-sticky-header .header-actions *,
theme-sticky-header .action-bar,
theme-sticky-header .action-bar *,
theme-sticky-header [class*="action"] *,
theme-sticky-header [class*="locale-picker"] *,
theme-sticky-header [class*="country-picker"] * {
  color: #f5f5f5 !important;
  opacity: 1 !important;
  --color-text: 245, 245, 245 !important;
  --text-color: #f5f5f5 !important;
}

theme-sticky-header .right svg,
theme-sticky-header .header-actions svg,
theme-sticky-header .action-bar svg,
theme-sticky-header [class*="action"] svg {
  color: #f5f5f5 !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}
