/* Amazon Affiliate Authority Design System */

:root {
    --amazon-orange: #fa8900;
    --amazon-orange-hover: #e37b00;
    --amazon-blue: #007185;
    --amazon-dark: #232f3e;
    --price-red: #B12704;
    --star-gold: #F4A41C;
    --bg-slate: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-slate);
    color: var(--text-main);
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

/* Typography for Reviews */
.prose p {
    font-family: 'Merriweather', serif;
    margin-bottom: 1.5em;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #334155;
}

/* Amazon Buy Box */
.buy-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s;
}

.buy-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.buy-btn {
    background-color: var(--amazon-orange);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-align: center;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.buy-btn:hover {
    background-color: var(--amazon-orange-hover);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.comparison-table th {
    background-color: var(--amazon-dark);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

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

.comparison-table tr:hover {
    background-color: #f8fafc;
}

/* Star Rating */
.stars {
    color: var(--star-gold);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

/* Product Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-top-pick {
    background-color: #dcfce7;
    color: #166534;
}

.badge-value {
    background-color: #dbeafe;
    color: #1e40af;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
