:root {
    --brand-warning: #ff9900;
    --brand-dark: #131921;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #232f3e;
    background: #f7f8f8;
}

.site-main {
    min-height: 60vh;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #131921 0%, #232f3e 60%, #37475a 100%);
    color: #fff;
    padding: 4rem 0;
}

.hero-section .search-hero {
    max-width: 560px;
}

/* Product cards */
.product-card {
    border: none;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.12) !important;
}

.product-img {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background: #fff;
}

/* Category cards */
.category-card {
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .2s;
}

.category-card:hover {
    transform: scale(1.03);
}

/* Product detail */
.product-gallery img {
    max-height: 420px;
    object-fit: contain;
    background: #fff;
    border-radius: .5rem;
    padding: 1rem;
}

.spec-table th {
    width: 35%;
    background: #f8f9fa;
}

.pros-cons .bi-check-circle-fill { color: #198754; }
.pros-cons .bi-x-circle-fill { color: #dc3545; }

/* Affiliate buttons */
.affiliate-buttons .btn-warning {
    background: var(--brand-warning);
    border-color: #e88b00;
    color: #111;
    font-weight: 600;
}

.affiliate-buttons .btn-warning:hover {
    background: #e88b00;
    color: #111;
}

/* Blog */
.post-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.post-type-badge {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Compare table */
.compare-table th.product-col {
    min-width: 200px;
    vertical-align: top;
}

/* Admin */
.admin-sidebar {
    min-height: 100vh;
    background: #1a1d21;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,.75);
    border-radius: .375rem;
    margin-bottom: .25rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,153,0,.15);
    color: #ff9900;
}

.stat-card {
    border-left: 4px solid var(--brand-warning);
}

/* Pagination */
.pagination .page-item.active .page-link {
    background: var(--brand-warning);
    border-color: var(--brand-warning);
    color: #111;
}

/* Deals banner */
.deals-hero {
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    color: #fff;
}
