/* Store Hybrid Stylesheet - Premium Dark Tech (Apple / DJI Style) */

:root {
    --bg-dark: #09090b;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.06);
    --text-light: #fafafa;
    --text-muted: #a1a1aa;
    --primary: #00f0ff; /* Neon Cyan */
    --primary-glow: rgba(0, 240, 255, 0.25);
    --accent: #ef4444; /* red for stock alerts */
}

/* Reset and Globals */
* {
    box-sizing: border-box;
}

body.hybrid-landing-page {
    background-color: var(--bg-dark) !important;
    color: var(--text-light) !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 960px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 50px 0;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Smart Sticky Header */
.smart-header {
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.smart-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

.header-cta {
    background-color: var(--primary);
    color: #09090b;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
    background-color: #33f3ff;
    transform: translateY(-1px);
}

/* Main Content Wrapper */
.landing-main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px 0;
}

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

.image-card {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
}

.product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    z-index: 2;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    z-index: 2;
}

.hero-content-wrapper h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0 20px 0;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero-content-wrapper h1 {
        font-size: 2.4rem;
    }
}

.offer-tag {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-free {
    color: #22c55e;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Scarcity / Stock Box */
.scarcity-box {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 35px;
}

.stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.stock-info strong {
    color: var(--accent);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.stock-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.stock-progress {
    height: 100%;
    background-color: var(--accent);
    border-radius: 4px;
}

/* Pulsating Button */
.pulsating-btn {
    display: block;
    text-align: center;
    background-color: var(--primary);
    color: #09090b;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: btnGlow 2s infinite alternate;
}

.pulsating-btn:hover {
    background-color: #33f3ff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.sub-cta {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 4px;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 10px var(--primary-glow);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    display: block;
}

/* Media Marquee Section */
.media-marquee {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    margin-right: 120px;
    letter-spacing: 4px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Product Anatomy Section */
.product-anatomy {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.anatomy-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 !important;
}

.anatomy-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 10;
}

.hotspot-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    top: 6px;
    left: 6px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 240, 255, 0.4);
    animation: pulseHotspot 2s infinite;
}

@keyframes pulseHotspot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(9, 9, 11, 0.95);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 100;
}

.hotspot-tooltip h4 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Tech Specs Bento Grid */
.tech-specs {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.spec-card {
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.25);
}

.spec-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.spec-svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.spec-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-light);
}

.spec-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Us vs. Them Comparison Section */
.us-vs-them {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.table-wrapper {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 !important;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

.comparison-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.005);
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Column Highlight */
.col-highlight {
    background: rgba(0, 240, 255, 0.015) !important;
    color: var(--text-light) !important;
    font-weight: 600;
}

th.col-highlight {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary) !important;
}

.check-mark, .cross-mark {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 8px;
}

.table-svg {
    width: 16px;
    height: 16px;
}

.table-svg.check {
    stroke: #22c55e;
}

.table-svg.cross {
    stroke: #ef4444;
}

@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 14px 12px;
        font-size: 0.85rem;
    }
}

/* UGC Social Proof (Loved by Thousands) */
.social-proof {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ugc-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    text-align: left;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.star-svg {
    width: 14px;
    height: 14px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 15px 0;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* FAQ & Support Section */
.faq-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.faq-accordion-wrapper h2 {
    margin-bottom: 40px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: var(--card-bg);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.01);
}

.chevron-svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: transform 0.3s;
    fill: none;
}

.accordion-item.active .chevron-svg {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 24px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.accordion-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.faq-guarantees {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding-left: 50px;
}

@media (max-width: 960px) {
    .faq-guarantees {
        padding-left: 0;
        margin-top: 50px;
    }
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.guarantee-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.guarantee-content h4 {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.guarantee-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Secure Footer */
.landing-footer {
    border-top: 1px solid var(--card-border);
    padding: 80px 0 40px 0;
    background: rgba(9, 9, 11, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.brand-sub {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.footer-checkout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.payment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-pills span {
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
}

.pill-stripe {
    color: #635bff !important;
}

.pill-paypal {
    color: #0079c1 !important;
}

.footer-security {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sec-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.01);
}

.sec-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.sec-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom .footer-links {
    margin: 0;
}

.footer-bottom .footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-bottom .footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Rich Bento Specs Grid */
.spec-card-rich {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spec-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
}

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

.spec-card-rich:hover .spec-img {
    transform: scale(1.05);
}

.spec-content {
    padding: 30px;
}

/* Why Free Story Section */
.why-free-story {
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.02) 0%, transparent 70%);
}

.story-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px !important;
}

@media (max-width: 768px) {
    .story-wrapper {
        padding: 30px 24px !important;
    }
}

.story-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.story-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.story-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.story-text p strong {
    color: var(--text-light);
}

.story-signature {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.sig-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Color Variant Swatches (Silicone Case Hero) */
.variant-selection {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px 20px;
}

.selection-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.color-swatches {
    display: flex;
    gap: 12px;
    align-items: center;
}

.swatch-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    outline: none;
}

.swatch-btn:hover {
    transform: scale(1.1);
}

.swatch-btn.active {
    border-color: var(--primary) !important;
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Hero image transition animation */
#main-case-img {
    transition: opacity 0.15s ease-in-out;
}

/* Brand Logo Image in Header/Footer */
.logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    max-height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-logo-img {
        max-height: 30px;
    }
}

/* Scrollable UGC Review Grid */
.ugc-grid-scrollable {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 5px 30px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.ugc-grid-scrollable::-webkit-scrollbar {
    height: 6px;
}

.ugc-grid-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.ugc-grid-scrollable::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 10px;
}

.ugc-grid-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.ugc-grid-scrollable .review-card {
    min-width: 340px;
    max-width: 340px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .ugc-grid-scrollable .review-card {
        min-width: 290px;
        max-width: 290px;
        padding: 24px 20px !important;
    }
}

/* Review Images Styling */
.review-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.review-img-thumb-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.review-img-thumb-wrapper:hover {
    transform: scale(1.08);
    border-color: var(--primary);
}

.review-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.8rem;
}

.review-date {
    color: rgba(255, 255, 255, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: zoom 0.2s;
}

@keyframes zoom {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Premium Select Dropdown for iPhone Models */
.premium-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.premium-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.premium-select option {
    background-color: #121214;
    color: var(--text-light);
    padding: 10px;
}

/* Disabled Pulsating Button */
.pulsating-btn.disabled {
    background: #27272a !important;
    color: #71717a !important;
    border-color: #3f3f46 !important;
    box-shadow: none !important;
    animation: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
