/* Dealerz Figma Template Theme - Mechanic Suppliers */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

:root {
    --primary-orange: #FF5B29;
    --primary-orange-hover: #E04818;
    --accent-blue: #3B82F6;
    --accent-blue-light: #E0F2FE;
    --bg-light: #F8FAFC;
    --bg-card: #F1F5F9;
    --bg-white: #FFFFFF;
    --dark-slate: #0F172A;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --star-gold: #F59E0B;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-pill: 99px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.svg-icon {
    display: inline-block; vertical-align: -0.125em; width: 1.1em; height: 1.1em; flex-shrink: 0;
}

/* 1. Top Utility Header Bar */
.dealerz-topbar {
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
    padding: 10px 24px;
}
.dealerz-topbar-inner {
    max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
}
.dealerz-topbar a { color: var(--primary-orange); font-weight: 700; }

/* 2. Main Header Nav */
.dealerz-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
}
.dealerz-header-inner {
    max-width: 1280px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.dealerz-logo {
    font-size: 26px; font-weight: 800; color: var(--dark-slate); letter-spacing: -0.5px; display: flex; align-items: center; gap: 4px;
}
.dealerz-logo span { color: var(--primary-orange); }

.dealerz-nav { display: flex; align-items: center; gap: 32px; list-style: none; }
.dealerz-nav a { font-size: 15px; font-weight: 600; color: var(--text-dark); transition: color 0.2s; }
.dealerz-nav a:hover, .dealerz-nav a.active { color: var(--primary-orange); font-weight: 700; }

.dealerz-header-actions { display: flex; align-items: center; gap: 16px; }
.dealerz-search {
    display: flex; align-items: center; background: #F1F5F9; border-radius: var(--radius-pill); padding: 8px 16px; gap: 8px; border: 1px solid var(--border-color); width: 220px;
}
.dealerz-search input { border: none; background: transparent; outline: none; font-size: 14px; width: 100%; font-family: inherit; }

.dealerz-cart-btn {
    display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--bg-card); color: var(--dark-slate); border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; transition: all 0.2s; border: 1px solid var(--border-color);
}
.dealerz-cart-btn:hover { background: var(--primary-orange); color: white; border-color: var(--primary-orange); }
.dealerz-cart-badge { background: var(--primary-orange); color: white; font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 99px; }

.mobile-menu-btn { display: none; background: #F1F5F9; border: 1px solid var(--border-color); font-size: 20px; cursor: pointer; color: var(--text-dark); padding: 6px 12px; border-radius: 8px; }

/* 3. Hero Section (Dealerz Style with Shapes) */
.dealerz-hero {
    background: #F8FAFC;
    padding: 70px 24px 90px;
    position: relative;
    overflow: hidden;
}
.dealerz-shape-blue {
    position: absolute; top: 30px; left: 40px; width: 40px; height: 40px; border-radius: 50%; border: 4px solid var(--accent-blue); clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); transform: rotate(-45deg); opacity: 0.8;
}
.dealerz-shape-orange {
    position: absolute; bottom: 40px; left: 35%; width: 12px; height: 12px; background: var(--primary-orange); border-radius: 50%;
}
.dealerz-hero-inner {
    max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.dealerz-hero-title {
    font-size: 52px; font-weight: 800; line-height: 1.12; color: var(--dark-slate); margin-bottom: 20px; letter-spacing: -1px;
}
.dealerz-hero-desc {
    font-size: 17px; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; line-height: 1.6;
}
.btn-dealerz-orange {
    background: var(--primary-orange); color: white; padding: 14px 32px; font-weight: 700; font-size: 15px; border-radius: var(--radius-pill); border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(255, 91, 41, 0.3);
}
.btn-dealerz-orange:hover { background: var(--primary-orange-hover); transform: translateY(-2px); }

.dealerz-hero-img-box {
    background: white; padding: 16px; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); border: 1px solid var(--border-color); text-align: center;
}
.dealerz-hero-img-box img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }

/* 4. Category Tabs Section */
.dealerz-collection-section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; text-align: center; }
.dealerz-section-title { font-size: 38px; font-weight: 800; color: var(--dark-slate); margin-bottom: 24px; letter-spacing: -0.5px; }
.dealerz-tabs {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.dealerz-tab {
    background: transparent; border: none; padding: 10px 20px; font-weight: 700; font-size: 15px; color: var(--text-muted); cursor: pointer; transition: all 0.2s; border-radius: var(--radius-pill);
}
.dealerz-tab.active, .dealerz-tab:hover { background: #FFEFEA; color: var(--primary-orange); }

/* Dealerz Product Card Grid */
.dealerz-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }

.dealerz-card {
    background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-color); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; text-align: left; padding: 20px; position: relative;
}
.dealerz-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.06); border-color: var(--primary-orange); }

.dealerz-card-img-wrap {
    height: 240px; background: #F8FAFC; border-radius: 12px; overflow: hidden; margin-bottom: 20px; position: relative;
}
.dealerz-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dealerz-card:hover .dealerz-card-img-wrap img { transform: scale(1.05); }

