:root {
    /* STARK HIGH CONTRAST VARIABLES */
    --bg-color: #ffffff;
    --text-primary: #000000;
    --border-color: #000000;
    --accent-bg: #f4f4f4;
    
    /* TYPOGRAPHY */
    --font-heading: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-heading);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Structural Borders */
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-right { border-right: 1px solid var(--border-color); }
.border-top { border-top: 1px solid var(--border-color); }
.border-left { border-left: 1px solid var(--border-color); }

/* Announcement Bar */
.announcement-bar {
    background-color: var(--text-primary);
    color: var(--bg-color);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: var(--bg-color);
    z-index: 1000;
    position: sticky;
    top: 0;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
    white-space: nowrap;
    padding: 0.25rem 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--text-primary);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--accent-bg);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.tech-spec {
    font-size: 0.85rem;
    margin-bottom: 3rem;
    color: #444;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid var(--text-primary);
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: var(--bg-color);
    color: var(--text-primary);
}

/* Manifesto Section */
.manifesto-grid {
    display: grid;
    grid-template-columns: 30% 70%;
}

.manifesto-title {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.manifesto-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.manifesto-text {
    padding: 4rem;
    font-size: 1.25rem;
    line-height: 2;
}

.manifesto-text p {
    margin-bottom: 1rem;
}

/* Product Section */
.section-header {
    padding: 2rem 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 4rem 2rem 4rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-btn {
    background: none;
    border: none;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    color: var(--text-primary);
    font-weight: 700;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--accent-bg);
    position: relative;
}

/* Card Slider classes */
.card-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card-slider-track::-webkit-scrollbar {
    display: none;
}

.card-slide-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
    transition: transform 0.3s ease;
}

.product-card:hover .card-slide-img {
    transform: scale(1.02);
}

.image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
    transition: transform 0.3s ease;
}

.product-card:hover .image-wrapper > img {
    transform: scale(1.02);
}

/* Card Arrows */
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.product-card:hover .card-arrow {
    opacity: 1;
}

.card-arrow:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.card-arrow.prev {
    left: 0.5rem;
}

.card-arrow.next {
    right: 0.5rem;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info .btn-secondary {
    margin-top: auto;
}

.spec-sheet {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
}

.spec-sheet h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.spec-sheet .price {
    font-weight: 700;
}

.description {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 2rem;
    min-height: 60px;
}

.btn-secondary {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.brand {
    padding: 4rem;
}

.brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.85rem;
}

/* Hamburger Menu (Desktop Hidden) */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Cart Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

#cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    border-left: 1px solid var(--border-color);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

#cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-mono);
}

#cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
    background: var(--accent-bg);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 2rem;
    gap: 0;
    width: 100%;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--text-primary);
    outline: none;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .hero, .manifesto-grid, .product-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .border-right { border-right: none; }
    .hero-image-container { border-bottom: 1px solid var(--text-primary); min-height: 40vh; }
    
    /* Navbar Mobile */
    .navbar { padding: 1rem; flex-wrap: wrap; }
    .hamburger { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }

    /* Typography & Padding Fixes */
    .hero h1 { font-size: 2.5rem; }
    .hero-content { padding: 2rem; }
    .manifesto-title, .manifesto-text, .section-header, .brand, .footer-links { padding: 2rem; }
    
    /* Product Card Fixes */
    .product-info { padding: 1rem; }
    .filter-bar { padding: 0 2rem 1rem 2rem; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .navbar .logo {
        font-size: 1.2rem;
    }
}

