/* === Base Styles === */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --dark: #1e1b4b;
    --darker: #0f0d2e;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-height: 100vh;
}

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

/* === Header === */
header {
    background: white;
    color: var(--dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--gray-light);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* === Dropdown Menu === */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    border-bottom: none;
    color: var(--gray);
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* === Buttons === */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-light);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--gray);
    color: white;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

/* === Filters === */
.filters {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.filter-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    background: white;
    flex: 1;
    min-width: 200px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    outline: none;
    border-color: var(--primary);
}

/* === Reviews Grid === */
.reviews-grid {
    padding: 2rem 0;
}

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

/* === Review Card === */
.review-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-card .image-container {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-light), #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .placeholder-image {
    font-size: 4rem;
    opacity: 0.3;
}

.review-card .content {
    padding: 1.5rem;
}

.review-card .brand {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-card h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--dark);
}

.review-card .summary {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-card .price {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.review-card .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.review-card .rating .score {
    font-weight: 700;
    color: var(--primary);
}

.review-card .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-card .tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-card .review-date {
    font-size: 0.8rem;
    color: var(--gray);
    white-space: nowrap;
}

.review-card .tag {
    background: var(--gray-light);
    color: var(--gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* === Single Review Page === */
.review-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: white;
    padding: 3rem 0;
}

.review-hero .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.review-image {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.review-image .placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: var(--gray-light);
    color: var(--gray);
}

.review-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.review-header-content .brand {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-header-content .summary {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.review-header-content .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.review-details {
    padding: 2rem 0;
}

.review-details .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.review-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.review-content h2:first-child {
    margin-top: 0;
}

.review-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.cons {
    background: #fef2f2;
}

.pros h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.cons h3 {
    color: var(--danger);
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

/* === Ratings Sidebar === */
.ratings-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.ratings-sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.overall-rating {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 1.5rem;
}

.overall-rating .big-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.overall-rating .out-of {
    color: var(--gray);
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-item .label {
    color: var(--gray);
}

.rating-item .score {
    font-weight: 700;
    color: var(--dark);
}

.rating-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-light);
    border-radius: 3px;
    margin-top: 0.25rem;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.specs {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.specs h4 {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.spec-item .value {
    color: var(--gray);
}

/* === Comments Section === */
.comments-section {
    background: #f8fafc;
    padding: 3rem 0;
    border-top: 1px solid var(--gray-light);
}

.comments-section h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comment-form {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.comment-form h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group small {
    color: var(--gray);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

.star-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.star-input span {
    cursor: pointer;
    color: var(--gray-light);
    transition: color 0.2s;
}

.star-input span:hover,
.star-input span.active {
    color: var(--warning);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.comment-author {
    font-weight: 700;
    color: var(--dark);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--gray);
}

.comment-rating {
    color: var(--warning);
    margin-bottom: 0.5rem;
}

.comment-text {
    color: var(--dark);
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

/* === Add Review Page === */
.add-review-section {
    padding: 2rem 0;
}

.add-review-section h1 {
    margin-bottom: 0.5rem;
}

.help-text {
    color: var(--gray);
    margin-bottom: 2rem;
}

.review-form {
    max-width: 800px;
}

.form-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.output-section {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.output-section h3 {
    margin-bottom: 1rem;
}

.output-section pre {
    background: var(--dark);
    color: #a5b4fc;
    padding: 1.5rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.output-section code {
    background: var(--gray-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

/* === Guides Page === */
.guides-list {
    padding: 2rem 0;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.guide-card h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.guide-card .meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.guide-content {
    margin-top: 1.5rem;
}

.guide-content h3 {
    color: var(--dark);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.guide-content ul,
.guide-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
}

/* === Guides List Page === */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.guide-card-link {
    text-decoration: none;
    color: inherit;
}

.guide-card-link:hover .guide-card {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guide-card-link:hover .read-more {
    color: var(--primary);
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-card h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.guide-card .meta {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--gray);
    line-height: 1.7;
    flex: 1;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--gray);
    transition: color 0.2s;
}

.guide-card-link.featured-guide .guide-card {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #eef2ff 0%, #fff 100%);
}

.guide-card-link.featured-guide .guide-icon {
    font-size: 3.5rem;
}

/* === Individual Guide Pages === */
.guide-article {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.guide-article h2 {
    color: var(--dark);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.guide-article h2:first-child {
    margin-top: 0;
}

.guide-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

/* === GOAT Manufacturers Page === */
.guide-article .lead {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.manufacturer-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: var(--radius);
}

.manufacturer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.manufacturer-header h2 {
    margin: 0;
    color: var(--dark);
}

.manufacturer-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.guide-article blockquote {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #92400e;
}

.guide-article blockquote p {
    margin: 0;
}

.goat-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.product-highlight.triple-layer {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #eef2ff 0%, #fff 100%);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-highlight h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-highlight p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.fleshlight-ranking {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleshlight-ranking .product-highlight {
    display: grid;
    grid-template-columns: 60px 120px 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
}

.fleshlight-ranking .rank {
    font-size: 2rem;
    text-align: center;
}

.fleshlight-ranking .product-image-placeholder {
    aspect-ratio: 1;
    margin: 0;
}

.manufacturer-notes {
    background: #fef2f2;
    border-left: 4px solid var(--danger);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.manufacturer-notes h4 {
    color: var(--danger);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.manufacturer-verdict {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.manufacturer-verdict p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.final-thoughts {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 3rem;
}

.final-thoughts h3 {
    color: white;
    margin-bottom: 1rem;
}

.final-thoughts ul {
    margin: 1rem 0;
}

.final-thoughts li {
    margin-bottom: 0.5rem;
}

.final-thoughts strong {
    color: #a5b4fc;
}

/* === About Page === */
.about-content {
    padding: 3rem 0;
}

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

.about-text h2 {
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.contact-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.contact-box p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #eef2ff;
    border-radius: 6px;
    transition: all 0.2s;
}

.email-link:hover {
    background: var(--primary);
    color: white;
}

/* === Footer === */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* === Responsive === */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0.5rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        box-shadow: var(--shadow-lg);
    }

    nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
        background: #f8fafc;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .review-hero .container {
        grid-template-columns: 1fr;
    }

    .review-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .review-details .container {
        grid-template-columns: 1fr;
    }

    .ratings-sidebar {
        position: static;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
    }
}
