/* ===== GERMANAUTO PARTS - PREMIUM STYLESHEET ===== */
:root {
  --primary: #1a1a2e;
  --primary-dark: #0d0d1a;
  --accent: #c9a84c;
  --accent-light: #e8c96a;
  --accent-dark: #a88830;
  --blue: #1c69d4;
  --blue-light: #3d8ff0;
  --white: #ffffff;
  --light: #f4f4f4;
  --light2: #e8e8e8;
  --text: #2c2c2b;
  --text2: #5a5a5a;
  --border: #ddd;
  --green: #46a171;
  --red: #e56458;
  --orange: #d5803b;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius: 8px;
  --radius-lg: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text); background: #f8f8f8; line-height: 1.5; }
a { text-decoration: none; color: inherit; transition: all .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== TOPBAR ===== */
.topbar { background: var(--primary-dark); color: #aaa; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #333; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar span i { margin-right: 5px; color: var(--accent); }
.whatsapp-link { background: #25d366; color: #fff !important; padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 12px; }
.whatsapp-link:hover { background: #1da851; }

/* ===== HEADER ===== */
.main-header { background: var(--primary); padding: 16px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.main-header .container { display: flex; align-items: center; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 22px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.logo-sub { font-size: 11px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }

.header-search { flex: 1; max-width: 560px; }
.header-search form { display: flex; background: #fff; border-radius: 8px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.header-search form:focus-within { border-color: var(--accent); }
.header-search select { padding: 10px 12px; border: none; border-right: 1px solid #ddd; background: #f4f4f4; font-size: 13px; cursor: pointer; outline: none; color: var(--text); }
.header-search input { flex: 1; padding: 10px 14px; border: none; outline: none; font-size: 14px; }
.header-search button { background: var(--accent); border: none; padding: 0 20px; color: var(--primary); font-size: 16px; cursor: pointer; transition: background .2s; }
.header-search button:hover { background: var(--accent-light); }

.header-actions { display: flex; gap: 10px; margin-left: auto; }
.action-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 16px; border-radius: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; position: relative; color: #ccc; transition: all .2s; }
.action-btn i { font-size: 20px; }
.action-btn:hover { color: var(--white); background: rgba(255,255,255,.1); }
.whatsapp-btn i { color: #25d366; }
.cart-btn i { color: var(--accent); }
.cart-badge { position: absolute; top: 4px; right: 8px; background: var(--red); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; }

.mobile-menu-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.3); color: var(--white); padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 18px; }

/* ===== NAV ===== */
.main-nav { background: #16213e; border-bottom: 2px solid var(--accent); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-list { display: flex; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 6px; padding: 13px 16px; color: #ccc; font-size: 13.5px; font-weight: 500; transition: all .2s; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--accent); background: rgba(201,168,76,.08); }
.nav-list > li > a i { font-size: 12px; }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); padding: 20px; display: flex; gap: 30px; min-width: 520px; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .25s; border-top: 3px solid var(--accent); }
.dropdown-brands, .dropdown-cats { flex: 1; }
.dropdown-brands a, .dropdown-cats a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: 13.5px; color: var(--text); font-weight: 500; }
.dropdown-brands a:hover, .dropdown-cats a:hover { background: var(--light); color: var(--accent); }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; }
.brand-bmw { background: #1c69d4; }
.brand-mercedesbenz { background: #999; }
.brand-audi { background: #e00; }
.brand-volkswagen { background: #1d3461; }
.brand-porsche { background: #c8aa6e; }

.nav-brands-quick { display: flex; gap: 6px; padding: 8px 0; }
.brand-pill { padding: 4px 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; color: #bbb; font-size: 11.5px; font-weight: 600; transition: all .2s; white-space: nowrap; }
.brand-pill:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 540px; background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 40%, #16213e 100%); display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(201,168,76,0.15)"/></svg>') repeat; }
.hero-content { position: relative; z-index: 2; flex: 1; padding: 60px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); color: var(--accent); padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(36px,5vw,60px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 32px; }
.hero-brands { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-brand { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #ddd; padding: 6px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.hero-image { position: relative; z-index: 2; width: 46%; display: flex; align-items: center; justify-content: center; }
.hero-gear-graphic { width: 380px; height: 380px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-gear-graphic .gear-outer { width: 340px; height: 340px; border: 2px solid rgba(201,168,76,.2); border-radius: 50%; position: absolute; animation: spin 20s linear infinite; }
.hero-gear-graphic .gear-inner { width: 200px; height: 200px; border: 2px solid rgba(201,168,76,.3); border-radius: 50%; position: absolute; animation: spin 10s linear infinite reverse; }
.hero-gear-graphic .gear-center { width: 100px; height: 100px; background: rgba(201,168,76,.15); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-stats { display: flex; gap: 30px; margin-top: 32px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Rajdhani', sans-serif; font-size: 30px; font-weight: 700; color: var(--accent); display: block; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { display: inline-block; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 700; color: var(--primary); line-height: 1.2; }
.section-title span { color: var(--accent); }
.section-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 2px; margin: 14px auto 0; }

/* ===== BRANDS STRIP ===== */
.brands-strip { background: var(--primary); padding: 30px 0; }
.brands-strip .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.brand-logo { text-align: center; }
.brand-logo-badge { width: 72px; height: 72px; border-radius: 50%; border: 2px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: #ccc; margin: 0 auto 6px; transition: all .3s; cursor: pointer; }
.brand-logo-badge:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }
.brand-logo span { font-size: 11px; color: #888; }

/* ===== PARTS GRID ===== */
.parts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.part-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all .3s; border: 1px solid var(--border); position: relative; }
.part-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.4); }
.part-card-img { position: relative; height: 200px; overflow: hidden; background: #f0f0f0; }
.part-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.part-card:hover .part-card-img img { transform: scale(1.06); }
.part-badge { position: absolute; top: 10px; left: 10px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-new { background: var(--blue); color: #fff; }
.badge-used { background: #555; color: #fff; }
.badge-refurbished { background: var(--orange); color: #fff; }
.badge-featured { background: var(--accent); color: var(--primary); }
.part-brand-tag { position: absolute; top: 10px; right: 10px; background: rgba(26,26,46,.85); color: var(--accent); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.part-card-body { padding: 16px; }
.part-brand { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.part-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.part-model { font-size: 12px; color: var(--text2); margin-bottom: 10px; }
.part-price-row { display: flex; align-items: center; justify-content: space-between; }
.part-price { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--primary); }
.part-original-price { font-size: 13px; color: #999; text-decoration: line-through; }
.part-card-actions { padding: 12px 16px 16px; display: flex; gap: 8px; border-top: 1px solid var(--light2); }
.btn-cart { flex: 1; background: var(--primary); color: var(--white); border: none; padding: 10px; border-radius: 7px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all .2s; }
.btn-cart:hover { background: var(--accent); color: var(--primary); }
.btn-view { background: var(--light); color: var(--text); border: none; padding: 10px 16px; border-radius: 7px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.btn-view:hover { background: var(--light2); }
.btn-wa { background: #25d366; color: #fff; border: none; padding: 10px 14px; border-radius: 7px; cursor: pointer; font-size: 15px; transition: all .2s; }
.btn-wa:hover { background: #1da851; }

/* ===== STRIPPING CARDS ===== */
.stripping-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.strip-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all .3s; border: 1px solid var(--border); }
.strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.strip-card-img { height: 220px; overflow: hidden; position: relative; background: #111; }
.strip-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: all .4s; }
.strip-card:hover .strip-card-img img { opacity: 1; transform: scale(1.04); }
.strip-status { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.strip-status.active { background: var(--green); color: #fff; }
.strip-status.stripped { background: #888; color: #fff; }
.strip-card-body { padding: 18px; }
.strip-brand { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.strip-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.strip-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text2); margin-bottom: 12px; flex-wrap: wrap; }
.strip-meta span { display: flex; align-items: center; gap: 4px; }
.strip-parts { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 16px; }
.strip-card-actions { display: flex; gap: 8px; }
.btn-strip-view { flex: 1; background: var(--primary); color: #fff; padding: 11px; border-radius: 7px; text-align: center; font-weight: 600; font-size: 13.5px; transition: background .2s; }
.btn-strip-view:hover { background: var(--accent); color: var(--primary); }
.btn-strip-wa { background: #25d366; color: #fff; padding: 11px 14px; border-radius: 7px; font-size: 16px; transition: background .2s; }
.btn-strip-wa:hover { background: #1da851; }

/* ===== FILTER BAR ===== */
.filter-bar { background: var(--white); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 28px; }
.filter-bar form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.filter-group label { font-size: 11px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; }
.filter-group select, .filter-group input { padding: 9px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13.5px; outline: none; background: var(--light); transition: border-color .2s; }
.filter-group select:focus, .filter-group input:focus { border-color: var(--accent); }
.btn-filter { background: var(--primary); color: #fff; padding: 10px 24px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; transition: background .2s; }
.btn-filter:hover { background: var(--accent); color: var(--primary); }
.btn-reset { background: var(--light); color: var(--text); padding: 10px 18px; border: 1px solid var(--border); border-radius: 6px; font-weight: 500; cursor: pointer; font-size: 14px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), #1a1a2e); padding: 50px 0; }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #888; margin-bottom: 12px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: #666; }

/* ===== PART DETAIL ===== */
.part-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.part-gallery .main-img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 12px; background: #f0f0f0; border: 1px solid var(--border); }
.part-thumbs { display: flex; gap: 10px; }
.part-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid var(--border); transition: border-color .2s; }
.part-thumb.active, .part-thumb:hover { border-color: var(--accent); }
.part-info .part-title { font-family: 'Rajdhani', sans-serif; font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.part-meta-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-tag { background: var(--light); border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text2); }
.part-big-price { font-family: 'Rajdhani', sans-serif; font-size: 44px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.part-big-price span { font-size: 20px; }
.part-description { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.part-specs { background: var(--light); border-radius: var(--radius); padding: 16px; margin-bottom: 24px; }
.spec-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-row:last-child { border: none; }
.spec-label { font-weight: 600; color: var(--text2); min-width: 120px; }
.spec-value { color: var(--text); }
.part-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-add-cart { background: linear-gradient(135deg, var(--primary), #16213e); color: #fff; border: none; padding: 15px 36px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-add-cart:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); transform: translateY(-2px); }
.btn-enquire { background: #25d366; color: #fff; border: none; padding: 15px 24px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-enquire:hover { background: #1da851; }

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.cart-items { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.cart-header { background: var(--primary); color: #fff; padding: 16px 20px; font-size: 15px; font-weight: 600; }
.cart-item { display: flex; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--light2); align-items: center; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14.5px; margin-bottom: 4px; }
.cart-item-brand { font-size: 12px; color: var(--blue); font-weight: 600; }
.cart-item-price { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--primary); }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); background: var(--light); border-radius: 4px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty-input { width: 44px; text-align: center; border: 1px solid var(--border); border-radius: 4px; padding: 4px; font-size: 14px; }
.remove-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: 18px; padding: 4px; }
.cart-summary { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.summary-header { background: var(--primary); color: #fff; padding: 14px 20px; font-weight: 600; }
.summary-body { padding: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--light2); font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 700; border: none; color: var(--primary); }
.btn-checkout { width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); border: none; padding: 15px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 16px; transition: all .2s; }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.btn-continue { width: 100%; background: var(--light); color: var(--text); border: 1px solid var(--border); padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 8px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all .3s; }
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05)); border: 2px solid rgba(201,168,76,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; color: var(--accent); }
.why-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-text { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ===== BOOKING FORM ===== */
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 7px; font-size: 14px; outline: none; transition: border-color .2s; background: var(--light); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-book { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); border: none; padding: 14px 36px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-book:hover { transform: translateY(-2px); }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.alert-success { background: #e8f5ee; border: 1px solid #c3e6cb; color: #2d6a4f; }
.alert-error { background: #fce8e6; border: 1px solid #f5c6cb; color: #721c24; }
.alert-info { background: #e5f0fc; border: 1px solid #bee5eb; color: #0c5460; }

/* ===== FOOTER ===== */
.main-footer { background: var(--primary-dark); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo i { font-size: 28px; color: var(--accent); }
.footer-logo-main { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); display: block; }
.footer-logo-sub { font-size: 10px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-col p { font-size: 13.5px; color: #888; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 16px; transition: all .2s; }
.footer-socials a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13.5px; color: #888; display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a i { font-size: 11px; color: var(--accent); }
.contact-list li { display: flex; align-items: center; gap: 10px; color: #888; font-size: 13.5px; margin-bottom: 10px; }
.contact-list li i { color: var(--accent); width: 16px; }
.contact-list li a { color: #25d366; }
.footer-brands-icons { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.fbrand { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.fbrand.bmw { background: #1c69d4; color: #fff; }
.fbrand.merc { background: #999; color: #fff; }
.fbrand.audi { background: #e00; color: #fff; }
.fbrand.vw { background: #1d3461; color: #fff; }
.fbrand.porsche { background: #c8aa6e; color: #222; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; text-align: center; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12.5px; color: #666; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.5); z-index: 999; transition: all .3s; }
.whatsapp-float:hover { transform: scale(1.12); background: #1da851; }
.wa-tooltip { position: absolute; right: 70px; background: #333; color: #fff; padding: 6px 12px; border-radius: 6px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 100px; right: 28px; background: var(--primary); color: #fff; width: 42px; height: 42px; border: none; border-radius: 8px; cursor: pointer; font-size: 16px; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: var(--shadow); transition: all .2s; }
.back-to-top:hover { background: var(--accent); color: var(--primary); }
.back-to-top.show { display: flex; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 64px 20px; }
.empty-icon { font-size: 64px; color: #ddd; margin-bottom: 16px; }
.empty-state h3 { font-size: 22px; color: var(--text2); margin-bottom: 8px; }
.empty-state p { color: #aaa; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-link { padding: 8px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text); background: var(--white); transition: all .2s; }
.page-link:hover, .page-link.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { width: 100%; }
  .part-detail { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dropdown { min-width: 300px; flex-direction: column; gap: 0; }
  .nav-brands-quick { display: none; }
  .topbar-right { display: none; }
  .main-header .container { flex-wrap: wrap; }
  .header-search { order: 3; width: 100%; max-width: 100%; }
  .logo { flex: 1; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .parts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-list { display: none; }
  .mobile-menu-toggle { display: block; }
  .nav-list.open { display: flex; flex-direction: column; width: 100%; background: #16213e; }
  .main-nav .container { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-btns { flex-direction: column; }
}
@media (max-width: 400px) {
  .parts-grid { grid-template-columns: 1fr; }
}
