/* GarageLink Custom Homepage Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.garagelink-home {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
    overflow-x: hidden;
}

/* ── NAV ── */
.gl-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.95);
    border-bottom: 2px solid #e8501a;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.gl-logo { font-size: 1.6rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: 1px; }
.gl-logo span { color: #e8501a; }
.gl-nav-links { display: flex; gap: 30px; list-style: none; }
.gl-nav-links a { color: #ccc; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.gl-nav-links a:hover { color: #e8501a; }
.gl-nav-cta {
    background: #e8501a; color: #fff; padding: 10px 22px;
    border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    transition: background 0.2s;
}
.gl-nav-cta:hover { background: #c43d10; }

/* ── HERO ── */
.gl-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 70px;
}
.gl-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,80,26,0.12) 0%, transparent 60%);
}
.gl-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232,80,26,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(232,80,26,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}
.gl-hero-content {
    position: relative; z-index: 2;
    max-width: 700px; text-align: center; padding: 40px 20px;
}
.gl-hero-badge {
    display: inline-block; background: rgba(232,80,26,0.15); border: 1px solid #e8501a;
    color: #e8501a; padding: 6px 18px; border-radius: 20px; font-size: 0.8rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.gl-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 20px;
}
.gl-hero h1 span { color: #e8501a; }
.gl-hero p {
    font-size: 1.15rem; color: #aaa; line-height: 1.7; margin-bottom: 36px;
}
.gl-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.gl-btn-primary {
    background: #e8501a; color: #fff; padding: 16px 36px;
    border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 1rem;
    transition: all 0.2s; letter-spacing: 0.5px;
}
.gl-btn-primary:hover { background: #c43d10; transform: translateY(-2px); }
.gl-btn-secondary {
    background: transparent; color: #fff; padding: 16px 36px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 4px;
    text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.2s;
}
.gl-btn-secondary:hover { border-color: #e8501a; color: #e8501a; }

/* ── STATS ── */
.gl-stats {
    background: #111; border-top: 1px solid #222; border-bottom: 1px solid #222;
    padding: 50px 40px;
}
.gl-stats-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px;
    text-align: center;
}
.gl-stat-num { font-size: 2.8rem; font-weight: 900; color: #e8501a; }
.gl-stat-label { font-size: 0.9rem; color: #888; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── CATEGORIES ── */
.gl-categories { padding: 90px 40px; background: #0d0d0d; }
.gl-section-header { text-align: center; margin-bottom: 60px; }
.gl-section-tag {
    display: inline-block; color: #e8501a; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.gl-section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; }
.gl-section-header p { color: #888; margin-top: 12px; font-size: 1rem; }
.gl-cat-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.gl-cat-card {
    background: #141414; border: 1px solid #222; border-radius: 8px;
    padding: 36px 24px; text-align: center; text-decoration: none;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.gl-cat-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: #e8501a; transform: scaleX(0); transition: transform 0.3s;
}
.gl-cat-card:hover { border-color: #e8501a; transform: translateY(-4px); }
.gl-cat-card:hover::before { transform: scaleX(1); }
.gl-cat-icon { font-size: 2.8rem; margin-bottom: 16px; }
.gl-cat-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gl-cat-count { font-size: 0.85rem; color: #888; }

/* ── FEATURED PRODUCTS ── */
.gl-products { padding: 90px 40px; background: #111; }
.gl-products-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px;
}
.gl-product-card {
    background: #141414; border: 1px solid #222; border-radius: 8px; overflow: hidden;
    transition: all 0.3s;
}
.gl-product-card:hover { border-color: #e8501a; transform: translateY(-4px); }
.gl-product-img {
    height: 200px; background: linear-gradient(135deg, #1a1a1a, #252525);
    display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.gl-product-body { padding: 20px; }
.gl-product-cat { font-size: 0.75rem; color: #e8501a; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.gl-product-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.gl-product-desc { font-size: 0.88rem; color: #888; line-height: 1.5; margin-bottom: 16px; }
.gl-product-footer { display: flex; justify-content: space-between; align-items: center; }
.gl-product-price { font-size: 1.3rem; font-weight: 900; color: #e8501a; }
.gl-product-btn {
    background: #e8501a; color: #fff; padding: 8px 18px; border-radius: 4px;
    text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: background 0.2s;
}
.gl-product-btn:hover { background: #c43d10; }

/* ── WHY US ── */
.gl-why { padding: 90px 40px; background: #0d0d0d; }
.gl-why-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px;
}
.gl-why-card {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 8px; padding: 32px 24px;
}
.gl-why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.gl-why-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.gl-why-text { font-size: 0.9rem; color: #888; line-height: 1.6; }

/* ── BANNER ── */
.gl-banner {
    padding: 80px 40px;
    background: linear-gradient(135deg, #e8501a 0%, #c43d10 100%);
    text-align: center;
}
.gl-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.gl-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.gl-banner-btn {
    background: #fff; color: #e8501a; padding: 16px 40px;
    border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 1rem;
    transition: all 0.2s;
}
.gl-banner-btn:hover { background: #0d0d0d; color: #fff; }

/* ── FOOTER ── */
.gl-footer {
    background: #080808; border-top: 1px solid #1e1e1e;
    padding: 60px 40px 30px;
}
.gl-footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.gl-footer-brand .gl-logo { font-size: 1.4rem; display: block; margin-bottom: 14px; }
.gl-footer-brand p { color: #666; font-size: 0.88rem; line-height: 1.6; }
.gl-footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.gl-footer-col ul { list-style: none; }
.gl-footer-col ul li { margin-bottom: 10px; }
.gl-footer-col ul li a { color: #666; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.gl-footer-col ul li a:hover { color: #e8501a; }
.gl-footer-bottom {
    border-top: 1px solid #1e1e1e; padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.gl-footer-bottom p { color: #444; font-size: 0.82rem; }

@media (max-width: 768px) {
    .gl-nav { padding: 0 20px; }
    .gl-nav-links { display: none; }
    .gl-hero h1 { font-size: 2rem; }
    .gl-footer-inner { grid-template-columns: 1fr 1fr; }
    .gl-categories, .gl-products, .gl-why, .gl-banner { padding: 60px 20px; }
    .gl-stats { padding: 40px 20px; }
}
