/* ============================================
   OTRSUPPLIER - Global Website Stylesheet
   Single source of truth for all page styling
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --primary: #E85D04;
    --primary-hover: #d14e00;
    --secondary: #0B2B40;
    --secondary-light: #1a4a6b;
    --dark-bg: #081a2e;
    --accent: #FFBA08;
    --bg-light: #f8f9fa;
    --bg-cream: #FDFBF7;
    --white: #FFFFFF;
    --text-dark: #1F2A3E;
    --text-body: #333;
    --text-muted: #666;
    --text-light: #999;
    --border: #e9ecef;
    --border-dark: #D4DCE4;
    --whatsapp: #25D366;
    --whatsapp-hover: #20ba5a;
    --success: #28a745;
    --danger: #dc3545;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --container: 1200px;
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-light); }

/* === TOP BAR === */
.top-bar {
    background: var(--dark-bg);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}
.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.contact-info a:hover { color: var(--primary); }
.social-links { display: flex; gap: 15px; }
.trust-badge {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
}

/* === MAIN HEADER === */
.main-header {
    background: var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.logo-link { text-decoration: none; }
.logo { display: flex; flex-direction: column; }
.logo-main {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-top: -2px;
}

/* === DESKTOP NAV === */
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 5px; }
.nav-item { position: relative; }
.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link:hover, .nav-link.active {
    background: rgba(232,93,4,0.15);
    color: var(--primary);
}
.dropdown-icon { transition: transform 0.3s ease; }
.nav-item:hover .dropdown-icon { transform: rotate(180deg); }

/* === DROPDOWN MENU === */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--bg-light); padding-left: 22px; }
.dropdown-icon-box { font-size: 28px; flex-shrink: 0; }
.dropdown-text { flex: 1; }
.dropdown-title { display: block; font-weight: 600; font-size: 15px; color: var(--secondary); }
.dropdown-desc { display: block; font-size: 12px; color: #6c757d; margin-top: 2px; }
.product-count-badge {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* === HEADER CTA === */
.header-cta { flex-shrink: 0; }
.header-cta .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.header-cta .whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: var(--secondary);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-title { color: white; font-weight: 600; font-size: 18px; }
.mobile-nav-close { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
.mobile-nav-menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(232,93,4,0.15);
    color: var(--primary);
}
.mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0; padding: 0;
    background: var(--dark-bg);
}
.mobile-dropdown-menu.active { display: block; }
.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.mobile-dropdown-menu li a:hover {
    background: rgba(232,93,4,0.1);
    color: var(--primary);
}
.mobile-dropdown-toggle { float: right; font-size: 12px; transition: transform 0.3s ease; }
.mobile-nav-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-whatsapp-btn {
    display: block;
    background: var(--whatsapp);
    color: white;
    padding: 14px;
    border-radius: var(--radius);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mobile-whatsapp-btn:hover { background: var(--whatsapp-hover); }

/* === FOOTER === */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 0;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 15px; }
.footer-logo-main { font-size: 24px; font-weight: 800; color: var(--primary); }
.footer-logo-tagline { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: -2px; }
.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}
.footer-certifications { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-badge {
    background: rgba(232,93,4,0.15);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}
.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact { list-style: none; margin: 0 0 20px; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--primary); }
.footer-cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer-cta-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* === FLOATING ELEMENTS === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--whatsapp);
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 28px;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.back-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    background: var(--secondary);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 998;
    transition: all 0.3s ease;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* === BREADCRUMB === */
.breadcrumb {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-light); margin: 0 6px; }

