/* =========================================================
   recycle.reviews — Styles
   Mid-century consumer magazine aesthetic
   Colors: #f5f0eb, #c0392b, #4a7c59, #e8e4de, #e8a838, #2c5f7c, #6b6b6b, #1a1a1a
   Fonts: DM Sans (display), Inter (body), Sora (data)
   ========================================================= */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fafafa;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === TYPOGRAPHY === */
.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* === CATEGORY COLORS === */
.cat-kitchen    { background: #c0392b; }
.cat-outdoor    { background: #4a7c59; }
.cat-home       { background: #e8a838; }
.cat-tech       { background: #2c5f7c; }
.cat-fashion    { background: #6b6b6b; }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #f5f0eb;
    border-bottom: 2px solid #1a1a1a;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.logo-leaf {
    font-size: 1.4rem;
    color: #4a7c59;
}

.logo-dot {
    color: #c0392b;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #1a1a1a;
}

/* === HERO === */
.hero {
    background: #f5f0eb;
    border-bottom: 2px solid #1a1a1a;
    padding: 4rem 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: #e8e4de;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-inner {
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding-left: calc(50vw - 640px + 2rem);
}

@media (max-width: 1280px) {
    .hero-inner {
        padding-left: 0;
    }
}

.hero-badge {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b6b6b;
    border: 1.5px solid #6b6b6b;
    display: inline-block;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

/* Search bar */
.search-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: #fff;
    max-width: 480px;
    transition: box-shadow 0.2s;
}

.search-bar:focus-within {
    box-shadow: 4px 4px 0 #1a1a1a;
}

.search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.search-bar input {
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: transparent;
    width: 100%;
}

.search-bar input::placeholder {
    color: #6b6b6b;
}

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

.filter-btn {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.filter-btn:hover {
    background: #e8e4de;
}

.filter-btn.active {
    background: #1a1a1a;
    color: #f5f0eb;
}

/* Hero illustration */
.hero-illustration {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-right: calc(50vw - 640px + 2rem);
}

@media (max-width: 1280px) {
    .hero-illustration {
        padding-right: 2rem;
    }
}

.hero-product-cluster {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

/* === PRODUCT SILHOUETTES === */
.product-silhouette {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bottle (hero) */
.product-silhouette.bottle {
    gap: 0;
}

.bottle .bottle-cap {
    width: 18px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 3px 3px 0 0;
}

.bottle .bottle-neck {
    width: 24px;
    height: 30px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-bottom: none;
}

.bottle .bottle-body {
    width: 70px;
    height: 110px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 8px 8px 12px 12px;
}

.bottle .bottle-label {
    position: absolute;
    bottom: 30px;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #e8a838;
    padding: 2px 6px;
    border: 1px solid #1a1a1a;
}

/* Box (hero) */
.product-silhouette.box {
    gap: 0;
}

.box .box-lid {
    width: 80px;
    height: 14px;
    background: #e8e4de;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.box .box-body {
    width: 80px;
    height: 80px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 0 4px 4px;
}

.box .box-label {
    position: absolute;
    bottom: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #4a7c59;
    color: #fff;
    padding: 2px 6px;
    border: 1px solid #1a1a1a;
}

/* Bag (hero) */
.product-silhouette.bag {
    gap: 0;
    align-items: center;
}

.bag .bag-handle {
    width: 40px;
    height: 20px;
    border: 2.5px solid #1a1a1a;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    background: transparent;
}

.bag .bag-body {
    width: 90px;
    height: 100px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 4px 4px 10px 10px;
    position: relative;
}

.bag .bag-body::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1.5px;
    background: #1a1a1a;
}

.bag .bag-label {
    position: absolute;
    bottom: 18px;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    background: #c0392b;
    color: #fff;
    padding: 2px 6px;
    border: 1px solid #1a1a1a;
}

/* === CATEGORY STRIPS === */
.category-strips {
    display: flex;
    border-bottom: 2px solid #1a1a1a;
}

.cat-strip {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: opacity 0.2s, filter 0.2s;
    border-right: 1.5px solid rgba(26,26,26,0.2);
}

.cat-strip:last-child {
    border-right: none;
}

.cat-strip:hover {
    filter: brightness(1.1);
}

.cat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.cat-count {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === SECTION HEADER === */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* === FEATURED CAROUSEL === */
.featured-section {
    background: #fafafa;
    border-bottom: 2px solid #e8e4de;
    padding-bottom: 3rem;
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #1a1a1a;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    font-family: 'Sora', sans-serif;
}

.carousel-btn:hover {
    background: #1a1a1a;
    color: #f5f0eb;
}

.carousel-track-wrap {
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

/* Featured card */
.featured-card {
    scroll-snap-align: start;
    min-width: 300px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

.card-category-bar {
    height: 5px;
    width: 100%;
}

.card-product-art {
    background: #f5f0eb;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border-bottom: 1.5px solid #e8e4de;
}

.card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-category-tag {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6b6b;
}

.card-issue {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    color: #6b6b6b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.card-verdict {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6b6b6b;
    line-height: 1.6;
    flex: 1;
}

.card-score {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e8e4de;
}

.score-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.score-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b6b6b;
}

/* === STAR RATINGS === */
.card-stars,
.review-stars {
    display: flex;
    gap: 3px;
}

.star {
    width: 14px;
    height: 14px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: #e8e4de;
    display: inline-block;
}

.star.filled {
    background: #e8a838;
}

.star.half {
    background: linear-gradient(90deg, #e8a838 50%, #e8e4de 50%);
}

/* === SMALL PRODUCT SILHOUETTES (cards) === */
/* Bottle small */
.product-silhouette.bottle-sm {
    gap: 0;
    align-items: center;
}

.bottle-sm .bottle-cap {
    width: 12px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 2px 2px 0 0;
}

.bottle-sm .bottle-neck {
    width: 16px;
    height: 20px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-bottom: none;
}

.bottle-sm .bottle-body {
    width: 48px;
    height: 75px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 6px 6px 10px 10px;
}

/* Bag small */
.product-silhouette.bag-sm {
    gap: 0;
    align-items: center;
}

.bag-sm .bag-handle {
    width: 28px;
    height: 14px;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    background: transparent;
}

.bag-sm .bag-body {
    width: 64px;
    height: 72px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 4px 4px 8px 8px;
    position: relative;
}

.bag-sm .bag-body::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1.5px;
    background: #1a1a1a;
}

/* Box small */
.product-silhouette.box-sm {
    gap: 0;
    align-items: center;
}

.box-sm .box-lid {
    width: 60px;
    height: 10px;
    background: #e8e4de;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.box-sm .box-body {
    width: 60px;
    height: 60px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 0 4px 4px;
}

/* Device small */
.product-silhouette.device-sm {
    gap: 0;
    align-items: center;
}

.device-sm .device-screen {
    width: 60px;
    height: 42px;
    background: #2c5f7c;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.device-sm .device-body {
    width: 70px;
    height: 10px;
    background: #e8e4de;
    border: 2px solid #1a1a1a;
    border-top: none;
    border-bottom: none;
}

.device-sm .device-base {
    width: 40px;
    height: 8px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 0 4px 4px;
}

/* Shirt small */
.product-silhouette.shirt-sm {
    position: relative;
    width: 72px;
    height: 90px;
}

.shirt-sm .shirt-body {
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 48px;
    height: 68px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 2px 2px 6px 6px;
}

.shirt-sm .shirt-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 18px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.shirt-sm .shirt-sleeve-l {
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 34px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 8px 0 0 8px;
    transform: rotate(-8deg);
    transform-origin: top right;
}

.shirt-sm .shirt-sleeve-r {
    position: absolute;
    top: 8px;
    right: 0;
    width: 18px;
    height: 34px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 8px 8px 0;
    transform: rotate(8deg);
    transform-origin: top left;
}

/* Pan small */
.product-silhouette.pan-sm {
    position: relative;
    width: 100px;
    height: 55px;
    display: flex;
    align-items: center;
}

.pan-sm .pan-body {
    width: 70px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 25px;
}

.pan-sm .pan-handle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 10px;
    background: #6b6b6b;
    border: 2px solid #1a1a1a;
    border-radius: 3px;
}

/* === REVIEWS SECTION === */
.reviews-section {
    padding-bottom: 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-section .section-header {
    padding-left: 0;
    padding-right: 0;
}

/* Sort controls */
.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6b6b;
}

.sort-btn {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1.5px solid #e8e4de;
    background: transparent;
    color: #6b6b6b;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sort-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.sort-btn.active {
    background: #1a1a1a;
    color: #f5f0eb;
    border-color: #1a1a1a;
}

/* Reviews list */
.reviews-list {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Review entry */
.review-entry {
    display: flex;
    border: 2px solid #1a1a1a;
    border-top: none;
    background: #fff;
    position: relative;
    transition: background 0.2s;
    overflow: hidden;
}

.review-entry:first-child {
    border-top: 2px solid #1a1a1a;
}

.review-entry:hover {
    background: #fdfcfa;
}

.review-entry.hidden {
    display: none;
}

/* Category bar left */
.review-category-bar {
    width: 5px;
    flex-shrink: 0;
}

/* Sidebar */
.review-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding: 1.75rem 1.5rem;
    border-right: 1.5px solid #e8e4de;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.review-product-art {
    background: #f5f0eb;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1.5px solid #e8e4de;
    min-height: 120px;
}

.review-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-score-badge {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.review-score-badge.perfect {
    color: #c0392b;
}

.review-category-tag {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.cat-kitchen-tag { background: #c0392b; color: #fff; }
.cat-outdoor-tag { background: #4a7c59; color: #fff; }
.cat-home-tag    { background: #e8a838; color: #1a1a1a; }
.cat-tech-tag    { background: #2c5f7c; color: #fff; }
.cat-fashion-tag { background: #6b6b6b; color: #fff; }

.review-meta-line {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Review body (60%) */
.review-body {
    flex: 1;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-headline {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-product-name {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.review-verdict-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b6b6b;
    border: 1.5px solid #e8e4de;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    white-space: nowrap;
}

.perfect-label {
    border-color: #c0392b;
    color: #c0392b;
}

/* Spec grid */
.review-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 1rem;
    padding: 0.75rem;
    background: #f5f0eb;
    border: 1.5px solid #e8e4de;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.spec-key {
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6b6b;
}

.spec-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.75;
}

.review-verdict-bar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #e8e4de;
    border-left: 4px solid #4a7c59;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.6;
}

.review-verdict-bar.perfect-verdict {
    background: #fff5f5;
    border-left-color: #c0392b;
}

.verdict-icon {
    font-size: 1rem;
    color: #4a7c59;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.perfect-verdict .verdict-icon {
    color: #c0392b;
}

/* === REVIEW SILHOUETTES (review sidebar) === */
.product-silhouette.bottle-review {
    gap: 0;
    align-items: center;
}

.bottle-review .bottle-cap {
    width: 10px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 2px 2px 0 0;
}

.bottle-review .bottle-neck {
    width: 14px;
    height: 16px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-bottom: none;
}

.bottle-review .bottle-body {
    width: 42px;
    height: 64px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 5px 5px 9px 9px;
}

/* Bag review */
.product-silhouette.bag-review {
    gap: 0;
    align-items: center;
}

.bag-review .bag-handle {
    width: 24px;
    height: 12px;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    background: transparent;
}

.bag-review .bag-body {
    width: 56px;
    height: 64px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 4px 4px 8px 8px;
    position: relative;
}

.bag-review .bag-body::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1.5px;
    background: #1a1a1a;
}

/* Box review */
.product-silhouette.box-review {
    gap: 0;
    align-items: center;
}

.box-review .box-lid {
    width: 56px;
    height: 9px;
    background: #e8e4de;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.box-review .box-body {
    width: 56px;
    height: 56px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 0 4px 4px;
}

/* Device review */
.product-silhouette.device-review {
    gap: 0;
    align-items: center;
}

.device-review .device-screen {
    width: 56px;
    height: 38px;
    background: #2c5f7c;
    border: 2px solid #1a1a1a;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.device-review .device-body {
    width: 64px;
    height: 9px;
    background: #e8e4de;
    border: 2px solid #1a1a1a;
    border-top: none;
    border-bottom: none;
}

.device-review .device-base {
    width: 36px;
    height: 7px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 0 4px 4px;
}

/* Shirt review */
.product-silhouette.shirt-review {
    position: relative;
    width: 68px;
    height: 80px;
}

.shirt-review .shirt-body {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 48px;
    height: 62px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 2px 2px 6px 6px;
}

.shirt-review .shirt-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 16px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.shirt-review .shirt-sleeve-l {
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    height: 30px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 8px 0 0 8px;
    transform: rotate(-8deg);
    transform-origin: top right;
}

.shirt-review .shirt-sleeve-r {
    position: absolute;
    top: 6px;
    right: 0;
    width: 16px;
    height: 30px;
    background: #f5f0eb;
    border: 2px solid #1a1a1a;
    border-radius: 0 8px 8px 0;
    transform: rotate(8deg);
    transform-origin: top left;
}

/* Pan review */
.product-silhouette.pan-review {
    position: relative;
    width: 88px;
    height: 50px;
    display: flex;
    align-items: center;
}

.pan-review .pan-body {
    width: 62px;
    height: 46px;
    background: #1a1a1a;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 22px;
}

.pan-review .pan-handle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 9px;
    background: #6b6b6b;
    border: 2px solid #1a1a1a;
    border-radius: 3px;
}

/* === ABOUT STRIP === */
.about-strip {
    background: #1a1a1a;
    border-top: 2px solid #1a1a1a;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
}

.about-icon {
    font-size: 3rem;
    color: #4a7c59;
    line-height: 1;
}

.about-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #f5f0eb;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.75;
    max-width: 580px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #e8a838;
    line-height: 1;
}

.stat-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6b6b;
}

/* === FOOTER === */
.site-footer {
    background: #0f0f0f;
    border-top: 2px solid #1a1a1a;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #f5f0eb;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f5f0eb;
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    color: #6b6b6b;
    letter-spacing: 0.04em;
}

.footer-tagline {
    color: #4a7c59 !important;
    font-style: italic;
    margin-top: 0.2rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-entry {
    animation: fadeInUp 0.4s ease both;
}

.featured-card {
    animation: fadeInUp 0.35s ease both;
}

/* Stagger delays for review entries */
.review-entry:nth-child(1) { animation-delay: 0.05s; }
.review-entry:nth-child(2) { animation-delay: 0.1s; }
.review-entry:nth-child(3) { animation-delay: 0.15s; }
.review-entry:nth-child(4) { animation-delay: 0.2s; }
.review-entry:nth-child(5) { animation-delay: 0.25s; }
.review-entry:nth-child(6) { animation-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 3rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero::before {
        display: none;
    }

    .hero-illustration {
        padding-right: 0;
        width: 100%;
        justify-content: center;
    }

    .category-strips {
        flex-wrap: wrap;
    }

    .cat-strip {
        min-width: 50%;
        border-right: none;
        border-bottom: 1.5px solid rgba(26,26,26,0.2);
    }

    .review-entry {
        flex-direction: column;
    }

    .review-sidebar {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1.5px solid #e8e4de;
    }

    .review-product-art {
        width: 120px;
        flex-shrink: 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-item {
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sort-controls {
        flex-wrap: wrap;
    }

    .reviews-list {
        padding: 0 1rem;
    }

    .featured-card {
        min-width: 260px;
    }

    .carousel-track-wrap {
        padding: 0 1rem;
    }

    .filter-toggles {
        gap: 0.4rem;
    }
}
