/* ==========================================================
   GÜVEN ÜNİFORMA - KURUMSAL STİL DOSYASI
   Renkler: 
   - Beyaz: #FFFFFF
   - Lacivert: #102C4C
   - Açık Gri: #F4F6F8
   - Turuncu Vurgu: #F57900
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-navy: #102C4C;
  --color-navy-dark: #0A1C30;
  --color-navy-light: #1A3E66;
  --color-grey-bg: #F4F6F8;
  --color-grey-light: #F8FAFC;
  --color-grey-border: #E2E8F0;
  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  --color-accent-orange: #F57900;
  --color-accent-orange-hover: #E06E00;
  --color-green: #25D366;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(16, 44, 76, 0.08);
  --shadow-lg: 0 10px 25px rgba(16, 44, 76, 0.12);
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

/* ----------------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------------- */
.site-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
}

.brand-logo .brand-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-logo .brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--color-navy);
}

.nav-link.active {
  color: var(--color-navy);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-navy);
  border-radius: 2px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.dropdown-item:hover {
  background-color: var(--color-grey-bg);
  color: var(--color-accent-orange);
}

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

.btn-header-quote {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header-quote:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-1px);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-navy);
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero-section {
  padding: 48px 0 32px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.hero-badge-top {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 121, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 121, 0, 0.35);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-grey-border);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--color-grey-bg);
  border-color: var(--color-navy);
}

.hero-bottom-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-media-wrapper {
  position: relative;
}

.hero-top-tagline {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  z-index: 2;
  text-align: right;
  line-height: 1.4;
}

.hero-img-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #E2E8F0;
}

.hero-img-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* ----------------------------------------------------------
   ADVANTAGES STRIP
   ---------------------------------------------------------- */
.advantages-section {
  padding: 36px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-border);
  border-bottom: 1px solid var(--color-grey-border);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.advantage-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
}

.advantage-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.advantage-content p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ----------------------------------------------------------
   COLLECTIONS / CATEGORIES SECTION
   ---------------------------------------------------------- */
.categories-section {
  padding: 72px 0;
  background-color: var(--color-white);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}

.section-subtitle-text {
  max-width: 460px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.section-view-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 1.5px solid var(--color-navy);
  padding-bottom: 2px;
}

.section-view-all:hover {
  color: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.category-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-grey-bg);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img img {
  transform: scale(1.04);
}

.category-card-body {
  padding: 16px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-card-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.category-card-info p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.category-card-arrow {
  color: var(--color-navy);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-card:hover .category-card-arrow {
  transform: translateX(4px);
  color: var(--color-accent-orange);
}

/* ----------------------------------------------------------
   CUSTOM PRODUCTION SECTION
   ---------------------------------------------------------- */
.custom-production-section {
  padding: 72px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-border);
}

.custom-prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.custom-prod-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.custom-prod-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.custom-prod-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(16, 44, 76, 0.9);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.custom-prod-content .section-label {
  margin-bottom: 10px;
}

.custom-prod-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.custom-prod-content h3.subheading {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.custom-prod-content p.desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.prod-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prod-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-grey-border);
}

.prod-step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prod-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-step-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.prod-step-body p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------------
   CTA BANNER (NAVY BAND)
   ---------------------------------------------------------- */
.cta-banner {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 48px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 15px;
  color: #94A3B8;
}

.btn-cta-orange {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-cta-orange:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--color-white);
  padding: 48px 0 24px;
  border-top: 1px solid var(--color-grey-border);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.footer-nav a:hover {
  color: var(--color-accent-orange);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.footer-divider {
  height: 1px;
  background-color: var(--color-grey-border);
  margin-bottom: 24px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom-links a {
  color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-navy);
}

/* ----------------------------------------------------------
   FLOATING WHATSAPP & MOBILE ACTION BAR
   ---------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-grey-border);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

.mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-bar-btn {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.mobile-bar-btn.wa {
  background-color: #E8F8EE;
  color: #128C7E;
  border: 1px solid #C4EED0;
}

.mobile-bar-btn.quote {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
}

/* İletişim Sayfası Grid & Bilgi Kartı */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Kurumsal Sayfası 2 Kolon Grid */
.advantages-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Mobil Menü Arka Plan Perdesi (Backdrop) */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 44, 76, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ----------------------------------------------------------
   INNER PAGES (URUNLER, DETAY, KURUMSAL, ILETISIM)
   ---------------------------------------------------------- */
.page-hero {
  background-color: var(--color-grey-bg);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-grey-border);
  text-align: center;
}

.page-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--color-grey-bg);
  color: var(--color-text-dark);
  border: 1px solid transparent;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.product-thumb {
  height: 310px;
  background-color: #F8FAFC;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 44, 76, 0.85);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-summary {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-grey-border);
  padding-top: 14px;
}

