﻿/* =================================================================
   ÜNALLAR OTO YEDEK PARÇA — 100% RESPONSIVE EXECUTIVE STYLESHEET
   Typography: Urbanist (Headings) + Inter (Body Copy)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Urbanist:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  --copper: #C86E28;
  --copper-hover: #AA5819;
  --copper-light: #F7ECD9;
  --copper-glow: rgba(200, 110, 40, 0.32);
  
  --amber: #E89E50;
  --amber-glow: rgba(232, 158, 80, 0.25);
  
  --wa-green: #25D366;
  --wa-hover: #1EBE59;
  --wa-glow: rgba(37, 211, 102, 0.4);
  
  --bg-main: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-light: #F2EADF;
  --bg-dark: #12100E;
  --bg-dark-card: #1B1815;
  
  --text-dark: #110F0E;
  --text-body: #3E3730;
  --text-muted: #786C60;
  
  --border-light: #E7DCBD;
  --border-subtle: #EBE0CD;
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 20px rgba(20, 17, 15, 0.05);
  --shadow-md: 0 12px 36px rgba(200, 110, 40, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 17, 15, 0.14);
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP ANNOUNCEMENT STRIP */
.top-announcement {
  background: #090807;
  color: #D4C9BD;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

.top-announcement-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-status-dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--wa-green);
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.announcement-links a {
  color: #D4C9BD;
}

.announcement-links a:hover {
  color: #FFF;
}

.top-wa-pill {
  color: var(--wa-green) !important;
  font-weight: 700;
}

/* MAIN HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  transition: var(--transition);
}

.main-header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box-glow {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--copper);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

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

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: 0.15em;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-anchor {
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.nav-anchor::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2.5px;
  background: var(--copper);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-anchor:hover, .nav-anchor.active {
  color: var(--copper);
}

.nav-anchor:hover::after, .nav-anchor.active::after {
  width: 100%;
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-wa-button {
  background: linear-gradient(135deg, #25D366 0%, #1EBE59 100%);
  color: #FFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--wa-glow);
  transition: var(--transition);
}

.header-wa-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.wa-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wa-btn-text span {
  font-size: 0.65rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wa-btn-text strong {
  font-size: 0.9rem;
  font-weight: 800;
  font-family: 'Urbanist', sans-serif;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
}

/* HERO ULTRA SECTION */
.hero-ultra {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #FAF7F2 0%, #F1E7DA 100%);
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 110, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--copper-light);
  color: var(--copper);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(200, 110, 40, 0.25);
  font-family: 'Inter', sans-serif;
}

.hero-headline-ultra {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
}

.gradient-text-copper {
  color: var(--copper);
  position: relative;
}

.hero-paragraph {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Interactive Search Card */
.interactive-search-card {
  background: var(--bg-card);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-light);
  margin-bottom: 32px;
}

.search-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sch-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Urbanist', sans-serif;
}

.glow-copper { color: var(--copper); }

.sch-badge {
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa-green);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.search-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
}

.input-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field-wrap label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-field-wrap input {
  padding: 12px 14px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  background: #FAF8F5;
  transition: var(--transition);
}

.input-field-wrap input:focus {
  border-color: var(--copper);
  background: #FFF;
  box-shadow: 0 0 0 3px var(--copper-glow);
}

.btn-search-trigger {
  align-self: flex-end;
  background: var(--wa-green);
  color: #FFF;
  border: none;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--wa-glow);
}

.btn-search-trigger:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
}

.search-card-footer {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  font-weight: 600;
}

.text-green { color: var(--wa-green); }

/* Hero Stats Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.su-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--copper);
  font-family: 'Urbanist', sans-serif;
  line-height: 1;
}

.su-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.stat-separator {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* HERO VISUAL STACK */
.hero-visual-column {
  position: relative;
}

.visual-card-stack {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-main-card {
  width: 350px;
  max-width: 100%;
  background: var(--bg-dark-card);
  color: #FFF;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.75rem;
}

.status-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wa-green);
  font-weight: 800;
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--wa-green);
}

.part-location-tag {
  color: #B4A89C;
}

.hero-card-brand-display {
  margin-bottom: 20px;
}

.hc-logo-ring {
  width: 76px; height: 76px;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--copper);
  box-shadow: 0 0 25px var(--copper-glow);
}

.hc-logo-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-card-brand-display h3 {
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 4px;
  font-family: 'Urbanist', sans-serif;
}