/* === PAGE TITLE BAR === */
.page-title-bar { background: var(--white); padding: 14px 0 6px; }
.page-title-bar h1 { font-size: 20px; color: var(--secondary); font-weight: 700; }
.page-title-bar h1 span { color: var(--primary); }
.page-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232,93,4,0.3); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-light); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* === PRODUCT CARDS (Standardized) === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 16px 0 40px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
}
.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(232,93,4,0.1);
    transform: translateY(-2px);
}
.product-card-img {
    height: 140px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
    position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-badge {
    position: absolute;
    top: 8px; right: 8px;
    background: var(--secondary);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
}
.product-card-body { padding: 12px; }
.product-card-brand { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 2px; }
.product-card-size { font-size: 18px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.product-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; margin-bottom: 10px; }
.product-card-spec { font-size: 12px; color: var(--text-muted); }
.product-card-spec strong { color: var(--text-body); }
.product-card-actions { display: flex; gap: 6px; }
.product-card-actions .btn-details {
    flex: 1; padding: 8px; background: var(--secondary); color: white;
    text-decoration: none; border-radius: var(--radius-sm); font-size: 12px;
    font-weight: 600; text-align: center; transition: background 0.3s;
}
.product-card-actions .btn-details:hover { background: var(--secondary-light); }
.product-card-actions .btn-quote {
    flex: 1; padding: 8px; background: var(--whatsapp); color: white;
    text-decoration: none; border-radius: var(--radius-sm); font-size: 12px;
    font-weight: 600; text-align: center; transition: background 0.3s;
}
.product-card-actions .btn-quote:hover { background: var(--whatsapp-hover); }

/* === BLOG CARDS (Standardized) === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px 0 40px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
}
.blog-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.blog-card-img { height: 180px; background: var(--bg-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; line-height: 1.4; }
.blog-card-title a { color: var(--secondary); text-decoration: none; transition: color 0.3s; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-link { font-size: 13px; color: var(--primary); font-weight: 600; text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }

/* === FORMS (Standardized) === */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--secondary); font-size: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}
.empty-state a { color: var(--primary); font-weight: 600; }

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero h1 { font-size: 42px; margin-bottom: 16px; line-height: 1.2; font-weight: 800; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 18px; opacity: 0.9; max-width: 700px; line-height: 1.7; }
.hero .cta-row { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }

/* === SEO SECTIONS === */
.seo-section { padding: 50px 0; }
.seo-section:nth-child(even) { background: var(--bg-light); }
.seo-section h2 { color: var(--secondary); font-size: 28px; margin-bottom: 20px; }
.seo-section h3 { color: var(--secondary); font-size: 22px; margin: 25px 0 12px; }
.seo-section p { margin: 15px 0; line-height: 1.8; font-size: 16px; }
.seo-section ul { padding-left: 25px; margin: 15px 0; }
.seo-section li { margin: 8px 0; line-height: 1.7; }

/* === FAQ === */
.faq-section { padding: 50px 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { color: var(--secondary); font-size: 18px; margin: 0 0 10px; }
.faq-item p { margin: 0; line-height: 1.8; color: #555; }

/* === CATEGORY GRID (Homepage) === */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
}
.category-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.category-box:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-box .icon { font-size: 48px; margin-bottom: 12px; }
.category-box h3 { font-size: 20px; color: var(--secondary); margin-bottom: 8px; }
.category-box p { font-size: 14px; color: var(--text-muted); }
.category-box .count { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--primary); font-weight: 600; }

/* === STATS ROW === */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
}
.stat-box { text-align: center; }
.stat-box h3 { font-size: 36px; font-weight: 800; color: var(--primary); }
.stat-box p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* === CONTENT SECTIONS === */
.content-section { padding: 50px 0; }
.content-section h2 { font-size: 28px; color: var(--secondary); margin-bottom: 20px; }
.content-section p { margin: 15px 0; line-height: 1.8; }
.content-section ul, .content-section ol { padding-left: 25px; margin: 15px 0; }
.content-section li { margin: 8px 0; line-height: 1.7; }

