/* styles.css - Pro Stock Hockey Gear Global Styles
   Version: LV2.2.13
   Design: Dark, masculine, hockey-inspired with red accents */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #0a0e14;
    color: #c9d1d9;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ff6b6b;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: #f0f6fc;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; margin-bottom: 16px; }
h2 { font-size: 1.6rem; margin: 32px 0 16px; }
h3 { font-size: 1.25rem; margin: 24px 0 12px; }

p { margin-bottom: 16px; color: #8b949e; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #e63946;
    color: #fff;
}

.btn-primary:hover {
    background: #c1121f;
    color: #fff;
}

.btn-secondary {
    background: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
}

.btn-secondary:hover {
    background: #30363d;
    color: #fff;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* --- Cards --- */
.card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: #e63946;
    transform: translateY(-2px);
}

.card-img {
    width: 100%;
    height: 180px;
    background: #21262d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b949e;
    font-size: 0.9rem;
    overflow: hidden;
}

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

.card-body {
    padding: 18px;
}

.card-tag {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.05rem;
    color: #f0f6fc;
    margin-bottom: 6px;
    font-weight: 700;
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: #e63946;
}

.card-meta {
    font-size: 0.8rem;
    color: #8b949e;
}

.card-score {
    display: inline-block;
    background: #f4a261;
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 8px;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #f0f6fc;
    margin-bottom: 6px;
}

.section-header p {
    color: #8b949e;
    font-size: 0.95rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 18px 0;
    font-size: 0.85rem;
    color: #8b949e;
}

.breadcrumb a {
    color: #8b949e;
}

.breadcrumb a:hover {
    color: #e63946;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #484f58;
}

/* --- Trust Bar --- */
.trust-bar {
    background: #161b22;
    border-bottom: 1px solid #21262d;
    padding: 12px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #8b949e;
}

.trust-bar span {
    white-space: nowrap;
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #8b949e;
}

.empty-state .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: #f0f6fc;
    margin-bottom: 8px;
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* --- Accent Bar --- */
.accent-bar {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #e63946;
    margin-bottom: 12px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #e63946, #b71c1c);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin: 30px 0;
    color: #fff;
}

.cta-banner h3 {
    color: #fff;
    margin-bottom: 8px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

/* --- FAQ --- */
.faq-item {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    color: #f0f6fc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 16px;
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Review Card (for user reviews) --- */
.review-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.review-card .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-card .verified-badge {
    background: #f4a261;
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
}

/* --- Under Review Badge --- */
.under-review {
    display: inline-block;
    background: #f4a26120;
    color: #f4a261;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    margin-left: 6px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .trust-bar { gap: 12px; font-size: 0.78rem; }
    .container { padding: 0 16px; }
}