.hero-card-brand-display p {
  font-size: 0.75rem;
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-card-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

.cr-icon {
  width: 34px; height: 34px;
  background: rgba(200, 110, 40, 0.2);
  color: var(--copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-amber { background: rgba(232, 158, 80, 0.2); color: var(--amber); }
.icon-green { background: rgba(37, 211, 102, 0.2); color: var(--wa-green); }

.check-row strong {
  display: block;
  font-size: 0.85rem;
  color: #FFF;
  font-family: 'Urbanist', sans-serif;
}

.check-row span {
  font-size: 0.75rem;
  color: #A4988C;
}

.hero-card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--wa-green);
  color: #FFF;
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  box-shadow: var(--wa-glow);
  font-family: 'Urbanist', sans-serif;
}

.hero-card-cta-btn:hover {
  background: var(--wa-hover);
}

.float-card {
  position: absolute;
  background: #FFF;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnim 4s ease-in-out infinite;
}

.fc-icon {
  width: 40px; height: 40px;
  background: var(--copper-light);
  color: var(--copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.green-fc {
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
}

.float-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
}

.float-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.float-card-1 { top: 20px; left: -25px; }
.float-card-2 { bottom: 20px; right: -25px; animation-delay: 2s; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* MARQUEE RUNNING STRIP */
.marquee-running-strip {
  background: #090807;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marqueeRun 28s linear infinite;
}

.marquee-track span {
  color: #E2D7CC;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-family: 'Urbanist', sans-serif;
}

.m-dot { color: var(--copper); }

@keyframes marqueeRun {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION GLOBAL */
.section-block {
  padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

.text-white { color: #FFF !important; }
.text-gray { color: #A4988C !important; }
.text-copper { color: var(--copper) !important; }
.text-center { text-align: center; }
.mt-5 { margin-top: 36px; }

.section-header-center {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Urbanist', sans-serif;
}

.tag-copper { color: var(--amber) !important; }

.section-title-main {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  font-family: 'Urbanist', sans-serif;
}

.section-sub-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* HAKKIMIZDA */
.about-ultra-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-frame-box {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, #EAE0D2 0%, #DBCBBA 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.about-center-card {
  text-align: center;
  background: var(--bg-card);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.ac-icon {
  font-size: 3.2rem;
  color: var(--copper);
  margin-bottom: 8px;
}

.ac-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
  line-height: 1;
}

.ac-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: 0.15em;
}

.ac-sub {
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 6px;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-body {
  color: var(--text-body);
  margin-bottom: 28px;
}

.about-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.am-card {
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.am-icon {
  width: 44px; height: 44px;
  background: var(--copper-light);
  color: var(--copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.icon-copper { background: rgba(232, 158, 80, 0.15); color: var(--amber); }

.am-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Urbanist', sans-serif;
}

.am-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-copper-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #FFF;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--wa-glow);
  font-size: 1rem;
  font-family: 'Urbanist', sans-serif;
}

.btn-copper-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
}

/* FEATURED SHOWCASE GRID */
.featured-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.showcase-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--copper);
  box-shadow: 0 16px 40px rgba(200, 110, 40, 0.2);
}

.sc-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(200, 110, 40, 0.2);
  color: #F6D6B4;
  border: 1px solid rgba(200, 110, 40, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.sc-icon-header {
  width: 56px; height: 56px;
  background: rgba(200, 110, 40, 0.15);
  color: var(--copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.icon-blue { background: rgba(43, 112, 200, 0.15); color: #4489E0; }
.icon-amber { background: rgba(232, 158, 80, 0.15); color: var(--amber); }
.icon-purple { background: rgba(142, 68, 219, 0.15); color: #A664E8; }

.showcase-card h3 {
  font-size: 1.25rem;
  color: #FFF;
  margin-bottom: 10px;
  font-family: 'Urbanist', sans-serif;
}

.sc-desc {
  font-size: 0.88rem;
  color: #A4988C;
  margin-bottom: 18px;
  flex-grow: 1;
}

.sc-specs {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.btn-sc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--wa-green);
  color: #FFF;
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--wa-glow);
  font-family: 'Urbanist', sans-serif;
}

.btn-sc-wa:hover { background: var(--wa-hover); }

/* CATALOG & FILTERING */
.catalog-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--copper);
  color: #FFF;
  border-color: var(--copper);
  box-shadow: var(--shadow-md);
}

.catalog-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.catalog-item-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.catalog-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper);
}

.cic-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--copper-light);
  color: var(--copper);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.cic-icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.icon-glow-orange { background: rgba(200, 110, 40, 0.15); color: var(--copper); }
.icon-glow-amber { background: rgba(232, 158, 80, 0.15); color: var(--amber); }
.icon-glow-blue { background: rgba(43, 112, 200, 0.15); color: #2B70C8; }
.icon-glow-red { background: rgba(219, 68, 85, 0.15); color: #DB4455; }
.icon-glow-green { background: rgba(37, 211, 102, 0.15); color: var(--wa-green); }
.icon-glow-purple { background: rgba(142, 68, 219, 0.15); color: #8E44DB; }

.catalog-item-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: 'Urbanist', sans-serif;
}

.catalog-item-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.cic-list {
  margin-bottom: 24px;
  flex-grow: 1;
}

.cic-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cic-list i { color: var(--copper); font-size: 0.8rem; }

.btn-cic-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--copper-light);
  color: var(--copper-hover);
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  transition: var(--transition);
  font-family: 'Urbanist', sans-serif;
}

.btn-cic-wa:hover {
  background: var(--wa-green);
  color: #FFF;
  box-shadow: var(--wa-glow);
}

/* BRANDS TABBED SHOWCASE */
.brand-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bt-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  color: var(--text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  transition: var(--transition);
}

.bt-btn.active, .bt-btn:hover {
  background: var(--copper);
  color: #FFF;
  border-color: var(--copper);
  box-shadow: var(--shadow-md);
}

.brand-panel { display: none; }
.brand-panel.active { display: block; animation: fadeIn 0.4s ease; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--bg-card);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper);
}

.brand-card i {
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 12px;
}

.brand-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: 'Urbanist', sans-serif;
}