/* === ALERTS === */
.alert { padding: 15px 20px; border-radius: 6px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === TABS (Products Page) === */
.tabs { display: flex; gap: 0; background: var(--white); border-bottom: 2px solid var(--border); padding: 0; margin: 0; }
.tab-btn { padding: 10px 24px; background: transparent; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: #6c757d; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab-btn:hover { color: var(--primary); background: #fff5f0; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn .count { background: var(--border); color: var(--text-muted); padding: 1px 8px; border-radius: 10px; font-size: 12px; margin-left: 6px; }
.tab-btn.active .count { background: var(--primary); color: var(--white); }
.tab-content { display: none; padding: 16px 0; }
.tab-content.active { display: block; }
.cat-label { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.cat-label strong { color: var(--secondary); }

/* === PRODUCT DETAIL PAGE === */
.product-main { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 16px 0; }
.product-image { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; min-height: 300px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image .tire-icon { font-size: 120px; color: #ccc; }
.product-details { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; }
.product-title { font-size: 22px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.product-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.product-subtitle span { color: var(--primary); font-weight: 600; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 16px; }
.spec-item { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; }
.spec-item:nth-child(odd) { border-right: 1px solid #f0f0f0; }
.spec-item .label { font-size: 11px; color: var(--text-light); text-transform: uppercase; font-weight: 600; }
.spec-item .value { font-size: 14px; color: var(--secondary); font-weight: 700; margin-top: 2px; }
.features-list { margin-bottom: 16px; }
.features-list h4 { font-size: 13px; color: var(--secondary); margin-bottom: 8px; text-transform: uppercase; }
.features-list ul { list-style: none; }
.features-list li { padding: 4px 0 4px 20px; position: relative; font-size: 13px; color: #555; }
.features-list li:before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.cta-bar { display: flex; gap: 8px; }
.cta-bar .btn { flex: 1; padding: 12px; text-align: center; }
.certs { display: flex; gap: 8px; margin-top: 12px; }
.certs .cert-badge { background: #f0f7ff; color: var(--secondary); padding: 4px 10px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; }
.specs-section { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 16px; margin: 16px 0; }
.specs-section h3 { font-size: 15px; color: var(--secondary); margin-bottom: 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 8px 12px; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child { color: var(--secondary); font-weight: 600; }

/* === BLOG LAYOUT === */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; padding: 20px 0 40px; }
.page-title-bar .desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.featured-post { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px; }
.featured-post .featured-img { height: 200px; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 64px; color: rgba(255,255,255,0.3); }
.featured-post .featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .content { padding: 20px; }
.featured-post .badge { display: inline-block; background: var(--primary); color: var(--white); padding: 3px 10px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.featured-post h2 { font-size: 20px; color: var(--secondary); margin-bottom: 10px; }
.featured-post h2 a { color: inherit; text-decoration: none; }
.featured-post h2 a:hover { color: var(--primary); }
.featured-post p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 12px; }
.featured-post .meta { font-size: 12px; color: var(--text-light); display: flex; gap: 16px; flex-wrap: wrap; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.blog-card .category { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.blog-card h3 { font-size: 15px; color: var(--secondary); margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.blog-card .meta { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.blog-card .read-more { font-size: 12px; color: var(--primary); text-decoration: none; font-weight: 600; }
.blog-card .read-more:hover { text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; text-decoration: none; border: 1px solid var(--border); color: #555; background: var(--white); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }
.sidebar-box { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 16px; margin-bottom: 16px; }
.sidebar-box h3 { font-size: 14px; color: var(--secondary); margin-bottom: 12px; font-weight: 700; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.sidebar-box ul { list-style: none; }
.sidebar-box li { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.sidebar-box li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-box a { font-size: 13px; color: #555; text-decoration: none; display: block; }
.sidebar-box a:hover { color: var(--primary); }
.sidebar-box .recent-date { font-size: 11px; color: var(--text-light); }
.sidebar-box .size-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-box .size-pill { display: inline-block; padding: 4px 10px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; color: #555; text-decoration: none; }
.sidebar-box .size-pill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* === BLOG POST === */
.blog-post { padding: 60px 0; }
.blog-post h1 { color: var(--secondary); font-size: 36px; margin-bottom: 15px; line-height: 1.3; }
.blog-post .meta { color: #6c757d; margin-bottom: 30px; font-size: 14px; }
.blog-post .content { font-size: 17px; line-height: 1.8; }
.blog-post .content h2 { color: var(--secondary); margin: 30px 0 15px; font-size: 26px; }
.blog-post .content h3 { color: var(--secondary); margin: 25px 0 12px; font-size: 22px; }
.blog-post .content p { margin: 20px 0; }
.blog-post .content ul, .blog-post .content ol { margin: 20px 0; padding-left: 30px; }
.blog-post .content li { margin: 10px 0; }
.blog-post .content a { color: var(--primary); font-weight: 600; }
.blog-post .content strong { color: var(--secondary); }
.blog-post .content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.blog-post .content table th { background: var(--secondary); color: white; padding: 12px; text-align: left; }
.blog-post .content table td { padding: 12px; border-bottom: 1px solid var(--border); }
.related-posts { background: var(--bg-light); padding: 60px 0; margin-top: 60px; }
.related-posts h2 { color: var(--secondary); margin-bottom: 30px; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.related-card { background: white; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.related-card h3 { font-size: 18px; margin-bottom: 10px; }
.related-card h3 a { color: var(--secondary); text-decoration: none; }
.related-card h3 a:hover { color: var(--primary); }

/* === ABOUT PAGE === */
.page-title-bar-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); padding: 32px 0; color: var(--white); }
.page-title-bar-hero h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.page-title-bar-hero .subtitle { font-size: 15px; opacity: 0.9; max-width: 700px; }
.about-section { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; margin: 16px 0; }
.about-section h2 { font-size: 20px; color: var(--secondary); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.about-section h3 { font-size: 16px; color: var(--secondary); margin: 16px 0 8px; }
.about-section p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 12px; }
.about-section ul, .about-section ol { margin: 8px 0 12px 20px; }
.about-section li { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 4px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 20px 0; }
.stat-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; text-align: center; }
.stat-card .number { font-size: 32px; font-weight: 800; color: var(--primary); }
.stat-card .label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 16px 0; }
.feature-box { background: var(--white); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.2s; }
.feature-box:hover { border-color: var(--primary); box-shadow: 0 2px 12px rgba(232,93,4,0.08); }
.feature-icon { font-size: 32px; margin-bottom: 10px; }
.feature-box h3 { color: var(--secondary); font-size: 15px; margin-bottom: 6px; font-weight: 700; }
.feature-box p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.cert-badges .cert-badge { background: var(--secondary); color: white; padding: 10px 18px; border-radius: 6px; font-weight: 600; font-size: 13px; }
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 12px 0; }
.market-card { background: var(--bg-light); border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); }
.market-card h4 { font-size: 14px; color: var(--secondary); margin-bottom: 6px; }
.market-card p { font-size: 12px; color: var(--text-muted); }
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: white; padding: 32px; border-radius: var(--radius); text-align: center; margin: 24px 0; }
.cta-section h2 { font-size: 22px; margin-bottom: 10px; }
.cta-section p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === CONTACT PAGE === */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; padding: 16px 0 40px; }
.contact-form-wrapper, .contact-info-wrapper { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; }
.contact-form-wrapper h2, .contact-info-wrapper h2 { font-size: 16px; color: var(--secondary); margin-bottom: 16px; }
.success-message { background: #d4edda; color: #155724; padding: 12px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: 13px; }
.error-message { background: #f8d7da; color: #721c24; padding: 12px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: 13px; }
.info-card { margin-bottom: 14px; padding: 14px; background: var(--bg-light); border-radius: 6px; }
.info-icon { font-size: 24px; margin-bottom: 6px; }
.info-card h3 { color: var(--secondary); margin-bottom: 4px; font-size: 14px; }
.info-card p { font-size: 13px; color: #555; }
.info-card a { color: var(--primary); text-decoration: none; }
.btn-block { width: 100%; }

/* === TIRE KNOWLEDGE === */
.content-wrapper { display: grid; grid-template-columns: 200px 1fr; gap: 20px; padding: 16px 0 40px; }
.toc { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 14px; position: sticky; top: 80px; max-height: calc(100vh - 100px); overflow-y: auto; }
.toc h4 { font-size: 12px; color: var(--secondary); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.toc a { display: block; font-size: 12px; color: #555; text-decoration: none; padding: 4px 0; border-bottom: 1px solid #f0f0f0; }
.toc a:hover { color: var(--primary); }
.article { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; margin-bottom: 12px; }
.article h2 { font-size: 18px; color: var(--secondary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.article h3 { font-size: 14px; color: var(--secondary); margin: 12px 0 6px; }
.article p, .article li { font-size: 13px; color: #555; line-height: 1.7; }
.article ul, .article ol { margin: 8px 0; padding-left: 20px; }
.article li { margin-bottom: 4px; }
.article strong { color: var(--secondary); }
.article table { width: 100%; border-collapse: collapse; margin: 10px 0; font-size: 12px; }
.article th { background: var(--secondary); color: var(--white); padding: 8px; text-align: left; }
.article td { padding: 6px 8px; border-bottom: 1px solid var(--border); }
.article tr:nth-child(even) { background: var(--bg-light); }
.article .tip { background: #f0f7ff; border-left: 3px solid var(--primary); padding: 10px 14px; margin: 10px 0; border-radius: var(--radius-sm); font-size: 12px; }
.cta-box { background: #f0f7ff; padding: 16px; border-left: 3px solid var(--primary); margin: 0 0 20px; border-radius: var(--radius-sm); }
.cta-box a { color: var(--primary); font-weight: 600; }

/* === HOMEPAGE SPECIFIC === */
/* Hero Slider */
.hero-slider { position: relative; overflow: hidden; height: 600px; background: #0B2B40; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease-in-out; z-index: 0; display: none; }
.hero-slide.active { opacity: 1; z-index: 1; display: block; }
.hero-slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11,43,64,0.65); z-index: 1; }
.hero-slide-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: #fff; padding: 30px 20px; }
.hero-tagline { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; opacity: 0.9; margin-bottom: 12px; background: rgba(255,255,255,0.1); padding: 6px 16px; border-radius: 20px; backdrop-filter: blur(4px); }
.hero-title { font-size: 38px; margin-bottom: 16px; line-height: 1.2; font-weight: 800; max-width: 800px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); color: #fff; }
.hero-subtitle { font-size: 17px; max-width: 700px; margin: 0 auto 24px; opacity: 0.95; line-height: 1.7; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn { padding: 12px 28px; font-size: 15px; font-weight: 600; border-radius: 6px; }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.8); color: #fff; background: transparent; transition: all 0.2s; }
.btn-outline-light:hover { background: rgba(255,255,255,0.2); border-color: #fff; color: #fff; }
.hero-badges { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.hero-badge { background: rgba(255,255,255,0.18); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); background: transparent; cursor: pointer; padding: 0; transition: all 0.3s; }
.hero-dot.active { background: #fff; border-color: #fff; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,0.5); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 32px; line-height: 1; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; padding: 0; }
.hero-arrow:hover { background: rgba(0,0,0,0.8); }
.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }

/* Mobile hero */
@media (max-width: 768px) {
    .hero-slider { height: 450px; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 18px; }
    .hero-tagline { font-size: 12px; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .hero-buttons .btn { width: 220px; text-align: center; padding: 11px 24px; }
    .hero-badges { gap: 8px; margin-top: 16px; }
    .hero-badge { font-size: 12px; padding: 5px 12px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 26px; }
    .hero-arrow-prev { left: 15px; }
    .hero-arrow-next { right: 15px; }
}
@media (max-width: 480px) {
    .hero-slider { height: 350px; }
    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 14px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 22px; }
}
.features-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.features-strip .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.features-strip .feature-item { font-size: 13px; color: #555; }
.features-strip .feature-item strong { color: var(--secondary); display: block; font-size: 14px; }
.stats-bar { background: var(--secondary); padding: 24px 0; }
.stats-bar .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stats-bar .stat-item { color: white; }
.stats-bar .stat-number { font-size: 28px; font-weight: 800; color: var(--primary); }
.stats-bar .stat-label { font-size: 12px; opacity: 0.8; margin-top: 2px; }
.section-title { font-size: 22px; color: var(--secondary); margin-bottom: 20px; font-weight: 700; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.products-grid .product-card img { width: 100%; height: 140px; object-fit: cover; background: #f0f0f0; }
.products-grid .product-card .placeholder { height: 140px; background: linear-gradient(135deg, var(--bg-light), var(--border)); display: flex; align-items: center; justify-content: center; font-size: 40px; color: #ccc; }
.products-grid .product-content { padding: 12px; }
.products-grid .product-content h3 { font-size: 14px; color: var(--secondary); margin-bottom: 4px; }
.products-grid .product-content p { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.products-grid .product-content .btn { padding: 6px 14px; font-size: 12px; }
.cat-block { background: var(--bg-light); padding: 16px; border-radius: var(--radius); margin-bottom: 12px; }
.cat-block h3 { font-size: 15px; color: var(--secondary); margin-bottom: 6px; }
.cat-block p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.brand-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px; text-align: center; font-size: 13px; font-weight: 600; color: var(--secondary); transition: all 0.2s; cursor: pointer; }
.brand-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.brand-card .country { font-size: 11px; color: var(--text-light); font-weight: 400; }
.patterns-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.pattern-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 14px; transition: all 0.2s; overflow: hidden; cursor: pointer; }
.pattern-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.pattern-card h4 { font-size: 14px; color: var(--secondary); margin-bottom: 4px; }
.pattern-card p { font-size: 12px; color: var(--text-muted); }
.pattern-app { display: inline-block; font-size: 11px; background: #e8f4f8; color: #0B2B40; padding: 2px 8px; border-radius: 10px; margin-top: 6px; }
.cert-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-grid .cert-item { background: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; }
.markets-grid-home { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.markets-grid-home .market-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px; text-align: center; transition: all 0.2s; cursor: pointer; }
.markets-grid-home .market-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.markets-grid-home .market-card .flag { font-size: 24px; }
.markets-grid-home .market-card .name { font-size: 12px; color: var(--secondary); font-weight: 600; margin-top: 4px; }
.warehouse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.warehouse-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-light); text-align: center; }
.why-section { background: #f0f7ff; padding: 32px 0; }
.why-section p { font-size: 14px; max-width: 800px; line-height: 1.7; }
.testimonials-slider { position: relative; min-height: 120px; }
.testimonial-slide { display: none; text-align: center; max-width: 700px; margin: 0 auto; padding: 20px; }
.testimonial-slide.active { display: block; }
.testimonial-quote { font-size: 15px; font-style: italic; line-height: 1.7; margin-bottom: 12px; color: #333; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--secondary); }
.testimonial-company { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testimonial-country { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #ccc; background: transparent; cursor: pointer; padding: 0; transition: all 0.3s; }
.testimonial-dot.active { background: var(--primary); border-color: var(--primary); }
.cta-banner { background: var(--primary); color: white; text-align: center; padding: 32px 0; }
.cta-banner h2 { font-size: 24px; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; margin-bottom: 16px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { padding: 12px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; color: #fff; }
.product-pattern { display: inline-block; font-size: 11px; background: #e8f4f8; color: #0B2B40; padding: 2px 8px; border-radius: 10px; margin-right: 4px; }
.product-category { display: inline-block; font-size: 11px; background: var(--primary); color: #fff; padding: 2px 8px; border-radius: 10px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.2s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blog-card-body { padding: 14px; }
.blog-category { display: inline-block; font-size: 11px; background: var(--primary); color: #fff; padding: 2px 10px; border-radius: 10px; margin-bottom: 8px; }
.blog-card h3 { font-size: 15px; color: var(--secondary); margin-bottom: 6px; }
.blog-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.blog-date { color: #888; }

/* === LEGAL / POLICY PAGES === */
.policy-page { padding: 60px 0; }
.policy-page h1 { color: var(--secondary); margin-bottom: 10px; font-size: 36px; }
.policy-page .last-updated { color: #6c757d; margin-bottom: 30px; }
.policy-page h2 { color: var(--secondary); margin: 30px 0 15px; font-size: 22px; }
.policy-page p, .policy-page li { margin: 12px 0; line-height: 1.8; }
.policy-page ul { padding-left: 25px; }

/* === 404 ERROR PAGE === */
.error-page { padding: 80px 0; text-align: center; }
.error-page h1 { font-size: 100px; color: var(--secondary); line-height: 1; margin-bottom: 10px; }
.error-page h2 { font-size: 32px; color: var(--secondary); margin-bottom: 20px; }
.error-page p { color: #6c757d; font-size: 18px; margin-bottom: 30px; }
.error-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-actions a { padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 600; }
.popular-links { max-width: 400px; margin: 0 auto; }
.popular-links h3 { color: var(--secondary); margin-bottom: 15px; }
.popular-links ul { list-style: none; padding: 0; }
.popular-links li { margin: 10px 0; }
.popular-links a { color: var(--primary); text-decoration: none; font-size: 16px; }
.popular-links a:hover { text-decoration: underline; }

/* === LOCATIONS PAGE === */
.page-header { background: var(--secondary); color: white; padding: 50px 0; text-align: center; }
.page-header h1 { font-size: 36px; margin-bottom: 10px; }
.page-header p { font-size: 18px; opacity: 0.8; }
.locations-content { padding: 40px 0; }
.locations-content .intro { font-size: 18px; line-height: 1.8; margin-bottom: 30px; }
.locations-content .intro a { color: var(--primary); font-weight: 600; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 40px; }
.location-section { background: var(--bg-light); padding: 25px; border-radius: var(--radius); border: 1px solid var(--border); }
.location-section h2 { font-size: 20px; color: var(--secondary); margin-bottom: 15px; }
.location-section ul { list-style: none; padding: 0; }
.location-section li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.location-section li:last-child { border-bottom: none; }
.cta-box-dark { background: var(--secondary); color: white; padding: 40px; border-radius: var(--radius); text-align: center; }
.cta-box-dark h3 { font-size: 24px; margin-bottom: 10px; color: white; }
.cta-box-dark p { margin-bottom: 20px; opacity: 0.9; }

/* === SEO TEMPLATE PAGES === */
.seo-hero, .country-hero, .size-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: white; padding: 50px 0 40px; }
.seo-hero h1, .country-hero h1, .size-hero h1 { font-size: 34px; margin-bottom: 15px; line-height: 1.3; }
.seo-hero p, .country-hero p, .size-hero .subtitle { font-size: 18px; opacity: 0.9; max-width: 700px; line-height: 1.7; }
.seo-hero .cta-row, .country-hero .cta-row, .size-hero .cta-row { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.cta-btn { padding: 14px 30px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 16px; display: inline-block; }
.cta-primary { background: var(--primary); color: white; }
.cta-primary:hover { background: var(--primary-hover); }
.cta-outline { border: 2px solid white; color: white; }
.cta-outline:hover { background: rgba(255,255,255,0.1); }
.country-hero .flag { font-size: 48px; margin-bottom: 10px; }
.country-hero .meta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 15px; font-size: 14px; opacity: 0.85; }
.country-hero .meta-item { background: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 20px; }
.size-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.size-links a { background: var(--secondary); color: white; padding: 8px 16px; border-radius: 20px; text-decoration: none; font-size: 14px; font-weight: 600; }
.size-links a:hover { background: var(--primary); }
.internal-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 20px 0; }
.internal-links a { display: block; padding: 12px 16px; background: white; border: 1px solid var(--border); border-radius: 6px; text-decoration: none; color: var(--secondary); font-weight: 500; }
.internal-links a:hover { border-color: var(--primary); color: var(--primary); }
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table th { background: var(--secondary); color: white; padding: 12px 16px; text-align: left; font-size: 14px; }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 15px; }
.spec-table tr:hover { background: #f0f4f8; }
.spec-section { padding: 45px 0; }
.spec-section:nth-child(even) { background: var(--bg-light); }
.spec-section h2 { color: var(--secondary); font-size: 26px; margin-bottom: 18px; }
.spec-section h3 { color: var(--secondary); font-size: 20px; margin: 20px 0 10px; }
.spec-section p { margin: 12px 0; line-height: 1.8; font-size: 16px; }
.spec-section ul { padding-left: 25px; margin: 12px 0; }
.spec-section li { margin: 8px 0; line-height: 1.7; }
.inquiry-form { background: var(--secondary); color: white; padding: 50px 0; }
.inquiry-form h2 { color: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 700px; }
.form-grid input, .form-grid select, .form-grid textarea { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; width: 100%; }
.form-grid textarea { grid-column: 1 / -1; min-height: 100px; }
.form-grid .full-width { grid-column: 1 / -1; }
.form-submit { background: var(--primary); color: white; border: none; padding: 14px 40px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 10px; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin: 20px 0; }
.info-cards .info-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.info-cards .info-card h4 { color: var(--secondary); margin-bottom: 10px; font-size: 16px; }
.info-cards .info-card ul { list-style: none; padding: 0; margin: 0; }
.info-cards .info-card li { padding: 4px 0; font-size: 14px; color: #555; }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .desktop-nav, .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .top-bar-content { flex-direction: column; gap: 8px; }
    .contact-info { flex-direction: column; gap: 8px; }
    .social-links { flex-wrap: wrap; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .category-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; gap: 20px; }
    .hero h1 { font-size: 30px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    /* Page-specific responsive */
    .product-main { grid-template-columns: 1fr; gap: 12px; }
    .product-image { min-height: 200px; }
    .spec-grid { grid-template-columns: 1fr; }
    .spec-item:nth-child(odd) { border-right: none; }
    .cta-bar { flex-direction: column; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .content-wrapper { grid-template-columns: 1fr; }
    .toc { position: static; max-height: none; }
    .hero-compact h1 { font-size: 22px; }
    .hero-compact .hero-buttons { flex-direction: column; align-items: center; }
    .features-strip .grid { grid-template-columns: 1fr; gap: 8px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .patterns-grid { grid-template-columns: 1fr 1fr; }
    .markets-grid-home { grid-template-columns: repeat(3, 1fr); }
    .tab-btn { padding: 8px 14px; font-size: 13px; }
    .page-title-bar h1 { font-size: 18px; }
    .blog-post h1 { font-size: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .seo-hero h1, .country-hero h1 { font-size: 26px; }
    .size-hero h1 { font-size: 28px; }
    .error-actions a { display: block; text-align: center; }
}
@media (max-width: 600px) {
    .logo-main { font-size: 22px; }
    .logo-tagline { font-size: 10px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .product-grid { grid-template-columns: 1fr; }
    .floating-whatsapp { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .back-to-top { width: 45px; height: 45px; bottom: 85px; right: 20px; }
    /* Page-specific mobile */
    .product-title { font-size: 18px; }
    .product-image .tire-icon { font-size: 80px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .markets-grid { grid-template-columns: 1fr; }
    .btn-secondary { margin-left: 0; margin-top: 8px; }
    .products-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .patterns-grid { grid-template-columns: 1fr; }
    .markets-grid-home { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 24px 0; }
}