/* Size Selector & Buttons */
.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.size-btn {
    background: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-btn:hover {
    background-color: var(--accent-bg);
}

.size-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.size-btn.out-of-stock {
    opacity: 0.4;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Cart Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.quantity-selector button {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 1rem;
    padding: 0 0.25rem;
    transition: var(--transition-fast);
}

.quantity-selector button:hover {
    font-weight: 700;
}

.quantity-selector span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    min-width: 1.5rem;
    text-align: center;
}

/* Shipping notice in cart drawer */
.shipping-notice {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================
   PRODUCT DETAIL PAGE STYLES
   ========================================== */
.product-detail-section {
    min-height: 80vh;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 60% 40%;
}

/* Dynamic Sliding Gallery */
.product-gallery {
    position: relative;
    width: 100%;
    border-right: 1px solid var(--border-color);
    background: var(--accent-bg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(10%) contrast(1.1);
}

/* Brutalist arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.slider-arrow.prev {
    left: 1.5rem;
}

.slider-arrow.next {
    right: 1.5rem;
}

/* Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}

.dot {
    width: 8px;
    height: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--text-primary);
}

.product-detail-info {
    padding: 4rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-detail-info .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-detail-info .description-box {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
}

/* Sizing and Buy Form elements on PDP */
.product-detail-info .size-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-detail-info .size-selector {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .slider-container {
        height: 60vh;
    }
    .slider-arrow {
        display: none;
    }
    .product-detail-info {
        position: static;
        padding: 2rem;
        border-top: none;
    }
    .product-detail-info h1 {
        font-size: 2rem;
    }
}

/* ==========================================
   REVIEWS & SOLD COUNTS STYLING
   ========================================== */
.reviews-section {
    background-color: var(--bg-color);
    width: 100%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 40% 60%;
}

.reviews-summary {
    padding: 4rem;
}

.reviews-summary h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sold-count-badge {
    background-color: var(--accent-bg);
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.sold-count-indicator {
    color: #000;
    animation: pulse 1.5s infinite;
}

.rating-display {
    margin-bottom: 2.5rem;
}

.avg-rating {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.avg-stars {
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

.total-reviews-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-row {
    display: flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    gap: 0.75rem;
}

.stars-label {
    width: 3.5rem;
    font-weight: 700;
}

.progress-bar-bg {
    flex: 1;
    height: 8px;
    background: #eaeaea;
    border: 1px solid var(--border-color);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--text-primary);
    transition: width 0.4s ease;
}

.count-label {
    width: 1.5rem;
    text-align: right;
    font-weight: 700;
}

.reviews-list-container {
    display: flex;
    flex-direction: column;
}

.reviews-list-header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-reviews {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-filter-btn {
    background: none;
    border: 1px solid transparent;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.review-filter-btn:hover {
    color: var(--text-primary);
}

.review-filter-btn.active {
    color: var(--text-primary);
    border-color: var(--border-color);
    font-weight: 700;
}

.reviews-list-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

#reviews-list {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.review-item {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-name {
    font-weight: 700;
}

.verified-badge {
    color: green;
    font-weight: 700;
}

.review-date {
    color: var(--text-secondary);
}

.review-rating {
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #222;
}

.review-image-wrapper {
    margin-top: 0.5rem;
}

.review-thumbnail {
    max-width: 120px;
    max-height: 120px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    cursor: zoom-in;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.review-thumbnail:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}

.no-reviews {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 6rem 0;
    text-transform: uppercase;
}

/* ==========================================
   MODAL & FORMS STYLING
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    width: 500px;
    max-width: 90%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.25s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-mono);
    line-height: 1;
}

.modal-instruction {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.modal-instruction.success-text {
    color: green;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    outline: none;
    transition: background-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    background-color: var(--accent-bg);
}

.star-rating-selector {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
    color: #ddd;
    cursor: pointer;
    user-select: none;
}

.star-rating-selector .star-select {
    transition: color 0.15s ease;
}

.star-rating-selector .star-select:hover,
.star-rating-selector .star-select.active {
    color: var(--text-primary);
}

.verify-error-box {
    border: 1px dashed red;
    padding: 1.25rem;
    background: #fff8f8;
}

.error-msg {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: red;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
}

input[type="file"] {
    display: none;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    border: 1px dashed var(--border-color);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: var(--accent-bg);
    text-align: center;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-label:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    border-style: solid;
}

/* ==========================================
   LIGHTBOX OVERLAY
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border: 1px solid var(--bg-color);
    background-color: #000;
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--bg-color);
    font-size: 2.5rem;
    cursor: pointer;
    font-family: var(--font-mono);
    line-height: 1;
}

/* ==========================================
   ANIMATIONS & RESPONSIVE CAPTURES
   ========================================== */
@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@keyframes modalSlideIn {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
    }
    
    .reviews-summary h2 {
        font-size: 1.8rem;
    }
    
    .reviews-list-header {
        padding: 2rem;
    }
    
    #reviews-list {
        padding: 2rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}



/* ==========================================
   PAGE TRANSITION OVERLAYS
   ========================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--text-primary); /* Stark black overlay */
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-transition-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================
   UPLOAD DROPZONE & URGENCY STYLES
   ========================================== */
.upload-dropzone {
    border: 2px dashed var(--border-color);
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--bg-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.upload-dropzone .upload-icon {
    font-size: 1.5rem;
}

#pdp-stock-indicator {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