.dealerz-card-category { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.dealerz-card-title { font-size: 18px; font-weight: 800; color: var(--dark-slate); margin-bottom: 12px; line-height: 1.3; }
.dealerz-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dealerz-card-price { font-size: 20px; font-weight: 800; color: var(--primary-orange); }

.dealerz-card-btn {
    width: 40px; height: 40px; background: var(--primary-orange); color: white; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s;
}
.dealerz-card-btn:hover { transform: scale(1.1); background: var(--primary-orange-hover); }

/* 5. Top Items Section with Sale Badge */
.dealerz-top-items { background: #F8FAFC; padding: 80px 24px; text-align: center; }
.dealerz-badge-sale {
    position: absolute; top: 12px; left: 12px; background: var(--primary-orange); color: white; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 99px; text-transform: uppercase;
}

/* 6. Brand Story Section */
.dealerz-story-section { padding: 90px 24px; max-width: 1280px; margin: 0 auto; }
.dealerz-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dealerz-story-img-box { background: #E2E8F0; border-radius: 24px; height: 380px; overflow: hidden; }
.dealerz-story-img-box img { width: 100%; height: 100%; object-fit: cover; }
.dealerz-story-content { background: #F8FAFC; padding: 40px; border-radius: 24px; border: 1px solid var(--border-color); }
.dealerz-story-title { font-size: 36px; font-weight: 800; color: var(--dark-slate); margin-bottom: 16px; }
.dealerz-story-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

/* 7. Achievements Logos Bar */
.dealerz-logos-bar { padding: 40px 24px; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; opacity: 0.6; filter: grayscale(100%); flex-wrap: wrap; gap: 20px; }

/* 8. Testimonial Section */
.dealerz-testimonial { padding: 70px 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.dealerz-testimonial-box { background: #F8FAFC; border-radius: 24px; padding: 48px 32px; border: 1px solid var(--border-color); }
.dealerz-quote-text { font-size: 20px; font-weight: 500; color: var(--dark-slate); line-height: 1.6; margin-bottom: 24px; font-style: italic; }
.dealerz-author-name { font-size: 17px; font-weight: 800; color: var(--dark-slate); }
.dealerz-author-role { font-size: 13px; color: var(--text-muted); }

/* 9. Blog Articles Section */
.dealerz-articles { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.dealerz-articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.dealerz-article-card { background: #F8FAFC; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); padding: 24px; }
.dealerz-article-img { height: 200px; border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.dealerz-article-img img { width: 100%; height: 100%; object-fit: cover; }
.dealerz-article-title { font-size: 20px; font-weight: 800; color: var(--dark-slate); margin-bottom: 10px; }

/* 10. Newsletter Card Box */
.dealerz-newsletter { max-width: 1100px; margin: 0 auto 80px; padding: 0 24px; }
.dealerz-newsletter-inner { background: #F8FAFC; border-radius: 24px; padding: 50px 32px; text-align: center; border: 1px solid var(--border-color); }
.dealerz-newsletter-title { font-size: 32px; font-weight: 800; color: var(--dark-slate); margin-bottom: 12px; }
.dealerz-newsletter-form { display: flex; max-width: 500px; margin: 24px auto 0; gap: 12px; }
.dealerz-newsletter-form input { flex-grow: 1; padding: 14px 20px; border-radius: var(--radius-pill); border: 1px solid var(--border-color); outline: none; font-size: 14px; }

/* 11. Footer (Dealerz Style) */
.dealerz-footer { background: white; border-top: 1px solid var(--border-color); padding: 60px 24px 30px; font-size: 14px; color: var(--text-muted); }
.dealerz-footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.dealerz-footer-links { display: flex; gap: 32px; list-style: none; font-weight: 600; }
.dealerz-footer-links a:hover { color: var(--primary-orange); }
.dealerz-footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--border-color); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; }

/* Page Layout for Subpages */
.page-container { max-width: 900px; margin: 40px auto 80px; padding: 40px; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.page-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; color: var(--dark-slate); }
.content-box { font-size: 15px; color: #334155; line-height: 1.7; }
.content-box h2 { font-size: 20px; font-weight: 800; margin: 28px 0 12px; color: var(--dark-slate); }
.content-box p { margin-bottom: 16px; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .dealerz-header-inner { flex-wrap: wrap; }
    .mobile-menu-btn { display: block; }
    .dealerz-nav { display: none; width: 100%; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-color); }
    .dealerz-nav.active { display: flex; }
    .dealerz-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .dealerz-products-grid { grid-template-columns: repeat(2, 1fr); }
    .dealerz-story-grid, .dealerz-articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .dealerz-topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
    .dealerz-search { display: none; }
    .dealerz-hero-title { font-size: 34px; }
    .dealerz-products-grid { grid-template-columns: 1fr; }
    .dealerz-newsletter-form { flex-direction: column; }
    .dealerz-footer-inner, .dealerz-footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    .dealerz-footer-links { flex-direction: column; gap: 12px; }
}
