﻿/* General Styles */
:root {
    --spotlight-accent: #ccff00;
    --spotlight-brand-accent: #ccff00;
    --spotlight-paper: #e8e2d7;
}

body {
    font-family: 'Roboto Mono', monospace, monospace;
    margin: 0px 40px;
    ;
    padding: 0;
    background-color: black;
    color: ghostwhite;
    box-sizing: content-box;
}

/* Header */
.navbar {
    background-color: black;
    padding: 20px 200px;
    margin: 0;
    border-bottom: 2px solid #000;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 10;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    /* Adds consistent space inside each link */
    margin: 5px;
    /* Adds equal spacing around each link */
    border-radius: 0;
    /* Boxy look */
    transition: background-color 0.2s ease, transform 0.2s ease;
    /* Smooth hover transition */
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white hover background */
    color: white;
    /* Ensure text remains white */
    transform: translateY(-2px);
    /* Slight lift effect */
}

/* Spotlight Section Restructured */
.spotlight {
    position: relative;
    width: 100%;
    min-height: 85vh;
    /* Larger hero area */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-radius: 0;
    /* Boxy look */
    margin-bottom: 40px;
    border: 2px solid #333;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.spotlight-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Glass Panel Utility */
.glass-panel {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

#spotlight-timer {
    position: absolute;
    top: 2px;
    right: 0px;
    padding: 12px 24px;
    border-radius: 0;
    /* Boxy look */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: ghostwhite;
}

#spotlight-timer span:first-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 4px;
}

#countdown {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 2px;
}

