:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #0ea5e9;
    --accent-glow: rgba(14, 165, 233, 0.3);
    --background: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--card-bg);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.highlight {
    color: var(--accent);
}

/* Hero Section (Featured Tent) */
.hero-section {
    margin-bottom: 4rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    align-items: center;
    border: 1px solid #e2e8f0;
}

.featured-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.featured-info .brand {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: block;
}

.score-badge-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-glow);
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.spec-value {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.125rem;
}

/* Competitors Grid */
.competitors-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.tent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tent-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.tent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-brand {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.score-badge-small {
    background: var(--secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.price-tag .currency {
    font-size: 1rem;
    vertical-align: top;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery (Removed) */
/* Competitor Card Gallery override (Removed) */

.feature-list li::before {
    content: "✓";
    color: var(--success);
    margin-right: 0.5rem;
    font-weight: bold;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: var(--secondary);
}

/* Footer */
footer {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    border-left: 3px solid var(--accent);
}

.badge-cheapest {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.5rem;
    letter-spacing: 0.05em;
}