.btn-card-detail {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-card-detail:hover {
  color: var(--color-accent-orange);
}

.btn-card-quote {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
}

.btn-card-quote:hover {
  background-color: var(--color-accent-orange-hover);
}

/* ----------------------------------------------------------
   PRODUCT DETAIL PAGE
   ---------------------------------------------------------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  margin-bottom: 14px;
  background-color: #F8FAFC;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumb-item {
  width: 84px;
  height: 84px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: border-color 0.2s ease;
}

.gallery-thumb-item.active {
  border-color: var(--color-accent-orange);
  background-color: #FFF;
}

.gallery-thumb-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.detail-badge {
  display: inline-block;
  background-color: var(--color-grey-bg);
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.detail-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.detail-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.spec-box {
  background-color: var(--color-grey-light);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.spec-row {
  display: flex;
  margin-bottom: 12px;
  font-size: 14px;
}

.spec-row:last-child {
  margin-bottom: 0;
}

.spec-label {
  width: 140px;
  font-weight: 700;
  color: var(--color-navy);
  flex-shrink: 0;
}

.spec-value {
  color: var(--color-text-dark);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-detail-wa {
  background-color: #25D366;
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-detail-wa:hover {
  background-color: #20BD5A;
}

.btn-detail-quote {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-detail-quote:hover {
  background-color: var(--color-navy-dark);
}

/* ----------------------------------------------------------
   QUOTE FORM & MODAL
   ---------------------------------------------------------- */
.quote-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--color-grey-border);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-orange);
  box-shadow: 0 0 0 3px rgba(245, 121, 0, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 16px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: min(560px, calc(100vw - 32px));
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--color-grey-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal-body {
  padding: 24px 28px;
}

/* Alert notifications */
.alert {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.alert-error {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* ----------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 868px) {
  .header-inner {
    height: 70px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px 20px 32px;
    border-bottom: 1px solid var(--color-grey-border);
    box-shadow: 0 12px 30px rgba(16, 44, 76, 0.15);
    gap: 4px;
    align-items: stretch;
    z-index: 1000;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav .nav-link {
    padding: 12px 14px;
    font-size: 15.5px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
  }
  .main-nav .nav-link:hover, .main-nav .nav-link.active {
    background-color: var(--color-grey-bg);
    color: var(--color-navy);
  }
  .main-nav .dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dropdown-item {
    padding: 10px 14px;
    font-size: 14.5px;
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 6px;
  }
  .dropdown-item:hover {
    background-color: var(--color-grey-bg);
  }
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    cursor: pointer;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }

  /* Hero & Content Layouts */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-img-container img {
    height: 360px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .custom-prod-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .custom-prod-media img {
    height: 320px;
    object-fit: cover;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Catalog Toolbar & Category Filter Bar Swipe */
  .catalog-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    justify-content: flex-start;
    padding: 4px 4px 12px;
    margin: 16px 0 28px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 13.5px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  /* Gallery Main & Thumbs */
  .gallery-main {
    height: 350px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-main img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }
  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }
  .thumb-item {
    flex-shrink: 0;
    width: 68px;
    height: 82px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Mobile Bottom Bar Visible & Hide Redundant Floating WA */
  .floating-whatsapp {
    display: none !important;
  }
  .mobile-bottom-bar {
    display: block;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 999;
  }
  .mobile-bar-btn {
    min-height: 44px;
  }
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }
  .site-footer {
    padding-bottom: 24px;
  }

  /* Forms & Input iOS Auto-Zoom Prevention */
  .form-control, .catalog-search-input, .qty-input {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 27px;
  }
  .hero-desc {
    font-size: 14.5px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-cards-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card-img {
    height: 290px;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    padding: 24px 18px;
  }
  .quote-form-card {
    padding: 24px 18px;
  }
  .product-config-box {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-title {
    font-size: 25px;
    line-height: 1.25;
  }
  .hero-badge {
    font-size: 11.5px;
    padding: 5px 12px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
  .btn-header-quote {
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .chips-container {
    gap: 6px;
  }
  .size-chip {
    padding: 7px 12px;
    font-size: 13px;
  }
  .color-chip {
    padding: 6px 12px;
    font-size: 12.5px;
  }
  .page-hero {
    padding: 34px 0;
  }
  .page-hero h1 {
    font-size: 25px;
  }
  .page-hero p {
    font-size: 14px;
  }
  .gallery-main {
    height: 300px;
  }
}

/* ----------------------------------------------------------
   CATALOG SEARCH BAR & EMPTY STATE
   ---------------------------------------------------------- */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.catalog-search-form {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.catalog-search-input {
  width: 100%;
  padding: 12px 48px 12px 18px;
  border: 1.5px solid var(--color-grey-border);
  border-radius: 30px;
  font-size: 14.5px;
  background-color: var(--color-white);
  color: var(--color-text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(16, 44, 76, 0.1);
}

.catalog-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.catalog-search-btn:hover {
  background: var(--color-accent-orange);
}

.search-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF3FC;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: -6px;
}

.search-active-badge a {
  color: #EF4444;
  font-weight: 700;
}

/* ----------------------------------------------------------
   INTERACTIVE PRODUCT DETAIL SELECTORS (BEDEN, RENK, ADET)
   ---------------------------------------------------------- */
.product-config-box {
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}

.selector-group {
  margin-bottom: 18px;
}

.selector-group:last-child {
  margin-bottom: 0;
}

.selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.selector-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.selector-selected-val {
  font-weight: 600;
  color: var(--color-accent-orange);
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Beden Butonları */
.size-chip {
  padding: 8px 16px;
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-border);
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.size-chip:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.size-chip.selected {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 2px 6px rgba(16, 44, 76, 0.2);
}

/* Renk Çipleri */
.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.color-chip:hover {
  border-color: var(--color-navy);
}

.color-chip.selected {
  border-color: var(--color-accent-orange);
  background: #FFF9F2;
  color: var(--color-navy);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(245, 121, 0, 0.15);
}

.color-swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  flex-shrink: 0;
}

/* Adet Seçici */
.quantity-picker {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-grey-border);
  border-radius: 6px;
  background: var(--color-white);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--color-grey-bg);
}

.qty-input {
  width: 70px;
  height: 38px;
  border: none;
  border-left: 1px solid var(--color-grey-border);
  border-right: 1px solid var(--color-grey-border);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.selection-warning {
  display: none;
  background: #FEF2F2;
  border: 1px solid #F87171;
  color: #B91C1C;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.selection-warning.visible {
  display: block;
}