.spotlight-header {
    margin-bottom: 40px;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.spotlight-location {
    font-size: 1.2rem;
    color: #ddd;
    letter-spacing: 2px;
}

.spotlight-location i {
    color: #ff3b30;
    margin-right: 8px;
}

/* Featured Products Carousel */
.spotlight-featured-products {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    width: 100%;
    max-width: 900px;
    scrollbar-width: none;
    /* Firefox */
}

.spotlight-featured-products::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.featured-product-card {
    min-width: 220px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    /* Boxy look */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.featured-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-product-card .product-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.product-price {
    font-size: 14px;
    color: #aaa;
}

/* Default: desktop */
.spotlight-image {
    display: none;
}

body.storefront-preview-mode a,
body.storefront-preview-mode button,
body.storefront-preview-mode [onclick] {
    cursor: default !important;
}

.hero-media-element {
    display: none;
}

.hero-media-element.is-active {
    display: block;
}

/* Mobile Adjustments for Spotlight */
@media (max-width: 768px) {
    body {
        margin: 0;
        /* Remove 40px side margins on mobile */
    }

    .navbar {
        padding: 15px 20px;
        /* Reduce massive horizontal padding */
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    

    .spotlight {
        min-height: 70vh;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 20px 10px;
        /* Tighter padding for mobile hero */
    }

    .spotlight-title {
        font-size: 2rem;
    }

    #spotlight-timer {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 80%;
    }

    .spotlight-featured-products {
        padding-bottom: 80px;
        /* Space for timer */
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: ghostwhite;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #555;
    margin: 0 auto;
}

/* Masonry Gallery */
.gallery {
    padding: 60px 0;
}

.gallery-masonry {
    columns: 4;
    column-gap: 20px;
    padding: 20px;
}

.masonry-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 0;
    /* Boxy look */
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-overlay i {
    font-size: 30px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-overlay i {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .gallery-masonry {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        columns: 1;
    }
}

/* About Section */
.about {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #000, #111);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-top: 40px;
    margin-bottom: 60px;
    border-radius: 0;
    /* Boxy look */
}

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

.about-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.about-content .title-underline {
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background-color: ghostwhite;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 0;
    /* Boxy look */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ccc;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Product Card Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Fixed 4 columns */
    gap: 40px;
    /* Consistent spacing between cards */
    width: 100%;
    padding: 20px;
    /* Add padding to avoid touching edges */
    justify-items: center;
    /* Ensure cards are centered */
}

.product-card {
    background-color: black;
    padding: 0px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0px;
}

.product-card.expanded {
    grid-column: 1/-1;
}

.product-card h3 {
    font-size: 22px;
    color: whitesmoke;
    margin: 10px 0;
}

.product-card p {
    font-size: 19px;
    color: whitesmoke;
}

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

.container {
    margin: 0 auto;
    width: 411px;
}

.gallery-wrap {
    /* Remove flex to avoid horizontal layout by default */
    position: relative;
    width: 100%;
    height: 35vh;
    /* You can set a background or leave it blank */
    background-color: #eee;
}

/* 
   For the items: 
   - Position them absolutely so they stack on top of each other in .gallery-wrap.
   - Give them a fixed width so they donâ€™t just stretch across the container.
*/
.item {
    position: absolute;
    top: 0;
    width: 300px;
    /* Example width for a "card" */
    height: 100%;
    /* Fill the parent's height (35vh) */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Remove the transition if you donâ€™t need any animation now */
    transition: none;
}

/* 
   Offset each .item so they overlap horizontally
   These values will shift each item to the right by X pixels.
   Increase or decrease the increments as needed for a bigger/smaller â€œfan.â€
*/
.item-1 {
    left: 0;
    z-index: 5;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item-2 {
    left: 50px;
    z-index: 4;
    background-image: url('/static/images/images_shop/rotate1.jpg');

}

.item-3 {
    left: 100px;
    z-index: 3;
    background-image: url('/static/images/images_shop/rotate1.jpg');

}

.item-4 {
    left: 150px;
    z-index: 2;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item-5 {
    left: 200px;
    z-index: 1;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item:hover {
    z-index: 999;
    /* Make sure it's on top of all other items */
    transform: scale(1.1);
}

/*sign in page */
.auth-page-shell {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    overflow: hidden;
}

.auth-page-shell .video-bg {
    z-index: -2;
}

.auth-page-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.3));
}

.seller-recruitment-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 28px;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 22px 24px 22px 28px;
    border: 1px solid rgba(204, 255, 0, 0.42);
    background: linear-gradient(135deg, rgba(17, 19, 14, 0.96), rgba(3, 3, 3, 0.94));
    box-shadow: 10px 10px 0 rgba(204, 255, 0, 0.16);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.seller-recruitment-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #ccff00;
}

.seller-recruitment-cta:hover,
.seller-recruitment-cta:focus-visible {
    border-color: #ccff00;
    box-shadow: 10px 10px 0 rgba(204, 255, 0, 0.34);
    color: #fff;
    outline: none;
    transform: translate(-2px, -2px);
}

.seller-recruitment-cta-eyebrow {
    color: #ccff00;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.seller-recruitment-cta-message {
    grid-column: 1;
    max-width: 720px;
    color: #f5f5f5;
    font-size: clamp(0.9rem, 1.35vw, 1.08rem);
    font-weight: 700;
    line-height: 1.45;
}

.seller-recruitment-cta-action {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ccff00;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.seller-recruitment-placement--home {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 48px));
    margin: -70px auto 120px;
}

.seller-recruitment-placement--shop {
    max-width: 1400px;
    margin: 32px auto 42px;
    padding: 0 20px;
}

.seller-recruitment-cta--corner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: min(390px, calc(100% - 48px));
    padding: 18px 20px 18px 24px;
    background: rgba(4, 5, 3, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.seller-recruitment-cta--corner .seller-recruitment-cta-message {
    font-size: 0.82rem;
}

.seller-recruitment-cta--corner .seller-recruitment-cta-action {
    font-size: 0.62rem;
}

.sign_in_block {
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 5, 0.35);
    width: 400px;
    min-height: 400px;
    padding: 30px 20px;
    margin: 48px auto;
    border-radius: 1.5em;
    box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sign {
    padding-top: 40px;
    color: whitesmoke;
    font-weight: bold;
    font-size: 23px;
}

.user,
.pass {
    display: block;
    width: 76%;
    font-family: inherit;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(136, 126, 126, 0.04);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
    margin-left: 46px;
    text-align: center;
    margin-bottom: 27px;
}

form.form1 {
    padding-top: 40px;
}

.un:focus,
.pass:focus {
    border: 2px solid rgba(0, 0, 0, 0.18) !important;
}

/* Custom Select Auth Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 76%;
    margin: 0 auto 27px auto;
    user-select: none;
}

.custom-select-trigger {
    width: 100%;
    font-family: 'Righteous', 'Roboto', sans-serif;
    color: ghostwhite;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Match focus logic spacing */
}

/* We mirror the `.user` focus logic for keyboard nav / active */
.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {
    border: 2px solid rgba(0, 0, 0, 0.18);
    outline: none;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    padding: 5px 0;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 15px;
    font-family: inherit;
    font-size: 14px;
    color: ghostwhite;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option.selected {
    background: #ccff00;
    color: #000;
    font-weight: bold;
}

.submit {
    cursor: pointer;
    border-radius: 5em;
    color: #fff;
    background: black;
    border: 0;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-left: 35%;
    font-size: 13px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
}

.forgot {
    text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
    color: white;
    padding-top: 15px;
}

a {
    text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
    color: #E1BEE7;
    text-decoration: none
}

@media (max-width: 600px) {
    .auth-page-shell {
        min-height: calc(100vh - 64px);
        padding: 20px 12px;
    }

    .auth-page-shell.has-seller-recruitment-cta {
        padding-bottom: 142px;
    }

    .seller-recruitment-cta--corner {
        right: 12px;
        bottom: 14px;
        width: calc(100% - 24px);
    }

    .sign_in_block {
        width: min(100%, 400px);
        margin: 20px auto;
        padding: 20px 12px;
    }

    .main {
        border-radius: 0px;
    }
}

.pwa-install-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: min(380px, calc(100vw - 32px));
    box-sizing: border-box;
    padding: 22px;
    border: 1px solid rgba(204, 255, 0, 0.72);
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65), 7px 7px 0 rgba(204, 255, 0, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.pwa-install-banner[hidden] { display: none; }
.pwa-install-dismiss {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 1.35rem;
    cursor: pointer;
}
.pwa-install-kicker {
    display: block;
    margin-bottom: 10px;
    color: #ccff00;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}
.pwa-install-banner strong { display: block; padding-right: 18px; line-height: 1.35; }
.pwa-install-banner p,
.pwa-install-ios,
.pwa-install-status { color: #8b8b8b; font-size: 0.76rem; line-height: 1.5; }
.pwa-install-actions { display: flex; gap: 9px; margin-top: 15px; }
.pwa-install-actions button {
    padding: 11px 14px;
    border: 1px solid #ccff00;
    background: #ccff00;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}
.pwa-install-status { display: block; margin-top: 10px; color: #ccff00; }
@media (max-width: 600px) {
    .pwa-install-banner { right: 16px; bottom: 16px; }
}

/*Imma KMS ? */

.container {
    margin: 0 auto;
    width: 411px;
}

.gallery-wrap {
    /* Remove flex to avoid horizontal layout by default */
    position: relative;
    width: 100%;
    height: 35vh;
    /* You can set a background or leave it blank */
    background-color: #eee;
}

/* 
   For the items: 
   - Position them absolutely so they stack on top of each other in .gallery-wrap.
   - Give them a fixed width so they donâ€™t just stretch across the container.
*/
.item {
    position: absolute;
    top: 0;
    width: 300px;
    /* Example width for a "card" */
    height: 100%;
    /* Fill the parent's height (35vh) */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Remove the transition if you donâ€™t need any animation now */
    transition: none;
}

/* 
   Offset each .item so they overlap horizontally
   These values will shift each item to the right by X pixels.
   Increase or decrease the increments as needed for a bigger/smaller â€œfan.â€
*/
.item-1 {
    left: 0;
    z-index: 5;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item-2 {
    left: 50px;
    z-index: 4;
    background-image: url('/static/images/images_shop/rotate1.jpg');

}

.item-3 {
    left: 100px;
    z-index: 3;
    background-image: url('/static/images/images_shop/rotate1.jpg');

}

.item-4 {
    left: 150px;
    z-index: 2;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item-5 {
    left: 200px;
    z-index: 1;
    background-image: url('/static/images/images_shop/rotate1.jpg');
}

.item:hover {
    z-index: 999;
    /* Make sure it's on top of all other items */
    transform: scale(1.1);
}

/*search bar on top*/

.search-bar {
    display: flex;
    justify-content: center;
    /* Centers the search bar */
    align-items: center;
    /* Aligns the elements vertically */
    width: 80%;
    /* Adjusts the width of the search bar container */
    max-width: 500px;
    /* Optional: Limits the width on large screens */

}

.search-input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 20px;
    /* Rounded corners on the left */
    outline: none;
    background-color: #444444;
    color: whitesmoke;
}

.search-button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #444444;
    border: 2px solid #000;
    border-radius: 20px;
    /* Rounded corners on the right */
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 5px;
    outline: none;
    color: gray;
}

.search-button:hover {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);

}

.search-input:hover {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);

}

.circles-content {
    display: flex;
    gap: 20px;
    /* Space between video and text */
    align-items: flex-start;
    /* Align items to the top */
    margin-top: 20px;
}

.video-upload {
    width: 1080px;
    /* Adjust video size */
    height: auto;
    border-radius: 10px;
}

.user-text {
    max-width: 900px;
    /* Limit text width */
    color: white;
    /* Ensure readability */
    font-size: 20px;
}

/* =========================================
   COMMUNITY PAGE SKELETON (MOBILE FIRST)
   ========================================= */

.mobile-community {
    --community-spotlight-accent: #ff2bd6;
    background-color: #000;
    color: ghostwhite;
    min-height: 100vh;
    padding-bottom: 100px;
    font-family: 'Roboto Mono', monospace;
}

/* =========================================
   COMMUNITY GRID LAYOUT (DESKTOP + MOBILE)
   ========================================= */
.community-layout {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile default */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    align-items: start;
}

@media (min-width: 1024px) {
    .community-layout {
        grid-template-columns: 300px 1fr;
        /* Desktop sidebar + feed */
    }
}

/* Hashtag Sidebar (Desktop) */
.hashtag-sidebar {
    display: none;
    /* Hidden on mobile */
    position: sticky;
    top: 100px;
    /* Below navbar */
    background: #050505;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 0;
    /* Boxy GOAT style */
}

@media (min-width: 1024px) {
    .hashtag-sidebar {
        display: block;
    }
}

.hashtag-section-title {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.hashtag-section-title:first-child {
    margin-top: 0;
}

.hashtag-chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Hashtag Mobile Row */
.hashtag-mobile-row {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 20px;
    background: #050505;
    border-bottom: 1px solid #333;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.hashtag-mobile-row::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media (min-width: 1024px) {
    .hashtag-mobile-row {
        display: none;
        /* Hidden on desktop */
    }
}

/* Base Chip Style */
.hashtag-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: #111;
    color: #888;
    border: 1px solid #333;
    transition: all 0.2s ease;
    user-select: none;
}

.hashtag-chip:hover {
    background: #222;
    color: #fff;
    border-color: #555;
}

/* Recommended Category (Glowing green outline initially) */
.hashtag-chip.recommended {
    color: #ccff00;
    border-color: rgba(204, 255, 0, 0.4);
    background: rgba(204, 255, 0, 0.05);
}

.hashtag-chip.recommended:hover {
    background: rgba(204, 255, 0, 0.1);
    border-color: #ccff00;
}

/* Selected State */
.hashtag-chip.selected {
    background: #ccff00 !important;
    color: #000 !important;
    border-color: #ccff00 !important;
}

.hashtag-chip.spotlight-filter-chip {
    color: var(--community-spotlight-accent);
    border-color: rgba(255, 43, 214, 0.52);
    background: rgba(255, 43, 214, 0.08);
    text-decoration: none;
}

.hashtag-chip.spotlight-filter-chip:hover {
    color: #fff;
    border-color: var(--community-spotlight-accent);
    background: rgba(255, 43, 214, 0.16);
}

.hashtag-chip.spotlight-filter-chip.selected {
    color: #000 !important;
    border-color: var(--community-spotlight-accent) !important;
    background: var(--community-spotlight-accent) !important;
    box-shadow: 0 0 22px rgba(255, 43, 214, 0.28);
}

.hashtag-chip.all-feed-chip {
    text-decoration: none;
}

/* Clear Filter Button */
.clear-filter-container {
    margin-top: 20px;
    display: none;
    /* Hidden by default */
}

.btn-clear-filter {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-filter:hover {
    background: #fff;
    color: #000;
}

.mobile-clear-btn {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    /* Spacing before chips start */
}

/* Sticky Header & Search */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-bottom: 1px solid #1a1a1a;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
}

.mobile-search-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    /* Slightly rounded for inputs */
    padding: 12px 15px 12px 40px;
    color: whitesmoke;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    border-color: #555;
    background-color: #1a1a1a;
}

/* Feed Layout */
.mobile-feed {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Generous spacing between posts */
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.community-post-flow {
    columns: 1;
    column-gap: 30px;
}

.community-post-flow .mobile-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 30px;
    break-inside: avoid;
}

@media (min-width: 1024px) {
    .community-post-flow {
        columns: 2;
    }
}

.community-spotlight-banner {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 43, 214, 0.55);
    background: linear-gradient(135deg, rgba(255, 43, 214, 0.13), transparent 48%), #070707;
    box-shadow: 8px 8px 0 rgba(255, 43, 214, 0.25);
}

.community-spotlight-kicker {
    color: var(--community-spotlight-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.community-spotlight-heading,
.community-spotlight-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.community-spotlight-heading a {
    color: #fff;
    font-size: clamp(1.5rem, 5vw, 2.3rem);
    font-weight: 900;
    line-height: 0.95;
    text-decoration: none;
    text-transform: uppercase;
}

.community-spotlight-heading span {
    color: var(--community-spotlight-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
}
.community-spotlight-heading .community-spotlight-timer {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.community-spotlight-heading .community-spotlight-timer strong {
    color: var(--community-spotlight-accent);
    font-size: 1rem;
}

.community-view-count,
.post-detail-view-count,
.shop-modal-views,
.mobile-product-sheet-views {
    color: #8d8d8d;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.post-detail-view-count {
    margin: -6px 0 14px;
}
.shop-modal-views {
    margin: -6px 0 16px;
}

.social-proof-admin {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}
.social-proof-admin-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    border-bottom: 1px solid #292929;
    padding-bottom: 26px;
}
.social-proof-admin-header p,
.social-proof-admin-header a {
    color: #ccff00;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
}
.social-proof-admin-header h1 { margin: 8px 0; }
.social-proof-admin-header span { color: #888; }
.social-proof-admin-header a {
    border: 1px solid #ccff00;
    padding: 11px 14px;
    text-decoration: none;
}
.social-proof-admin-section { margin-top: 40px; }
.social-proof-admin-list { display: grid; gap: 12px; }
.social-proof-admin-card {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 0.8fr)) minmax(220px, 1.2fr) auto;
    align-items: end;
    gap: 12px;
    padding: 16px;
    border: 1px solid #292929;
    background: #090909;
}
.social-proof-admin-name span { display: block; color: #777; margin-top: 5px; }
.social-proof-admin-card label { color: #888; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
.social-proof-admin-card label small { display: block; margin-top: 5px; color: #666; font-size: 0.62rem; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.social-proof-admin-card input:not([type="checkbox"]) {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    padding: 11px;
    border: 1px solid #333;
    background: #020202;
    color: #fff;
}
.social-proof-admin-toggle { align-self: center; }
.social-proof-admin-card button {
    padding: 12px 18px;
    border: 1px solid #ccff00;
    background: #ccff00;
    color: #000;
    font-weight: 800;
    cursor: pointer;
}
.content-admin-breakdown {
    grid-column: 1 / -1;
    overflow-x: auto;
    border: 1px solid #242424;
    background: #050505;
}
.content-admin-breakdown > div {
    display: grid;
    grid-template-columns: minmax(150px, 1.3fr) repeat(4, minmax(110px, 1fr));
    gap: 12px;
    align-items: center;
    min-width: 700px;
    padding: 9px 12px;
    border-bottom: 1px solid #1d1d1d;
}
.content-admin-breakdown > div:last-child { border-bottom: 0; }
.content-admin-breakdown > div:first-child { background: #101607; color: #ccff00; }
.content-admin-breakdown span { color: #888; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
.content-admin-breakdown strong { color: #ddd; font-size: 0.75rem; }
.content-admin-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.content-admin-actions a {
    border: 1px solid #ccff00;
    padding: 11px 14px;
    color: #ccff00;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.content-admin-section-note { color: #777; font-size: 0.78rem; }
@media (max-width: 1050px) {
    .social-proof-admin-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .social-proof-admin-name,
    .social-proof-admin-reason { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .social-proof-admin-header { flex-direction: column; }
    .social-proof-admin-card { grid-template-columns: 1fr; }
    .social-proof-admin-name,
    .social-proof-admin-reason { grid-column: auto; }
    .content-admin-actions { flex-direction: column; align-items: stretch; }
    .content-admin-actions a { text-align: center; }
}

.community-spotlight-actions {
    align-items: flex-end;
    color: #777;
    font-size: 0.72rem;
    line-height: 1.5;
}

.community-spotlight-actions a,
.community-empty-link {
    color: var(--community-spotlight-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.spotlight-feed-card .card-title {
    color: var(--community-spotlight-accent);
}

@media (max-width: 600px) {
    .community-spotlight-heading,
    .community-spotlight-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Post Cards */
.mobile-card {
    background: transparent;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 25px;
}

.card-header {
    margin-bottom: 15px;
}

.community-feed-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 18px;
    color: inherit;
    text-decoration: none;
}

.community-author-avatar {
    width: 46px;
    height: 46px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    background: #111;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.community-author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.community-author-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.community-author-name {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.community-author-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.68rem;
    line-height: 1;
}

.community-seller-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(204, 255, 0, 0.45);
    padding: 3px 6px;
    color: #ccff00;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.community-feed-author:hover .community-author-avatar,
.community-feed-author:focus-visible .community-author-avatar {
    border-color: #ccff00;
    transform: scale(1.04);
}

.community-feed-author:hover .community-author-name,
.community-feed-author:focus-visible .community-author-name {
    color: #ccff00;
}

.community-feed-author:focus-visible {
    outline: 1px solid #ccff00;
    outline-offset: 5px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: whitesmoke;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
}

.card-location {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Media Slot */
.card-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #111;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #1a1a1a;
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.community-carousel {
    position: relative;
    touch-action: pan-y;
}

.community-carousel-track,
.community-carousel-slide {
    width: 100%;
    height: 100%;
}

.community-carousel-slide {
    display: none;
}

.community-carousel-slide.is-active {
    display: block;
}

.community-carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.66);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.community-carousel-control--previous {
    left: 12px;
}

.community-carousel-control--next {
    right: 12px;
}

.community-carousel-count {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #ddd;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.community-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.community-carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

.community-carousel-dot.is-active {
    background: #ccff00;
    transform: scale(1.25);
}

.community-carousel-control:focus-visible,
.community-carousel-dot:focus-visible {
    outline: 2px solid #ccff00;
    outline-offset: 2px;
}

.post-detail-media {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
}

.hashtag-chip {
    text-decoration: none;
}

.hashtag-use-count {
    display: inline-grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.67rem;
}

.community-tag-empty {
    color: #777;
    font-size: 0.8rem;
    font-style: italic;
}

/* Card Body & Text Clamp */
.card-body {
    padding: 0 5px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Limit to 4 lines implicitly limiting ~350 words roughly visually */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Interaction Bar */
.card-actions {
    display: flex;
    gap: 20px;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
    margin-bottom: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: ghostwhite;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.action-btn:hover {
    opacity: 0.7;
}

/* Comments Section Skeleton */
.card-comments {
    background-color: #0a0a0a;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
}

.comment-item {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.4;
}

.comment-item strong {
    color: whitesmoke;
    margin-right: 5px;
}

.comment-input-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.comment-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.comment-input:focus {
    border-color: #ccff00;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
}

.send-comment-btn {
    background: #ccff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-comment-btn:hover {
    background: #b3e600;
    transform: translateY(-1px);
}

.send-comment-btn:active {
    transform: translateY(0);
}

/* Floating Action Button */
.fab-create {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: ghostwhite;
    color: black;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 90;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-create:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Fullscreen Modal */
.mobile-modal {
    position: fixed;
    top: 100vh;
    /* Start offscreen */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 200;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-modal.slide-up {
    top: 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #1a1a1a;
    background-color: #050505;
}

.cancel-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: whitesmoke;
    letter-spacing: 1px;
}

.post-submit-btn {
    background: ghostwhite;
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

#createPostForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-input,
.modal-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: whitesmoke;
    font-size: 1.2rem;
    font-family: inherit;
    padding: 15px 0;
    outline: none;
}

.modal-textarea {
    resize: none;
    min-height: 120px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-input:focus,
.modal-textarea:focus {
    border-bottom-color: ghostwhite;
}

.modal-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    color: #888;
}

.modal-input-borderless {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: whitesmoke;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.modal-media-upload {
    margin-top: 10px;
}

.community-media-limit {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 0.72rem;
    line-height: 1.45;
}

.community-media-preview {
    width: min(100%, 420px);
    margin: 0 auto;
}

.community-media-preview[hidden],
.community-media-preview [hidden] {
    display: none;
}

.community-media-preview-frame {
    margin-bottom: 0;
    border-color: #3a3a3a;
}

.community-media-preview-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 2px 0;
    color: #777;
    font-size: 0.72rem;
    line-height: 1.4;
}

.community-media-preview-meta button {
    flex-shrink: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ccff00;
    font: inherit;
    cursor: pointer;
}

.media-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
    background-color: #0a0a0a;
    border: 1px dashed #333;
    border-radius: 8px;
    color: #aaa;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.media-upload-label:hover {
    background-color: #111;
    border-color: #666;
    color: ghostwhite;
}

/* =========================================
   SHOP PAGE (MOBILE + DESKTOP)
   ========================================= */

.shop-container {
    background-color: #000;
    color: ghostwhite;
    min-height: 100vh;
    padding-bottom: 60px;
    font-family: 'Roboto Mono', monospace;
}

/* Hero Video Spotlight */
.shop-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Dominant first impression */
    overflow: hidden;
    margin-bottom: 40px;
}

.shop-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.shop-hero-timer {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    /* STRICT BOXY */
}

.shop-hero-timer .timer-label {
    font-size: 0.70rem;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.shop-hero-timer .timer-countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ccff00;
    /* Acid Green Pop */
    letter-spacing: 2px;
}

.shop-hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.shop-hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    letter-spacing: 1px;
}

/* Mobile Preview Device Layout */
.mobile-preview-device {
    width: 375px !important;
    height: 812px !important;
    margin: 0 auto;
    border: 12px solid #222;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Responsive Hero Assets for Shop and Account */
.desktop-asset {
    display: block;
}

.mobile-asset {
    display: none;
}

@media (max-width: 768px) {

    /* If a mobile asset exists, toggle visibility */
    .has-mobile .desktop-asset {
        display: none !important;
    }

    .has-mobile .mobile-asset {
        display: block !important;
    }
}

/* Brand Feed */
.shop-brand-feed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between brands */
}

.brand-section {
    width: 100%;
}

.brand-header {
    position: relative;
    height: 150px;
    background-color: #111;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    border-radius: 0;
    /* STRICT BOXY */
}

.brand-banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.brand-header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 600px) {
    .card-header {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .community-feed-author {
        margin-left: 0;
    }
}

/* =========================================
   COMMUNITY — REFINED DARK UI
   Shadcn-inspired neutral surfaces and states
   ========================================= */
.mobile-community {
    --community-bg: #0a0a0a;
    --community-panel: rgba(23, 23, 23, 0.58);
    --community-panel-strong: rgba(23, 23, 23, 0.88);
    --community-panel-hover: rgba(30, 30, 30, 0.76);
    --community-border: rgba(38, 38, 38, 0.8);
    --community-border-hover: rgba(82, 82, 82, 0.82);
    --community-foreground: #fafafa;
    --community-muted: #a3a3a3;
    --community-muted-quiet: #737373;
    --community-green: #ccff00;
    --community-pink: #ff2bd6;
    color-scheme: dark;
    background:
        radial-gradient(circle at 7% 4%, rgba(204, 255, 0, 0.045), transparent 24rem),
        radial-gradient(circle at 95% 18%, rgba(255, 43, 214, 0.04), transparent 26rem),
        var(--community-bg);
    color: var(--community-foreground);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.mobile-community button,
.mobile-community input,
.mobile-community textarea {
    font: inherit;
}

.mobile-community .community-layout {
    gap: 28px;
    max-width: 1280px;
    padding: 28px 20px;
}

.mobile-community .mobile-header {
    z-index: 100;
    padding: 14px 20px;
    border-color: var(--community-border);
    background: rgba(10, 10, 10, 0.78);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.mobile-community .search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1280px;
    margin: 0 auto;
}

.community-search-field {
    position: relative;
    flex: 1;
}

.mobile-community .search-icon {
    left: 14px;
    color: var(--community-muted-quiet);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.mobile-community .community-search-field:focus-within .search-icon {
    color: var(--community-green);
}

.mobile-community .mobile-search-input {
    min-height: 44px;
    padding: 11px 14px 11px 40px;
    border: 1px solid var(--community-border);
    border-radius: 12px;
    background: rgba(23, 23, 23, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    color: var(--community-foreground);
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-community .mobile-search-input::placeholder {
    color: #666;
}

.mobile-community .mobile-search-input:focus {
    border-color: rgba(204, 255, 0, 0.5);
    background: rgba(23, 23, 23, 0.86);
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.09);
}

.community-near-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    box-sizing: border-box;
    padding: 9px 13px;
    border: 1px solid var(--community-border);
    border-radius: 11px;
    background: rgba(23, 23, 23, 0.5);
    color: var(--community-muted);
    font-size: 0.75rem;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.community-near-filter:hover,
.community-near-filter:focus-visible {
    border-color: var(--community-border-hover);
    background: rgba(38, 38, 38, 0.72);
    color: var(--community-foreground);
    outline: none;
}

.community-near-filter:focus-visible {
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}

.community-near-filter.is-active {
    border-color: rgba(204, 255, 0, 0.38);
    box-shadow: inset 0 -2px var(--community-green);
    color: var(--community-foreground);
}

.community-near-filter.is-active i {
    color: var(--community-green);
}

.community-near-filter--sidebar {
    width: 100%;
}

.mobile-community .hashtag-mobile-row {
    padding: 12px 20px;
    border-color: var(--community-border);
    background: rgba(10, 10, 10, 0.9);
}

.community-trending-label {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    color: var(--community-muted-quiet);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    vertical-align: middle;
}

.mobile-community .hashtag-sidebar {
    top: 96px;
    padding: 20px;
    border: 1px solid var(--community-border);
    border-radius: 16px;
    background: var(--community-panel);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobile-community .hashtag-section-title {
    margin: 24px 0 11px;
    color: var(--community-muted-quiet);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1.3;
}

.mobile-community .hashtag-section-title:first-child {
    margin-top: 0;
}

.mobile-community .community-distance-title {
    margin-top: 24px;
}

.mobile-community .hashtag-chip-container {
    gap: 7px;
}

.mobile-community .hashtag-chip {
    min-height: 30px;
    box-sizing: border-box;
    padding: 6px 10px;
    border: 1px solid var(--community-border);
    border-radius: 9px;
    background: rgba(23, 23, 23, 0.5);
    color: var(--community-muted);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-community .hashtag-chip:hover,
.mobile-community .hashtag-chip:focus-visible {
    border-color: var(--community-border-hover);
    background: rgba(38, 38, 38, 0.68);
    color: var(--community-foreground);
    outline: none;
}

.mobile-community .hashtag-chip:focus-visible {
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.08);
}

.mobile-community .hashtag-chip.recommended {
    border-color: var(--community-border);
    background: rgba(23, 23, 23, 0.5);
    color: var(--community-muted);
}

.mobile-community .hashtag-chip.recommended:hover {
    border-color: rgba(204, 255, 0, 0.28);
    background: rgba(204, 255, 0, 0.035);
    color: #e5e5e5;
}

.mobile-community .hashtag-chip.selected,
.mobile-community .hashtag-chip.recommended.selected,
.mobile-community .hashtag-chip.all-feed-chip.selected {
    border-color: rgba(204, 255, 0, 0.28) !important;
    background: rgba(23, 23, 23, 0.92) !important;
    box-shadow: inset 0 -2px var(--community-green) !important;
    color: var(--community-foreground) !important;
}

.mobile-community .hashtag-chip.spotlight-filter-chip {
    border-color: var(--community-border);
    background: rgba(23, 23, 23, 0.5);
    color: var(--community-muted);
}

.mobile-community .hashtag-chip.spotlight-filter-chip::before {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--community-pink);
    box-shadow: 0 0 9px rgba(255, 43, 214, 0.72);
    content: "";
}

.mobile-community .hashtag-chip.spotlight-filter-chip:hover {
    border-color: rgba(255, 43, 214, 0.32);
    background: rgba(255, 43, 214, 0.035);
    color: var(--community-foreground);
}

.mobile-community .hashtag-chip.spotlight-filter-chip.selected {
    border-color: rgba(255, 43, 214, 0.32) !important;
    background: rgba(23, 23, 23, 0.92) !important;
    box-shadow: inset 0 -2px var(--community-pink) !important;
    color: var(--community-foreground) !important;
}

.mobile-community .hashtag-use-count {
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--community-muted-quiet);
    font-size: 0.6rem;
}

.mobile-community .btn-clear-filter {
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid var(--community-border);
    border-radius: 9px;
    background: transparent;
    color: var(--community-muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.mobile-community .btn-clear-filter:hover,
.mobile-community .btn-clear-filter:focus-visible {
    border-color: var(--community-border-hover);
    background: rgba(38, 38, 38, 0.6);
    color: var(--community-foreground);
    outline: none;
}

.mobile-community .mobile-feed {
    gap: 22px;
    padding: 0;
    max-width: 960px;
}

.mobile-community .community-post-flow {
    column-gap: 20px;
}

.mobile-community .community-post-flow .mobile-card {
    margin-bottom: 20px;
}

.mobile-community .community-spotlight-banner {
    position: relative;
    gap: 14px;
    overflow: hidden;
    padding: 22px 24px;
    border: 1px solid rgba(64, 64, 64, 0.7);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 43, 214, 0.075), transparent 42%),
        var(--community-panel-strong);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobile-community .community-spotlight-banner::after {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 43, 214, 0.78), transparent);
    content: "";
}

.mobile-community .community-spotlight-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--community-muted);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.16em;
}

.mobile-community .community-spotlight-kicker::before {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--community-pink);
    box-shadow: 0 0 12px rgba(255, 43, 214, 0.76);
    content: "";
}

.mobile-community .community-spotlight-heading a {
    font-size: clamp(1.35rem, 4.4vw, 2.05rem);
    font-weight: 760;
    letter-spacing: -0.035em;
    line-height: 1;
    text-transform: none;
}

.mobile-community .community-spotlight-heading a:hover,
.mobile-community .community-spotlight-heading a:focus-visible {
    color: #e5e5e5;
    outline: none;
}

.mobile-community .community-spotlight-heading span {
    color: var(--community-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.mobile-community .community-spotlight-actions {
    color: var(--community-muted-quiet);
    font-size: 0.74rem;
    line-height: 1.55;
}

.mobile-community .community-spotlight-actions a,
.mobile-community .community-empty-link {
    color: #d4d4d4;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    transition: color 0.18s ease;
}

.mobile-community .community-spotlight-actions a:hover,
.mobile-community .community-empty-link:hover {
    color: var(--community-pink);
}

.mobile-community .mobile-card {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid var(--community-border);
    border-radius: 18px;
    background: var(--community-panel);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.022);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.mobile-community .mobile-card:hover {
    border-color: var(--community-border-hover);
    background: var(--community-panel-hover);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.015);
    transform: translateY(-2px);
}

.mobile-community .mobile-card:focus-within {
    border-color: rgba(82, 82, 82, 0.95);
}

.mobile-community .spotlight-feed-card::before {
    position: absolute;
    top: 18px;
    left: 0;
    width: 2px;
    height: 34px;
    border-radius: 0 999px 999px 0;
    background: var(--community-pink);
    box-shadow: 0 0 14px rgba(255, 43, 214, 0.58);
    content: "";
}

.mobile-community .spotlight-feed-card .card-title {
    color: var(--community-foreground);
}

.mobile-community .card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-community .card-title {
    margin: 0 0 6px;
    color: var(--community-foreground);
    font-size: 1.04rem;
    font-weight: 720;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.mobile-community .card-title a {
    transition: color 0.18s ease;
}

.mobile-community .card-title a:hover,
.mobile-community .card-title a:focus-visible {
    color: #d4d4d4;
    outline: none;
}

.mobile-community .card-location {
    gap: 6px;
    color: var(--community-muted-quiet);
    font-size: 0.7rem;
    line-height: 1.4;
}

.mobile-community .card-location i {
    color: #525252;
    font-size: 0.66rem;
}

.community-distance-copy {
    color: #666;
    font-size: 0.68rem;
}

.mobile-community .community-feed-author {
    gap: 9px;
    margin-left: 8px;
    padding: 3px;
    border-radius: 12px;
}

.mobile-community .community-author-avatar {
    width: 38px;
    height: 38px;
    border-color: var(--community-border-hover);
    background: #171717;
}

.mobile-community .community-author-copy {
    gap: 4px;
}

.mobile-community .community-author-name {
    color: var(--community-foreground);
    font-size: 0.76rem;
    font-weight: 720;
    line-height: 1.1;
}

.mobile-community .community-author-meta {
    color: var(--community-muted-quiet);
    font-size: 0.62rem;
    line-height: 1.15;
}

.mobile-community .community-seller-badge {
    position: relative;
    gap: 5px;
    padding: 0;
    border: 0;
    color: var(--community-muted);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
}

.mobile-community .community-seller-badge::before {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--community-green);
    box-shadow: 0 0 8px rgba(204, 255, 0, 0.58);
    content: "";
}

.mobile-community .community-feed-author:hover .community-author-avatar,
.mobile-community .community-feed-author:focus-visible .community-author-avatar {
    border-color: rgba(204, 255, 0, 0.4);
    transform: none;
}

.mobile-community .community-feed-author:hover .community-author-name,
.mobile-community .community-feed-author:focus-visible .community-author-name {
    color: #e5e5e5;
}

.mobile-community .community-feed-author:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.09);
}

.community-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 14px;
}

.mobile-community .community-post-tag {
    min-height: 25px;
    padding: 5px 8px;
    border-color: rgba(38, 38, 38, 0.72);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.38);
    color: #8b8b8b;
    font-size: 0.65rem;
}

.mobile-community .card-media {
    margin: 0 0 16px;
    border: 1px solid rgba(64, 64, 64, 0.62);
    border-radius: 14px;
    background: #111;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.mobile-community .card-body {
    padding: 0;
}

.mobile-community .card-text {
    margin: 0 0 17px;
    color: #d4d4d4;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.006em;
    line-height: 1.65;
}

.mobile-community .card-actions {
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 12px 0 0;
    border-color: rgba(64, 64, 64, 0.5);
}

.mobile-community .action-btn {
    min-width: 34px;
    height: 34px;
    gap: 5px;
    box-sizing: border-box;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: var(--community-muted-quiet);
    font-size: 0.86rem;
    text-decoration: none;
    opacity: 1;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-community .action-btn:hover,
.mobile-community .action-btn:focus-visible {
    border-color: var(--community-border);
    background: rgba(38, 38, 38, 0.66);
    color: var(--community-foreground);
    opacity: 1;
    outline: none;
}

.mobile-community .action-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.08);
}

.mobile-community .action-btn.liked {
    color: #fb7185;
}

.mobile-community .action-count {
    margin-left: 1px;
    color: var(--community-muted-quiet);
    font-size: 0.68rem;
    font-weight: 650;
}

.mobile-community .post-detail-action {
    margin-left: auto;
}

.mobile-community .post-detail-action i {
    font-size: 0.76rem;
}

.community-delete-form {
    display: inline-flex;
}

.mobile-community .community-delete-button {
    color: #525252;
}

.mobile-community .community-delete-button i {
    font-size: 0.72rem;
}

.mobile-community .community-delete-button:hover {
    color: #f87171;
}

.mobile-community .card-comments {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--community-border);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.5);
}

.mobile-community .comment-item {
    margin-bottom: 9px;
    color: var(--community-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.mobile-community .comment-item strong {
    color: var(--community-foreground);
    font-weight: 700;
}

.mobile-community .comment-input-row {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-color: var(--community-border);
}

.mobile-community .comment-input {
    min-width: 0;
    padding: 9px 12px;
    border: 1px solid var(--community-border);
    border-radius: 9px;
    background: rgba(23, 23, 23, 0.64);
    font-size: 0.78rem;
}

.mobile-community .comment-input:focus {
    border-color: rgba(204, 255, 0, 0.45);
    background: rgba(23, 23, 23, 0.86);
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.08);
}

.mobile-community .send-comment-btn {
    padding: 9px 14px;
    border: 1px solid var(--community-border-hover);
    border-radius: 9px;
    background: #171717;
    color: var(--community-foreground);
    font-size: 0.72rem;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-community .send-comment-btn:hover,
.mobile-community .send-comment-btn:focus-visible {
    border-color: rgba(204, 255, 0, 0.42);
    background: #262626;
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.07);
    outline: none;
    transform: none;
}

.community-comment-signin,
.community-search-status {
    margin: 0;
    padding: 9px 0;
    color: var(--community-muted-quiet);
    font-size: 0.78rem;
}

.community-comment-signin a {
    color: #d4d4d4;
}

.community-comment-signin a:hover {
    color: var(--community-green);
}

.mobile-community .community-feed-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 26px 16px;
}

.community-pagination-link {
    padding: 9px 14px;
    border: 1px solid var(--community-border);
    border-radius: 9px;
    background: rgba(23, 23, 23, 0.52);
    color: #d4d4d4;
    font-size: 0.74rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.community-pagination-link:hover,
.community-pagination-link:focus-visible {
    border-color: var(--community-border-hover);
    background: rgba(38, 38, 38, 0.7);
    color: var(--community-foreground);
    outline: none;
}

.community-pagination-status {
    color: var(--community-muted-quiet);
    font-size: 0.7rem;
}

.mobile-community .community-feed-empty {
    box-sizing: border-box;
    margin: 0;
    padding: 52px 20px;
    border: 1px dashed var(--community-border);
    border-radius: 16px;
    background: rgba(23, 23, 23, 0.3);
    color: var(--community-muted-quiet);
    text-align: center;
}

.mobile-community .community-feed-empty--search {
    padding: 24px 16px;
}

.community-empty-icon {
    display: block;
    margin-bottom: 14px;
    color: #525252;
    font-size: 2.1rem;
}

.mobile-community .fab-create {
    right: 28px;
    bottom: 28px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(82, 82, 82, 0.82);
    border-radius: 15px;
    background: rgba(23, 23, 23, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: var(--community-foreground);
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mobile-community .fab-create::after {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--community-green);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.7);
    content: "";
}

.mobile-community .fab-create:hover,
.mobile-community .fab-create:focus-visible {
    border-color: rgba(204, 255, 0, 0.36);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 26px rgba(204, 255, 0, 0.07);
    color: var(--community-foreground);
    outline: none;
    transform: translateY(-2px);
}

.mobile-modal {
    top: 110vh;
    left: 50%;
    width: min(680px, calc(100% - 32px));
    height: min(760px, calc(100% - 48px));
    overflow: hidden;
    border: 1px solid var(--community-border, rgba(38, 38, 38, 0.8));
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
    transform: translateX(-50%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: top 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-modal.slide-up {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-modal .modal-header {
    padding: 16px 18px;
    border-color: rgba(38, 38, 38, 0.8);
    background: rgba(23, 23, 23, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobile-modal .modal-title {
    font-size: 0.9rem;
    font-weight: 720;
    letter-spacing: -0.01em;
}

.mobile-modal .cancel-btn,
.mobile-modal .post-submit-btn {
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 650;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-modal .cancel-btn {
    padding: 8px 10px;
    color: #a3a3a3;
}

.mobile-modal .cancel-btn:hover,
.mobile-modal .cancel-btn:focus-visible {
    background: rgba(38, 38, 38, 0.7);
    color: #fafafa;
    outline: none;
}

.mobile-modal .post-submit-btn {
    padding: 8px 13px;
    border-color: rgba(82, 82, 82, 0.8);
    background: #171717;
    color: #fafafa;
}

.mobile-modal .post-submit-btn:hover,
.mobile-modal .post-submit-btn:focus-visible {
    border-color: rgba(204, 255, 0, 0.42);
    background: #262626;
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.07);
    outline: none;
}

.mobile-modal .modal-body {
    padding: 22px;
}

.mobile-modal #createPostForm {
    gap: 16px;
}

.mobile-modal .modal-input,
.mobile-modal .modal-textarea,
.mobile-modal .modal-input-row,
.mobile-modal .modal-location-row {
    box-sizing: border-box;
    border: 1px solid rgba(38, 38, 38, 0.86);
    border-radius: 11px;
    background: rgba(23, 23, 23, 0.52);
}

.mobile-modal .modal-input,
.mobile-modal .modal-textarea {
    padding: 13px 14px;
    color: #fafafa;
    font-size: 0.875rem;
}

.mobile-modal .modal-textarea {
    min-height: 130px;
    line-height: 1.6;
}

.mobile-modal .modal-input-row,
.mobile-modal .modal-location-row {
    padding: 12px 14px;
    color: #737373;
}

.mobile-modal .modal-input:focus,
.mobile-modal .modal-textarea:focus,
.mobile-modal .modal-input-row:focus-within,
.mobile-modal .modal-location-row:focus-within {
    border-color: rgba(204, 255, 0, 0.42);
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.07);
}

.mobile-modal .modal-input-borderless {
    min-width: 0;
    color: #fafafa;
    font-size: 0.82rem;
}

.mobile-modal .media-upload-label {
    box-sizing: border-box;
    padding: 18px;
    border-color: rgba(64, 64, 64, 0.72);
    border-radius: 11px;
    background: rgba(23, 23, 23, 0.42);
    color: #a3a3a3;
    font-size: 0.82rem;
}

.mobile-modal .media-upload-label:hover,
.mobile-modal .media-upload-label:focus-within {
    border-color: rgba(204, 255, 0, 0.34);
    background: rgba(38, 38, 38, 0.58);
    color: #fafafa;
}

@media (min-width: 1024px) {
    .mobile-community .community-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

@media (max-width: 1023px) {
    .mobile-community .mobile-feed {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .mobile-community .mobile-header {
        padding: 10px 12px;
    }

    .mobile-community .search-container {
        gap: 8px;
    }

    .community-near-filter {
        min-height: 42px;
        padding: 9px 11px;
        font-size: 0.7rem;
    }

    .mobile-community .hashtag-mobile-row {
        padding: 10px 12px;
    }

    .mobile-community .community-layout {
        padding: 14px 12px;
    }

    .mobile-community .community-spotlight-banner {
        padding: 18px;
        border-radius: 14px;
    }

    .mobile-community .mobile-card {
        padding: 15px;
        border-radius: 15px;
    }

    .mobile-community .card-header {
        flex-direction: column-reverse;
        gap: 14px;
    }

    .mobile-community .community-feed-author {
        width: 100%;
        margin-left: 0;
    }

    .mobile-community .card-title {
        font-size: 1rem;
    }

    .mobile-community .fab-create {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .mobile-modal {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .mobile-modal .modal-body {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-community .mobile-card,
    .mobile-community .action-btn,
    .mobile-community .fab-create,
    .mobile-modal {
        transition-duration: 0.01ms;
    }
}

/* Community creator profile */
.creator-profile-page {
    width: min(100% - 40px, 1040px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 44px 0 100px;
    color: #f5f5f5;
}

.creator-profile-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: #777;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.creator-profile-back:hover {
    color: #ccff00;
}

.creator-profile-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    border: 1px solid #222;
    padding: 32px;
    background: linear-gradient(120deg, #0b0b0b 0%, #050505 70%);
}

.creator-profile-avatar {
    width: 112px;
    height: 112px;
    overflow: hidden;
    border: 2px solid #ccff00;
    border-radius: 50%;
    background: #111;
}

.creator-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-profile-eyebrow,
.creator-history-heading span {
    color: #ccff00;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.creator-profile-intro h1 {
    margin: 7px 0 10px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.creator-profile-seller-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #888;
    font-size: 0.78rem;
}

.creator-profile-tagline {
    max-width: 540px;
    margin: 12px 0 0;
    color: #aaa;
    line-height: 1.6;
}

.creator-profile-metrics {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.creator-profile-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 118px;
    border: 1px solid #242424;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
}

.creator-profile-metric > i {
    color: #ccff00;
    font-size: 0.8rem;
}

.creator-profile-metric > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.creator-profile-metric strong {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.creator-profile-metric small {
    color: #666;
    font-size: 0.56rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.creator-location-metric {
    min-width: 180px;
}

.creator-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.creator-message-cta,
.creator-storefront-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid #ccff00;
    padding: 14px 18px;
    color: #ccff00;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.creator-message-cta {
    border: 1px solid #333;
    color: #fff;
}

.creator-message-cta:hover,
.creator-message-cta:focus-visible,
.creator-storefront-cta:hover,
.creator-storefront-cta:focus-visible {
    gap: 22px;
    background: #ccff00;
    color: #000;
    outline: none;
}

.creator-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.creator-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #3a3a3a;
    padding: 5px 0;
    color: #aaa;
    font-size: 0.72rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.creator-social-link:hover,
.creator-social-link:focus-visible {
    border-color: #ccff00;
    color: #ccff00;
    outline: none;
}

.account-inbox-badge {
    display: inline-grid;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    place-items: center;
    border-radius: 999px;
    background: #ccff00;
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}

.account-inbox-badge[hidden] {
    display: none;
}

.creator-history-section {
    margin-top: 52px;
}

.creator-history-heading {
    margin-bottom: 22px;
}

.creator-history-heading h2 {
    margin: 6px 0 0;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.creator-post-history {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.creator-history-card {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid #1d1d1d;
    background: #080808;
}

.creator-history-media {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    background: #111;
}

.card-media.creator-history-media {
    width: 100%;
    min-height: 220px;
    margin: 0;
    border: 0;
    border-radius: 0;
    aspect-ratio: auto;
}

.creator-history-media img,
.creator-history-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.creator-history-media:hover img,
.creator-history-media:hover video {
    transform: scale(1.04);
}

.creator-video-indicator {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%);
}

.creator-history-copy {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.creator-history-meta,
.creator-history-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #666;
    font-size: 0.7rem;
}

.creator-history-copy h3 {
    margin: 12px 0 8px;
    font-size: 1.35rem;
}

.creator-history-copy h3 a {
    color: #fff;
    text-decoration: none;
}

.creator-history-copy h3 a:hover {
    color: #ccff00;
}

.creator-history-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 20px;
    color: #aaa;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.creator-history-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #1b1b1b;
}

.creator-history-footer a {
    margin-left: auto;
    color: #ccff00;
    text-decoration: none;
    text-transform: uppercase;
}

.creator-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 32px;
    color: #666;
    font-size: 0.75rem;
}

.creator-pagination a {
    color: #ccff00;
    text-decoration: none;
}

.creator-empty-history {
    border: 1px solid #1d1d1d;
    padding: 60px 20px;
    color: #666;
    text-align: center;
}

.creator-empty-history i {
    margin-bottom: 14px;
    font-size: 2rem;
}

@media (max-width: 760px) {
    .creator-profile-page {
        width: min(100% - 28px, 1040px);
        padding-top: 28px;
    }

    .creator-profile-hero {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 24px;
    }

    .creator-profile-avatar {
        width: 88px;
        height: 88px;
    }

    .creator-storefront-cta {
        width: 100%;
        box-sizing: border-box;
    }

    .creator-profile-actions,
    .creator-message-cta {
        width: 100%;
        box-sizing: border-box;
    }

    .creator-profile-metrics,
    .creator-profile-metric {
        width: 100%;
        box-sizing: border-box;
    }

    .creator-history-card {
        grid-template-columns: 1fr;
    }

    .creator-history-media {
        min-height: 260px;
        max-height: 360px;
    }
}

.demo-engagement-admin { max-width: 1180px; margin: 0 auto; padding: 48px 24px 80px; }
.social-proof-admin .demo-engagement-admin { max-width: none; margin: 56px 0; padding: 32px; border: 1px solid #303a19; background: #070a03; }
.demo-engagement-header { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; border-bottom: 1px solid #2a2a2a; padding-bottom: 28px; }
.demo-engagement-header p, .demo-engagement-section-heading span { margin: 0; color: #ccff00; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; }
.demo-engagement-header h1, .demo-engagement-header h2 { margin: 8px 0; }
.demo-engagement-header > div > span { color: #888; }
.demo-engagement-header-links { display: flex; gap: 10px; flex-wrap: wrap; }
.demo-engagement-header-links a, .demo-engagement-section-heading a { color: #ccff00; text-decoration: none; border: 1px solid #3b3b3b; padding: 9px 12px; border-radius: 6px; }
.demo-engagement-alert { margin-top: 24px; padding: 16px; border: 1px solid #a77c00; background: #211a05; color: #ffe391; border-radius: 8px; }
.demo-engagement-alert-danger { border-color: #8f3030; background: #260b0b; color: #ffb4b4; }
.demo-engagement-section { margin-top: 38px; }
.demo-engagement-section-heading { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 16px; }
.demo-engagement-section-heading h2 { margin: 5px 0 0; }
.demo-engagement-section-heading small { color: #777; }
.demo-engagement-post-list, .demo-engagement-run-list { display: grid; gap: 8px; }
.demo-engagement-post, .demo-engagement-run-list a { display: flex; justify-content: space-between; gap: 16px; padding: 14px 16px; background: #101010; border: 1px solid #282828; border-radius: 7px; color: #eee; text-decoration: none; }
.demo-engagement-post span, .demo-engagement-run-list span { color: #777; }
.demo-engagement-post:hover, .demo-engagement-post.selected { border-color: #ccff00; }
.demo-engagement-context-card { background: #0d0d0d; border: 1px solid #292929; border-left: 4px solid #ccff00; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.demo-engagement-context-card p { color: #bbb; }
.demo-engagement-context-card span { display: block; color: #777; font-size: .82rem; margin-top: 5px; }
.demo-engagement-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.demo-engagement-form fieldset { display: grid; gap: 12px; background: #101010; border: 1px solid #292929; border-radius: 8px; padding: 16px; min-width: 0; }
.demo-engagement-form legend { color: #ccff00; padding: 0 6px; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.demo-engagement-form label { display: grid; gap: 6px; color: #aaa; font-size: .78rem; }
.demo-engagement-form input:not([type="checkbox"]), .demo-engagement-form select { width: 100%; box-sizing: border-box; background: #080808; color: #fff; border: 1px solid #363636; border-radius: 5px; padding: 10px; }
.demo-engagement-form small, .demo-engagement-field-note { color: #707070; font-size: .7rem; margin: 0; }
.demo-engagement-timing-note { padding: 11px; border: 1px solid #2c351a; border-radius: 6px; background: #0a0e05; color: #aeb996 !important; line-height: 1.55; }
.demo-engagement-personalities { display: grid; gap: 7px; }
.demo-engagement-personalities > span { color: #aaa; font-size: .78rem; }
.demo-engagement-personalities label, .demo-engagement-checkbox { display: flex !important; align-items: flex-start; gap: 8px !important; }
.demo-engagement-wide, .demo-engagement-ack, .demo-engagement-submit-row { grid-column: 1 / -1; }
.demo-engagement-ack { padding: 13px; background: #241e04; border: 1px solid #786400; border-radius: 6px; color: #ffe391 !important; }
.demo-engagement-submit-row { display: flex; justify-content: space-between; gap: 18px; align-items: center; border-top: 1px solid #292929; padding-top: 16px; }
.demo-engagement-submit-row span { display: block; color: #777; font-size: .76rem; margin-top: 4px; }
.demo-engagement-form button, .demo-engagement-commit-row button { border: 0; background: #ccff00; color: #050505; font-weight: 800; padding: 12px 18px; border-radius: 6px; cursor: pointer; }
.demo-engagement-form button:disabled { opacity: .4; cursor: not-allowed; }
.demo-engagement-summary-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.demo-engagement-summary-grid span { background: #111; border: 1px solid #2b2b2b; border-radius: 7px; padding: 14px; color: #888; }
.demo-engagement-summary-grid strong { display: block; color: #ccff00; font-size: 1.4rem; }
.demo-engagement-progress-note { margin: 12px 0 0; color: #888; font-size: .78rem; line-height: 1.55; }
.demo-engagement-comment-preview { display: grid; gap: 8px; margin-top: 16px; }
.demo-engagement-comment-preview article { background: #101010; border: 1px solid #292929; border-radius: 7px; padding: 12px 14px; }
.demo-engagement-comment-preview article.reply { margin-left: 32px; border-left: 3px solid #ccff00; }
.demo-engagement-comment-preview article span { color: #ccff00; font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
.demo-engagement-comment-preview article p { margin: 6px 0 0; color: #ddd; }
.demo-engagement-commit-row { display: flex; justify-content: flex-end; gap: 12px; margin-top: 18px; align-items: center; }
.demo-engagement-commit-row form { display: flex; gap: 12px; align-items: center; }
.demo-engagement-commit-row button.secondary { background: #242424; color: #ddd; }
.synthetic-demo-badge { display: inline-flex; align-items: center; gap: 3px; margin-left: 5px; padding: 2px 5px; border: 1px solid #ccff00; border-radius: 4px; color: #ccff00; background: #172000; font-size: .58rem; line-height: 1.2; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: middle; }
.comment-reply { margin: 9px 0 0 20px; padding-left: 10px; border-left: 2px solid #394700; }

@media (max-width: 900px) {
    .demo-engagement-form { grid-template-columns: 1fr; }
    .demo-engagement-wide, .demo-engagement-ack, .demo-engagement-submit-row { grid-column: auto; }
    .demo-engagement-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px) {
    .demo-engagement-header, .demo-engagement-section-heading, .demo-engagement-post, .demo-engagement-run-list a, .demo-engagement-submit-row, .demo-engagement-commit-row, .demo-engagement-commit-row form { flex-direction: column; align-items: stretch; }
    .demo-engagement-comment-preview article.reply { margin-left: 14px; }
    .social-proof-admin .demo-engagement-admin { padding: 22px 16px; }
}

.brand-banner-store-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.72);
    color: #ccff00;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-banner-store-cta {
    color: #ccff00;
    text-decoration: none;
    border: 1px solid #ccff00;
    padding: 12px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.brand-header:hover .brand-banner-store-link,
.brand-banner-store-link:focus-within {
    opacity: 1;
}

.brand-header:hover .brand-header-overlay {
    opacity: 0.25;
    transform: scale(0.98);
}

.brand-header:hover .brand-banner-store-cta,
.brand-banner-store-link:focus-within .brand-banner-store-cta {
    transform: translateY(0);
}

.brand-banner-store-cta:hover,
.brand-banner-store-cta:focus-visible {
    background: #ccff00;
    color: #000;
}

.brand-banner-store-link:focus-within {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.brand-profile-title-link {
    position: relative;
    z-index: 4;
    color: inherit;
    text-decoration: none;
}

.brand-profile-title-link:focus-visible {
    outline: 1px solid #ccff00;
    outline-offset: 6px;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: ghostwhite;
    margin: 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

.btn-brand-view {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccff00;
    text-decoration: none;
    border: 1px solid #ccff00;
    padding: 6px 16px;
    transition: all 0.3s ease;
}

.btn-brand-view:hover {
    background-color: #ccff00;
    color: #000;
}

/* Product Grid */
.storefront-desktop-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.storefront-template-c-header {
    position: relative;
    z-index: 10;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.9));
}

.storefront-template-c-gallery {
    padding: 40px 40px 100px;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop default: 4 col */
    gap: 20px;
}

.shop-product-card {
    background: transparent;
    cursor: pointer;
}

.product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    /* STRICT BOXY */
    overflow: hidden;
    margin-bottom: 12px;
}

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

img.storefront-product-image {
    box-sizing: border-box;
    object-position: center;
}

img.storefront-product-image--crop {
    object-fit: cover;
    padding: 0;
}

img.storefront-product-image--fit {
    object-fit: contain;
    padding: clamp(8px, 3%, 24px);
    background: #111;
}

.product-action-overlay {
    position: absolute;
    bottom: -50px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    transition: bottom 0.3s ease;
    display: flex;
    justify-content: center;
}

.btn-quick-add {
    width: 100%;
    padding: 10px 0;
    background-color: ghostwhite;
    color: #000;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    /* STRICT BOXY */
    transition: background-color 0.2s;
}

.btn-quick-add:hover {
    background-color: #ccff00;
}

.shop-product-card:hover .product-media img {
    transform: scale(1.05);
    /* Slight zoom */
}

.shop-product-card:hover .product-action-overlay {
    bottom: 0;
    /* Slide up actions */
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 4px;
}

.product-info .product-name {
    font-size: 0.95rem;
    color: ghostwhite;
    font-weight: 500;
}

.product-info .product-price {
    font-size: 0.95rem;
    color: #888;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero {
        height: 60vh;
    }

    .shop-hero-title {
        font-size: 2rem;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobile: 2 col strict */
        gap: 15px;
        /* Tighter gap on mobile */
    }

    .product-info {
        flex-direction: column;
        gap: 4px;
    }
}

/* =========================================
   SHOP PRODUCT MODAL
   ========================================= */

.shop-container,
.shop-container *,
.shop-container *::before,
.shop-container *::after,
.shop-modal-overlay,
.shop-modal-overlay *,
.shop-modal-overlay *::before,
.shop-modal-overlay *::after {
    box-sizing: border-box;
}

.shop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    /* toggled via inline JS */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.shop-modal-overlay.active {
    opacity: 1;
}

.shop-modal-content {
    position: relative;
    background-color: #050505;
    border: 1px solid #333;
    border-radius: 0;
    /* STRICT BOXY */
    width: 100%;
    max-width: 900px;
    min-width: 0;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.shop-modal-overlay.active .shop-modal-content {
    transform: translateY(0);
}

.shop-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.shop-modal-close:hover {
    color: #ccff00;
}

.shop-modal-split {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

.shop-modal-media {
    flex: 1;
    min-width: 0;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #222;
    padding: 20px;
}

.shop-modal-media img {
    width: 100%;
    height: 450px;
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.shop-modal-media img.storefront-product-image--crop {
    object-fit: cover;
    padding: 0;
}

.shop-modal-media img.storefront-product-image--fit {
    object-fit: contain;
    padding: 20px;
}

.shop-modal-details {
    flex: 1;
    min-width: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.shop-modal-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.shop-modal-price {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 25px;
}

.shop-modal-divider {
    height: 1px;
    background-color: #222;
    margin-bottom: 25px;
}

.shop-modal-sizing {
    margin-bottom: 30px;
}

.storefront-owner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #ddd;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.storefront-owner-link img {
    width: 34px;
    height: 34px;
    border: 1px solid #555;
    border-radius: 50%;
    object-fit: cover;
}

.storefront-owner-link span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #777;
}

.storefront-owner-link strong {
    color: #fff;
    font-size: 0.76rem;
}

.storefront-owner-link:hover strong,
.storefront-owner-link:focus-visible strong {
    color: #ccff00;
}

.storefront-owner-link:focus-visible {
    outline: 1px solid #ccff00;
    outline-offset: 5px;
}

.storefront-owner-link-compact {
    margin-top: 8px;
}

.storefront-owner-link-mobile {
    margin-top: 12px;
}

.variant-option-group + .variant-option-group {
    margin-top: 18px;
}

.variant-stock-status {
    min-height: 20px;
    margin: -18px 0 24px;
    color: #888;
    font-size: 0.78rem;
}

.storefront-quantity-block {
    margin: 0 0 22px;
}

.storefront-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a3a3a;
    background: #080808;
}

.storefront-quantity button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.15rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.storefront-quantity button:hover:not(:disabled),
.storefront-quantity button:focus-visible:not(:disabled) {
    background: #ccff00;
    color: #000;
    outline: none;
}

.storefront-quantity button:disabled {
    color: #3d3d3d;
    cursor: not-allowed;
}

.storefront-quantity > span {
    min-width: 42px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.mobile-product-sheet-quantity {
    margin-top: 18px;
}

.sizing-label,
.info-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sizing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.size-box {
    background: transparent;
    border: 1px solid #444;
    color: ghostwhite;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    /* STRICT BOXY */
    transition: all 0.2s ease;
}

.size-box:hover {
    border-color: #ccff00;
    color: #ccff00;
}

.size-box.selected {
    background-color: #ccff00;
    color: #000;
    border-color: #ccff00;
    font-weight: bold;
}

.size-box:disabled {
    border-color: #222;
    color: #444;
    cursor: not-allowed;
    text-decoration: line-through;
}

.btn-add-to-cart:disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
}

.shop-modal-info {
    margin-bottom: 40px;
    flex-grow: 1;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.btn-add-to-cart {
    width: 100%;
    padding: 18px;
    background-color: ghostwhite;
    color: #000;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    /* STRICT BOXY */
    transition: background-color 0.2s, transform 0.1s;
}

.btn-add-to-cart:hover {
    background-color: #ccff00;
}

.btn-add-to-cart:active {
    transform: scale(0.98);
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .shop-modal-overlay {
        padding: 12px;
        overflow-x: hidden;
    }

    .shop-modal-content {
        max-width: 100%;
        max-height: calc(100dvh - 24px);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .shop-modal-split {
        flex-direction: column;
        min-width: 0;
        min-height: 0;
        width: 100%;
    }

    .shop-modal-media {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #222;
        padding: 36px 16px 24px;
    }

    .shop-modal-media img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 42vh;
    }

    .shop-modal-details {
        width: 100%;
        padding: 22px 18px;
    }

    .shop-modal-title {
        font-size: 1.5rem;
        overflow-wrap: anywhere;
    }

    .info-text {
        overflow-wrap: anywhere;
    }

    .sizing-grid {
        gap: 6px;
    }
}

/* =========================================
   UI TOGGLES
   ========================================= */
.form-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.form-toggle:last-child {
    border-bottom: none;
}

.toggle-label {
    font-size: 0.95rem;
    color: ghostwhite;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #ccff00;
}

input:checked+.slider:before {
    transform: translateX(26px);
    background-color: #000;
}
/* Upload Drop Zone */
.upload-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed #333;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
}
.upload-drop-zone:hover {
    border-color: #ccff00;
    background: rgba(204, 255, 0, 0.05);
}
.upload-drop-zone span.upload-cta {
    display: inline-block;
    background: #ccff00;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.upload-drop-zone span.upload-help {
    color: #888;
    font-size: 0.8rem;
}


/* Mobile Carousel for Spotlight Featured Products */
.spotlight-featured-products {
    display: flex;
    justify-content: flex-start !important;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.spotlight-featured-products::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.spotlight-featured-products .featured-product-card {
    flex-shrink: 0;
    min-width: 200px;
}


@keyframes flash-pulse {
    0%   { opacity: 1; text-shadow: 0 0 10px #ccff00; }
    50%  { opacity: 0.3; text-shadow: none; }
    100% { opacity: 1; text-shadow: 0 0 10px #ccff00; }
}

.disclaimer-highlight {
    color: #ccff00;
    font-weight: bold;
    animation: flash-pulse 0.8s ease-in-out 5;
}



/* -----------------------------------------------------------
   HOME PAGE — EDITORIAL REVAMP
----------------------------------------------------------- */

/* -- Hero: multi-layer overlay -- */
.hero-overlay-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
/* existing .spotlight-overlay already covers bottom-to-black */
.spotlight-overlay {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.96) 100%) !important;
}

/* -- Hero content layout -- */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: auto;
}

/* -- Countdown pill (top-right) -- */
#spotlight-timer.hero-countdown {
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: auto;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    width: auto;
    transform: none;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(204, 255, 0, 0.82);
    box-shadow: 0 0 24px rgba(204, 255, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.45);
    padding: 14px 22px;
    border-radius: 4px;
}
.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #f4f4f4;
    text-transform: uppercase;
}
.countdown-clock {
    font-family: 'Roboto Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ccff00;
    letter-spacing: 4px;
    transition: opacity 0.1s;
}

/* -- Eyebrow / kicker line -- */
.hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 6px;
    color: #ccff00;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

/* -- Massive hero title -- */
.hero-title {
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin: 0 0 20px 0;
    text-shadow: 0 0 80px rgba(204,255,0,0.15);
}

/* -- Location chip -- */
.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-profile-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.hero-profile-link:hover .hero-title,
.hero-profile-link:focus-visible .hero-title {
    color: #ccff00;
}

.hero-profile-link:focus-visible {
    outline: 1px solid #ccff00;
    outline-offset: 7px;
}

.hero-storefront-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    border: 1px solid #ccff00;
    padding: 12px 18px;
    color: #ccff00;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.hero-storefront-link:hover,
.hero-storefront-link:focus-visible {
    gap: 22px;
    background: #ccff00;
    color: #000;
    outline: none;
}

@media (hover: none) {
    .brand-banner-store-link {
        inset: auto 12px 12px auto;
        background: transparent;
        opacity: 1;
    }

    .brand-banner-store-cta {
        background: rgba(0, 0, 0, 0.82);
        padding: 9px 12px;
        transform: none;
    }
}
.hero-location-dot {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    animation: ping 1.5s ease-in-out infinite;
}
@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* -- Product cards: edge-to-edge image with slide-up overlay -- */
.hero-products {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.hero-products::-webkit-scrollbar { display: none; }

.hero-product-card {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 240px;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.06);
    color: inherit;
    text-decoration: none;
}
.hero-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.hero-product-card:hover img {
    transform: scale(1.08);
}
.hero-product-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 16px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    transform: translateY(8px);
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.hero-product-card:hover .hero-product-overlay {
    transform: translateY(0);
    opacity: 1;
}
.hero-product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.hero-product-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-product-price {
    font-size: 0.85rem;
    color: var(--spotlight-brand-accent);
    font-weight: 600;
    letter-spacing: 1px;
}

/* -- Scroll hint -- */
.hero-scroll-hint {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    margin: 0 0 14px;
    color: #ccff00;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-scroll-hint span {
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.84);
    border: 1px solid rgba(204, 255, 0, 0.58);
    box-shadow: 0 0 18px rgba(204, 255, 0, 0.16);
}
.hero-scroll-hint-mobile {
    display: none;
}
.hero-scroll-hint-desktop {
    align-items: flex-end;
}
.scroll-line {
    position: relative;
    width: 1px;
    height: 42px;
    margin-right: 18px;
    background: linear-gradient(to bottom, #ccff00, rgba(204, 255, 0, 0.12));
    animation: scrollDrop 1.5s ease-in-out infinite;
}
.scroll-line::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: 1px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #ccff00;
    border-bottom: 1px solid #ccff00;
    transform: rotate(45deg);
}
@keyframes scrollDrop {
    0%, 100% { transform: translateY(0); opacity: 0.48; }
    50% { transform: translateY(9px); opacity: 1; }
}

/* -- Spotlight section sizing -- */
.spotlight {
    border: none !important;
    min-height: 100vh !important;
    align-items: flex-end !important;
    margin-bottom: 0 !important;
}

/* -----------------------------------------------------------
   SPOTLIGHT LOOKBOOK MARQUEE / PRODUCT GRID
----------------------------------------------------------- */
.spotlight-lookbook {
    padding: clamp(72px, 8vw, 112px) 0 160px;
    overflow: hidden;
    background: #050505;
}
.spotlight-lookbook-header {
    width: max-content;
    max-width: calc(100% - 120px);
    margin: 0 60px 42px auto;
    padding-left: 18px;
    border-left: 1px solid var(--spotlight-brand-accent);
    text-align: right;
}
.spotlight-lookbook-rotation {
    display: block;
    margin-bottom: 9px;
    color: #6d6d6d;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
}
.spotlight-lookbook-title {
    margin: 0;
    color: var(--spotlight-paper);
    font-size: clamp(1.2rem, 2.5vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}
.spotlight-marquee-window {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.spotlight-marquee-track {
    display: flex;
    width: max-content;
    animation: spotlightMarqueeScroll 30s linear infinite;
    will-change: transform;
}
.spotlight-marquee-track:hover {
    animation-play-state: paused;
}
.spotlight-marquee-cycle {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}
.spotlight-marquee-item {
    position: relative;
    flex: 0 0 auto;
    width: clamp(230px, 25vw, 340px);
    height: clamp(320px, 34vw, 460px);
    margin: 0;
    overflow: hidden;
    background: #0c0c0c;
}
.spotlight-marquee-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
    transition: filter 0.4s ease, transform 0.55s ease;
}
.spotlight-marquee-item:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.045);
}
.spotlight-marquee-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 42%);
}
@keyframes spotlightMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.spotlight-catalog-grid-link {
    position: relative;
    z-index: 3;
    display: block;
    width: min(1600px, calc(100% - 120px));
    margin: -128px 60px 120px auto;
    padding: 20px;
    box-sizing: border-box;
    background: #070907;
    border: 1px solid rgba(204, 255, 0, 0.62);
    box-shadow: 16px 16px 0 rgba(204, 255, 0, 0.88);
    color: #fff;
    text-decoration: none;
}
.spotlight-catalog-grid-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 2px 18px;
    text-transform: uppercase;
}
.spotlight-catalog-grid-heading span {
    color: #818181;
    font-size: 0.67rem;
    letter-spacing: 0.24em;
}
.spotlight-catalog-grid-heading strong {
    color: #ccff00;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
}
.spotlight-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.spotlight-catalog-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.spotlight-catalog-card.is-spotlight {
    border-color: #ccff00;
    box-shadow: inset 0 0 0 1px #ccff00, 0 0 24px rgba(204, 255, 0, 0.34);
}
.spotlight-catalog-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.3s ease;
}

.spotlight-catalog-card img.storefront-product-image--crop {
    object-fit: cover;
}

.spotlight-catalog-card img.storefront-product-image--fit {
    object-fit: contain;
    padding: 10px;
    background: #111;
}
.spotlight-catalog-grid-link:hover .spotlight-catalog-card {
    transform: translateY(-2px);
}
.spotlight-catalog-grid-link:hover .spotlight-catalog-card img {
    transform: scale(1.035);
}
.spotlight-catalog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 55%);
}
.spotlight-catalog-card-name {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    overflow: hidden;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}
.spotlight-catalog-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 8px;
    color: #050505;
    background: #ff2d95;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* -----------------------------------------------------------
   MOBILE RESPONSIVE — HOME REVAMP
----------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-content {
        box-sizing: border-box;
        padding: 0 24px 60px;
    }
    .spotlight {
        box-sizing: border-box;
    }
    #spotlight-timer.hero-countdown {
        top: 16px;
        right: 16px;
        bottom: auto;
        width: auto;
        transform: none;
        padding: 10px 14px;
    }
    .countdown-clock { font-size: 1.4rem; }
    .countdown-label {
        font-size: 0.58rem;
        letter-spacing: 2px;
    }
    .hero-eyebrow {
        font-size: 0.74rem;
        letter-spacing: 4px;
    }
    .hero-scroll-hint-desktop {
        display: none;
    }
    .hero-scroll-hint-mobile {
        display: flex;
        position: absolute;
        top: 104px;
        right: 16px;
        z-index: 4;
        width: auto;
        margin: 0;
        flex-direction: column;
        align-items: flex-end;
        gap: 7px;
    }
    .hero-scroll-hint span {
        max-width: 156px;
        box-sizing: border-box;
        text-align: right;
    }
    .scroll-line {
        width: 1px;
        height: 34px;
        margin-right: 18px;
    }
    .hero-title { letter-spacing: -1px; margin-bottom: 14px; }
    .hero-product-card { width: 180px; height: 240px; }
    .spotlight-lookbook {
        padding: 60px 0 126px;
    }
    .spotlight-lookbook-header {
        max-width: calc(100% - 40px);
        margin: 0 20px 28px auto;
    }
    .spotlight-lookbook-title {
        font-size: 1.25rem;
    }
    .spotlight-marquee-item {
        width: 220px;
        height: 300px;
    }
    .spotlight-catalog-grid-link {
        width: auto;
        margin: -84px 14px 82px;
        padding: 10px;
        box-shadow: 8px 8px 0 rgba(204, 255, 0, 0.88);
    }
    .spotlight-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .spotlight-catalog-grid-heading {
        align-items: flex-start;
        padding: 5px 2px 12px;
    }
    .spotlight-catalog-grid-heading strong {
        max-width: 150px;
        text-align: right;
    }
    .spotlight-catalog-grid {
        gap: 8px;
    }
    .spotlight-catalog-card {
        aspect-ratio: 1;
    }
    .spotlight-catalog-card-name {
        right: 8px;
        bottom: 8px;
        left: 8px;
        font-size: 0.62rem;
    }
    .spotlight-catalog-card-badge {
        top: 7px;
        right: 7px;
        padding: 5px 6px;
        font-size: 0.5rem;
    }
    .seller-recruitment-placement--home {
        width: auto;
        margin: -42px 14px 82px;
    }
    .seller-recruitment-placement--shop {
        margin: 22px auto 32px;
        padding: 0 14px;
    }
    .seller-recruitment-cta {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 19px 18px 19px 22px;
        box-shadow: 7px 7px 0 rgba(204, 255, 0, 0.18);
    }
    .seller-recruitment-cta-message,
    .seller-recruitment-cta-action {
        grid-column: 1;
        grid-row: auto;
    }
    .seller-recruitment-cta-action {
        margin-top: 3px;
        white-space: normal;
    }
}


