@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Playfair+Display:wght@700;900&display=swap');

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

:root {
    --red: #dc2626;
    --dark-red: #991b1b;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray: #2a2a2a;
    --light-gray: #e5e5e5;
    --white: #fafafa;
    --yellow: #facc15;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, #1a0000 50%, var(--black) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(220, 38, 38, 0.03) 2px,
        rgba(220, 38, 38, 0.03) 4px
    );
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(-2deg) scale(1.05); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero h1 .highlight {
    color: var(--red);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #999;
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    display: inline-block;
    border: 2px solid var(--red);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--red);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 5rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .overline {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== STORY SECTION ===== */
.story {
    background: var(--dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.story-text p {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.story-text .emphasis {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    border-left: 3px solid var(--red);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.story-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

/* ===== DAMAGE GALLERY ===== */
.gallery {
    background: var(--black);
}

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

.damage-card {
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.damage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.damage-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.damage-card:hover .card-image img {
    transform: scale(1.05);
}

.damage-card .severity {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.damage-card .card-body {
    padding: 1.5rem;
}

.damage-card .card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.damage-card .card-body p {
    color: #888;
    font-size: 0.95rem;
}

/* ===== PACKAGING SECTION ===== */
.packaging {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0505 100%);
}

.packaging-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.packaging-showcase .pack-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.packaging-showcase .pack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packaging-showcase .pack-img .pack-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2rem 1rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.packaging-verdict {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.packaging-verdict h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.packaging-verdict p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== PHOTO COMPARISON ===== */
.photo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-side {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
}

.comparison-side:hover {
    border-color: rgba(255,255,255,0.15);
}

.comparison-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/10;
}

.comparison-side .comp-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
}

.comparison-side .comp-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.comparison-side.auction .comp-tag {
    background: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.comparison-side.auction {
    border-color: rgba(34, 197, 94, 0.2);
}

.comparison-side.real .comp-tag {
    background: rgba(220, 38, 38, 0.3);
    color: var(--red);
}

.comparison-side.real {
    border-color: rgba(220, 38, 38, 0.2);
}

.comparison-side .comp-label h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.comparison-side .comp-label p {
    font-size: 0.9rem;
    color: #ccc;
}

.comparison-arrow {
    display: none;
}

@media (min-width: 769px) {
    .comparison-arrow {
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 60px;
        height: 60px;
        background: var(--red);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 900;
        color: white;
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    }
}

.photo-comparison-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .photo-comparison {
        grid-template-columns: 1fr;
    }
}

/* ===== MISLEADING SECTION ===== */
.misleading {
    background: var(--black);
}

.misleading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.misleading-box {
    background: var(--dark);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.misleading-box.expectation {
    border-color: rgba(34, 197, 94, 0.3);
}

.misleading-box.reality {
    border-color: rgba(220, 38, 38, 0.3);
}

.misleading-box .box-label {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.misleading-box.expectation .box-label {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.misleading-box.reality .box-label {
    background: rgba(220, 38, 38, 0.2);
    color: var(--red);
}

.misleading-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.misleading-box p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.misleading-box ul {
    list-style: none;
    padding: 0;
}

.misleading-box ul li {
    padding: 0.5rem 0;
    color: #bbb;
    position: relative;
    padding-left: 1.5rem;
}

.misleading-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.misleading-box.expectation ul li::before {
    background: #22c55e;
}

.misleading-box.reality ul li::before {
    background: var(--red);
}

.depth-comparison {
    margin-top: 2rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.depth-comparison h4 {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.depth-bar {
    margin-bottom: 1rem;
}

.depth-bar .bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.depth-bar .bar-label span:last-child {
    font-weight: 700;
    color: var(--yellow);
}

.depth-bar .bar-track {
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.depth-bar .bar-fill {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.depth-bar.szafa .bar-fill {
    width: 68%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.depth-bar.slupek .bar-fill {
    width: 100%;
    background: linear-gradient(90deg, var(--red), var(--dark-red));
}

/* ===== PRODUCER ID SECTION ===== */
.producer-id {
    background: var(--dark);
}

.producer-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
}

.producer-card .producer-photo {
    height: 100%;
}

.producer-card .producer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-card .producer-info {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.producer-card .producer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.producer-card .producer-info .detail {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.producer-card .producer-info .detail strong {
    color: var(--white);
    min-width: 100px;
}

.producer-card .producer-info .irony {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--red);
    border-radius: 0 8px 8px 0;
    color: #ccc;
    font-style: italic;
}

/* ===== TIMELINE ===== */
.timeline-section {
    background: var(--black);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--black);
}

.timeline-item .time-label {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #888;
}

/* ===== COMPLAINT SECTION ===== */
.complaint {
    background: var(--black);
}

.complaint-exchange {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.complaint-block {
    background: var(--dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.complaint-block.sent {
    border-color: rgba(34, 197, 94, 0.2);
}

.complaint-block.received {
    border-color: rgba(220, 38, 38, 0.2);
}

.complaint-block .block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.complaint-block .block-header .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.complaint-block.sent .block-header .tag {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.complaint-block.received .block-header .tag {
    background: rgba(220, 38, 38, 0.15);
    color: var(--red);
}

.complaint-block .block-header .meta {
    font-size: 0.85rem;
    color: #666;
}

.complaint-block .full-text {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.8;
}

.complaint-block .full-text p {
    margin-bottom: 0.9rem;
}

.complaint-block .full-text p:last-child {
    margin-bottom: 0;
}

.complaint-block .full-text ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.9rem 0;
}

.complaint-block .full-text ul li {
    padding: 0.2rem 0 0.2rem 1.2rem;
    position: relative;
    color: #bbb;
}

.complaint-block.sent .full-text ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #22c55e;
}

.complaint-block.received .full-text ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--red);
}

.complaint-block .full-text .field-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 0.4rem;
}

.complaint-block.sent .full-text .highlight-line {
    color: var(--white);
    font-weight: 600;
    border-left: 2px solid #22c55e;
    padding-left: 0.8rem;
    margin: 1rem 0;
}

.complaint-block.received .full-text .highlight-line {
    color: var(--white);
    font-weight: 600;
    border-left: 2px solid var(--red);
    padding-left: 0.8rem;
    margin: 1rem 0;
}

.complaint-block .full-text .drive-link {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    color: #aaa;
    word-break: break-all;
    margin: 0.5rem 0;
    font-family: monospace;
}

.complaint-block .full-text .resolution-box {
    margin-top: 1rem;
    background: rgba(34, 197, 94, 0.07);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.complaint-block.sent .full-text .resolution-box {
    color: #22c55e;
}

.complaint-block .full-text .sign {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
}

.shop-response-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.deflection-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.deflection-item .shop-said {
    background: var(--dark);
    padding: 1.5rem;
    border-right: 1px solid rgba(220, 38, 38, 0.15);
}

.deflection-item .our-take {
    background: rgba(220, 38, 38, 0.06);
    padding: 1.5rem;
}

.deflection-item .col-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.deflection-item .shop-said .col-label {
    color: #555;
}

.deflection-item .our-take .col-label {
    color: var(--red);
}

.deflection-item .shop-said p {
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

.deflection-item .our-take p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.deflection-item .our-take p strong {
    color: var(--white);
}

.complaint-verdict {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
}

.complaint-verdict h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.complaint-verdict p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.complaint-verdict p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .complaint-exchange {
        grid-template-columns: 1fr;
    }

    .deflection-item {
        grid-template-columns: 1fr;
    }

    .deflection-item .shop-said {
        border-right: none;
        border-bottom: 1px solid rgba(220, 38, 38, 0.15);
    }
}

/* ===== SHIPPING SPEED CALLOUT ===== */
.timeline-item.positive::before {
    background: #22c55e;
}

.shipping-callout {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px;
    overflow: hidden;
}

.shipping-callout .callout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.shipping-callout .callout-header .green-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
}

.shipping-callout .callout-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.shipping-callout .callout-header p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

.shipping-steps {
    display: flex;
    align-items: stretch;
    padding: 1.5rem 1.8rem;
    gap: 0;
    overflow-x: auto;
}

.shipping-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 110px;
}

.shipping-step .step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.shipping-step .step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ccc;
    text-align: center;
    margin-bottom: 0.3rem;
}

.shipping-step .step-time {
    font-size: 0.7rem;
    color: #555;
    text-align: center;
}

.shipping-step-connector {
    height: 2px;
    background: rgba(34, 197, 94, 0.3);
    flex: 1;
    margin-top: 5px;
    align-self: flex-start;
    min-width: 20px;
}

.shipping-callout .callout-image {
    padding: 0 1.8rem 1.5rem;
}

.shipping-callout .callout-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}

.shipping-callout .callout-verdict {
    padding: 1rem 1.8rem 1.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.shipping-callout .callout-verdict p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.shipping-callout .callout-verdict strong {
    color: #22c55e;
}

.shipping-callout .callout-verdict .bitter {
    color: #555;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

@media (max-width: 600px) {
    .shipping-steps {
        gap: 0;
        padding: 1rem;
    }
    .shipping-step {
        min-width: 80px;
    }
}

/* ===== WARNING BANNER ===== */
.warning-alert {
    background: linear-gradient(135deg, #451a03 0%, #78350f 50%, #451a03 100%);
    border-top: 4px solid #f59e0b;
    border-bottom: 4px solid #f59e0b;
    padding: 2.5rem 2rem;
}

.warning-alert .alert-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.warning-alert .alert-icon {
    font-size: 4rem;
    flex-shrink: 0;
    line-height: 1;
}

.warning-alert .alert-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #fbbf24;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.warning-alert .alert-text p {
    color: #fde68a;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
}

.warning-alert .alert-text strong {
    color: #ffffff;
}

.warning-alert .alert-text .fb-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid rgba(251,191,36,0.4);
    transition: border-color 0.2s;
}

.warning-alert .alert-text .fb-link:hover {
    border-color: #fbbf24;
}

@media (max-width: 600px) {
    .warning-alert .alert-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FB REVIEWS SECTION ===== */
.fb-reviews {
    background: var(--dark);
}

.fb-reviews .fb-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f94ef;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(79,148,239,0.3);
    transition: border-color 0.2s;
    margin-top: 0.5rem;
}

.fb-reviews .fb-profile-link:hover {
    border-color: #4f94ef;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.15);
    display: flex;
    flex-direction: column;
}

.review-card .review-header {
    padding: 1.2rem 1.4rem 0.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.review-card .reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.review-card .review-meta {
    font-size: 0.78rem;
    color: #555;
}

.review-card .not-recommend {
    display: inline-block;
    background: rgba(220, 38, 38, 0.15);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-card .review-body {
    padding: 1rem 1.4rem;
    flex: 1;
}

.review-card .review-body p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.65;
}

.review-card .review-body .review-quote {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.review-card .review-comments {
    margin-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.8rem;
}

.review-card .review-comments .comment {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.review-card .review-comments .comment-author {
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-card .review-comments .comment-text {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

.review-card .review-comments .comment-text.alert-comment {
    color: #ef4444;
}

.review-card .review-screenshot {
    border-top: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}

.review-card .review-screenshot img {
    width: 100%;
    display: block;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.review-card .review-screenshot img:hover {
    opacity: 1;
}

.review-card .review-screenshot .screenshot-label {
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    color: #444;
    text-align: center;
}

.fb-wide-card {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fb-wide-card .wide-text {
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.fb-wide-card .wide-screenshot {
    overflow: hidden;
}

.fb-wide-card .wide-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    display: block;
}

.fb-wide-card .wide-screenshot img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .fb-wide-card {
        grid-template-columns: 1fr;
    }
    .fb-wide-card .wide-text {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.deleted-note {
    background: rgba(251,191,36,0.05);
    border: 1px solid rgba(251,191,36,0.2);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.deleted-note .dn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.deleted-note p {
    color: #b59a4a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.deleted-note p strong {
    color: #fbbf24;
}

.deleted-note em {
    font-style: italic;
    color: #997e38;
}

/* ===== CONSUMER RIGHTS ===== */
.rights {
    background: var(--dark);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.right-card {
    background: var(--gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s ease;
}

.right-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.right-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.right-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.right-card p {
    color: #888;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer .disclaimer {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    background: none;
    transition: border-color 0.3s;
}

.lightbox-close:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

nav .logo {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--red);
}

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

nav .nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .story-grid,
    .misleading-content,
    .producer-card {
        grid-template-columns: 1fr;
    }

    .packaging-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        display: none;
    }

    .producer-card .producer-info {
        padding: 2rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}