.brand-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* SSS ACCORDION */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-icon {
  color: var(--copper);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.faq-item.active .faq-content {
  max-height: 250px;
  padding: 0 22px 20px;
}

/* CONTACT & MAP */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.wa-c-card {
  border-color: var(--wa-green);
  background: #F4FAF6;
}

.cc-icon {
  width: 46px; height: 46px;
  background: var(--copper-light);
  color: var(--copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.icon-wa {
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
}

.c-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: 'Urbanist', sans-serif;
}

.c-card p, .c-card a {
  color: var(--text-body);
  font-size: 0.92rem;
}

.c-card a {
  font-weight: 800;
  color: var(--wa-green);
}

.cc-sub {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.btn-location-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: #FFF;
  font-weight: 800;
  padding: 15px;
  border-radius: var(--radius-sm);
  box-shadow: var(--wa-glow);
  font-size: 0.98rem;
  font-family: 'Urbanist', sans-serif;
}

.btn-location-wa:hover { background: var(--wa-hover); }

.contact-map-col {
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

/* FOOTER */
.main-footer {
  background: #090807;
  color: #B0A498;
  padding-top: 70px;
  font-size: 0.9rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.f-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.f-logo-wrap img {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.f-logo-wrap h3 {
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1;
  font-family: 'Urbanist', sans-serif;
}

.f-logo-wrap span {
  font-size: 0.68rem;
  color: var(--copper);
  letter-spacing: 0.12em;
}

.f-desc { line-height: 1.6; margin-bottom: 20px; font-size: 0.88rem; }
.f-socials { display: flex; gap: 10px; }

.s-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.s-link:hover { background: var(--copper); }
.wa-s:hover { background: var(--wa-green); }

.f-col h4 {
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-family: 'Urbanist', sans-serif;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-links a:hover { color: var(--copper); }

.f-contact-item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.f-contact-item i { color: var(--copper); margin-top: 4px; }
.f-contact-item a { color: var(--wa-green); font-weight: 800; }

.footer-bottom-bar {
  background: #050404;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}

.f-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* FLOATING WHATSAPP CTA WIDGET */
.floating-wa-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--wa-green);
  color: #FFF;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--wa-glow);
  z-index: 99999;
  animation: waPulse 2.5s infinite;
  transition: var(--transition);
}

.floating-wa-widget:hover {
  transform: scale(1.08);
  background: var(--wa-hover);
}

.wa-widget-tooltip {
  position: absolute;
  right: 76px;
  background: #14110F;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  font-family: 'Urbanist', sans-serif;
}

.floating-wa-widget:hover .wa-widget-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   EXHAUSTIVE 100% MOBILE RESPONSIVE MEDIA QUERIES (ZERO SHIFT)
   ================================================================= */
@media (max-width: 992px) {
  .hero-layout-grid, .about-ultra-grid, .contact-main-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
  .hero-headline-ultra {
    font-size: 2.6rem !important;
  }
  .hero-paragraph {
    margin-left: auto;
    margin-right: auto;
  }
  .search-form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .btn-search-trigger {
    width: 100%;
    justify-content: center;
    padding: 15px;
  }
  .hero-visual-column {
    display: none;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-announcement-flex {
    flex-direction: column !important;
    text-align: center;
    gap: 6px;
  }
  .announcement-links {
    justify-content: center;
    gap: 12px;
  }
  .desktop-nav {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    display: none;
    border-bottom: 3px solid var(--copper);
    z-index: 9999;
  }
  .desktop-nav.active {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .mobile-toggle-btn {
    display: block !important;
  }
  .header-wa-button {
    display: none !important;
  }
  .section-block {
    padding: 60px 0;
  }
  .section-title-main {
    font-size: 2rem !important;
  }
  .about-frame-box {
    height: 320px;
  }
  .about-mini-cards {
    grid-template-columns: 1fr !important;
  }
  .footer-top-grid {
    grid-template-columns: 1fr !important;
  }
  .f-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .contact-map-col {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px !important;
  }
  .hero-headline-ultra {
    font-size: 2rem !important;
    line-height: 1.15;
  }
  .hero-paragraph {
    font-size: 1rem !important;
  }
  .interactive-search-card {
    padding: 20px 16px !important;
  }
  .search-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .search-card-footer {
    flex-direction: column;
    gap: 6px;
  }
  .hero-stats-row {
    justify-content: space-around;
    gap: 12px;
  }
  .stat-separator {
    display: none;
  }
  .su-number {
    font-size: 1.6rem !important;
  }
  .catalog-grid-layout {
    grid-template-columns: 1fr !important;
  }
  .featured-showcase-grid {
    grid-template-columns: 1fr !important;
  }
  .brands-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .floating-wa-widget {
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 1.9rem !important;
  }
  .wa-widget-tooltip {
    display: none !important;
  }
  .c-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}