/* ===== Yüzbek Ofis - Büro Mobilyaları - Ana Stil ===== */
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #2d2d2d;
  --color-accent: #c9a227;
  --color-text: #333;
  --color-text-light: #666;
  --color-bg: #fafafa;
  --color-white: #fff;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header & Navigation ===== */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo-link {
  flex-shrink: 0;
}

.logo-link img,
.logo-link svg {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  padding: 10px 6px;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: 6px;
  display: block;
}

.main-nav > ul > li > a:hover {
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.08);
}

.main-nav a.active {
  color: var(--color-accent);
  font-weight: 600;
}

/* Ürünler alt menü (dropdown) - sadece JS ile dropdown-open verilince açılır */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  box-shadow: var(--shadow-hover);
  border-radius: 8px;
  padding: 10px 0 8px;
  margin-top: 2px;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.06);
}
/* Tetikleyici ile dropdown arasında boşluk kalmaması için görünmez köprü */
.has-dropdown > .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

/* Kapalı: dropdown-open yoksa kesinlikle gizle */
.has-dropdown:not(.dropdown-open) .nav-dropdown {
  display: none !important;
}

.has-dropdown.dropdown-open .nav-dropdown {
  display: block !important;
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--color-text);
  border-radius: 0;
  white-space: nowrap;
  display: block;
}

.nav-dropdown a:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-accent);
}

.nav-mobile-actions {
  display: none;
}

.nav-dropdown-toggle {
  display: none;
}

/* Hamburger butonu - sadece mobilde görünür */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger-btn:hover {
  background: rgba(201, 162, 39, 0.12);
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--color-primary);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.header-actions a:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-accent);
}

/* Arama / Sepet: hem .aspx hem .html href'leri için ikon (web header'da görünsün) */
.header-actions a[href*="Arama"]::before,
.header-actions a[href*="arama"]::before {
  content: '🔍';
  font-size: 1.2rem;
}

.header-actions a[href*="Sepet"]::before,
.header-actions a[href*="sepet"]::before {
  content: '🛒';
  font-size: 1.2rem;
}

/* Masaüstünde ikon yanında metin de görünsün; erişilebilirlik için span var */
.header-actions a {
  width: auto;
  padding: 0 12px;
  gap: 6px;
}

.header-actions a span {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Arama Ekranı ===== */
.hero-search {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1e2a2e 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-search::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-search-inner {
  position: relative;
  z-index: 1;
}
.hero-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
}
.hero-search h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-search .lead {
  max-width: 420px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  opacity: 0.88;
  color: rgba(255,255,255,0.9);
}
.search-box-in-hero {
  max-width: 560px;
  margin: 0 auto;
}
.hero-search .search-box {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  border: none;
  padding: 0;
}
.hero-search .search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4px 4px 4px 18px;
}
.hero-search .search-input-icon {
  font-size: 1.15rem;
  opacity: 0.5;
  margin-right: 12px;
  flex-shrink: 0;
}
.hero-search .search-input {
  flex: 1;
  min-width: 0;
  padding: 16px 12px 16px 0;
  font-size: 1.05rem;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.hero-search .search-input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background: transparent;
}
.hero-search .search-btn {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  flex-shrink: 0;
}
.hero-search .search-btn:hover {
  background: #b8921f;
}

.search-page {
  padding: 40px 0 80px;
  background: var(--color-bg);
}
.search-page .search-box-wrap {
  max-width: 560px;
  margin: 0 auto 40px;
}
.search-page .search-box {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--color-white);
  padding: 0;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4px 4px 4px 16px;
}
.search-input-icon {
  font-size: 1.1rem;
  opacity: 0.45;
  margin-right: 10px;
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  min-width: 0;
  padding: 16px 16px 16px 0;
  font-size: 1.05rem;
  font-family: inherit;
  border: none;
  background: transparent;
  color: var(--color-text);
  transition: background var(--transition);
}
.search-input:focus {
  outline: none;
  background: transparent;
}
.search-input::placeholder {
  color: var(--color-text-light);
}
.search-btn {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-primary);
  background: var(--color-accent);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
  flex-shrink: 0;
}
.search-btn:hover {
  background: #b8921f;
  transform: translateY(-1px);
}
.search-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.search-results-wrap {
  margin-top: 0;
  padding-top: 8px;
}
.search-results-title {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.search-results-title strong {
  color: var(--color-accent);
  font-weight: 700;
}
.product-grid-search {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card-search {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card-search:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.product-card-search .product-card-img-wrap {
  aspect-ratio: 4/3;
  background: #f0f0f0;
}
.product-card-search .product-card-title {
  padding: 18px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-primary);
}

.search-empty-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 0;
}
.search-empty-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.search-empty-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.7;
}
.search-empty-msg {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin: 0;
}
.search-empty-msg strong {
  color: var(--color-primary);
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.search-results .result-item {
  padding: 20px;
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.search-results .result-item:hover {
  box-shadow: var(--shadow-hover);
}
.search-results .result-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}
.search-results .result-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}
.search-results .empty-msg {
  text-align: center;
  color: var(--color-text-light);
  padding: 48px 24px;
}

@media (max-width: 640px) {
  .hero-search {
    padding: 40px 0 48px;
  }
  .hero-search .search-box {
    flex-direction: column;
    border-radius: 14px;
  }
  .hero-search .search-input-wrap {
    padding: 14px 14px 10px 14px;
  }
  .hero-search .search-input-icon {
    margin-right: 10px;
  }
  .hero-search .search-btn {
    border-radius: 0 0 14px 14px;
    padding: 14px;
  }
  .product-grid-search {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== Sepet ===== */
.cart-page {
  padding: 40px 0 80px;
}

.cart-empty-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.cart-empty-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.cart-empty-card p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
}

.cart-alert-wrap {
  margin-bottom: 20px;
}

.cart-success-msg {
  display: block;
  padding: 14px 18px;
  background: rgba(46, 125, 50, 0.1);
  color: #1b5e20;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(46, 125, 50, 0.25);
}

.cart-error-msg {
  display: block;
  padding: 14px 18px;
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(198, 40, 40, 0.2);
}

.cart-mail-warning {
  display: block;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(245, 124, 0, 0.1);
  color: #e65100;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 124, 0, 0.25);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.cart-main {
  min-width: 0;
}

.cart-section {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.cart-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fafafa;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.cart-item:hover {
  background: #f5f5f5;
}

.cart-item-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cart-item-title:hover {
  text-decoration: underline;
}

.cart-item-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.cart-item-link:hover {
  text-decoration: underline;
}

.cart-item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-qty {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cart-item-adet-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 4px;
}

.cart-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.cart-item-adet {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}

.cart-item-sil {
  flex-shrink: 0;
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c62828;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.25);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-item-sil:hover {
  background: #c62828;
  color: #fff;
  border-color: #c62828;
}

.cart-sidebar {
  position: sticky;
  top: 100px;
}

.cart-form-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid #eee;
}

.cart-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 8px 0;
}

.cart-form-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cart-form .cart-form-row {
  margin-bottom: 18px;
}

.cart-form .cart-form-row-half {
  display: inline-block;
  width: calc(50% - 8px);
  vertical-align: top;
}

.cart-form .cart-form-row-half:first-of-type {
  margin-right: 12px;
}

.cart-form .cart-form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.cart-form .cart-form-row .required {
  color: #c62828;
}

.cart-form .cart-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.cart-form .cart-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(26, 55, 70, 0.1);
}

.cart-form .cart-form-submit {
  margin-top: 24px;
  margin-bottom: 0;
}

.guvenlik-kodu-wrap .guvenlik-soru {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-right: 8px;
  letter-spacing: 0.02em;
}

.guvenlik-kodu-wrap .cart-input {
  max-width: 120px;
  display: inline-block;
  margin-top: 6px;
}

.contact-form .guvenlik-kodu-wrap .cart-input {
  margin-top: 8px;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-sidebar {
    position: static;
  }
  .cart-form .cart-form-row-half {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .cart-page {
    padding: 24px 0 48px;
  }
  .cart-section,
  .cart-form-card {
    padding: 20px;
  }
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-item-img-wrap {
    width: 100%;
    height: 160px;
  }
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #eee;
  }
}

/* ===== Alt Kategoriler (Ürünler) ===== */
.category-card .sub-categories {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.category-card .sub-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.category-card .sub-categories a {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.category-card .sub-categories a:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-accent);
}

.sub-category-products {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sub-category-products h4,
.main-category-products h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.product-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.product-item:last-child { border-bottom: none; }
.product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.product-info {
  flex: 1;
  min-width: 0;
}
.product-info strong { display: block; margin-bottom: 4px; }
.product-info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0 0 8px;
}
.product-info .link { font-size: 0.875rem; }
.no-products {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Ürün listesi grid (genel: 3 sütun) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-card {
  display: block;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.product-card-img-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
}

.product-card-title {
  display: block;
  padding: 16px 16px 4px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}

.product-card-price {
  display: block;
  padding: 0 16px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Ürünler sayfasındaki kategori ürün kartları (yatay kart görünümü) */
.category-product-card {
  display: flex;
  align-items: stretch;
}

.category-product-card .product-card-img-wrap {
  flex: 0 0 190px;
  max-width: 190px;
  border-right: 1px solid rgba(0,0,0,0.04);
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  gap: 6px;
}

.category-product-card .product-card-title {
  padding: 0;
  font-size: 1.02rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  max-height: 3.6em;
  overflow: hidden;
}

.category-product-card .product-card-price {
  padding: 0;
  margin-top: auto;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .category-product-card {
    flex-direction: column;
  }
  .category-product-card .product-card-img-wrap {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .product-card-body {
    padding: 12px 14px 14px;
  }
}

.product-card-campaign .product-card-price-old {
  display: block;
  padding: 4px 16px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-card-campaign .product-card-price-new {
  display: block;
  padding: 0 16px 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
}

.home-products-campaign .product-card-campaign .product-card-price-new {
  font-size: 0.95rem;
}

.product-card-discount {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(201,162,39,0.12);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Kampanya ürünlerinde resmin sağ üst köşesindeki indirim rozeti */
.product-card-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(198, 40, 40, 0.96);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  z-index: 2;
}

.product-card-discount-badge:empty {
  display: none;
}

/* Ürün detay sayfası: sol resim, sağ açıklama */
.hero-small {
  padding: 40px 0 32px;
}

.hero-small h1 {
  font-size: 1.5rem;
  margin: 0;
}

.urun-detay {
  padding: 48px 0 80px;
}

.urun-detay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
}

.urun-detay-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.urun-detay-price-old {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.urun-detay-price-new {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
}

.urun-detay-img {
  position: sticky;
  top: 100px;
}

.urun-detay-resim {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.urun-galeri {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.urun-galeri-baslik {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.urun-galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.urun-galeri-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.urun-galeri-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.urun-galeri-resim {
  width: 100%;
  height: 100%;
  min-height: 80px;
  object-fit: cover;
  display: block;
}

/* Galeri lightbox (popup) */
.galeri-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.galeri-lightbox.galeri-lightbox-open {
  opacity: 1;
  visibility: visible;
}

.galeri-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeri-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.galeri-lightbox-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
  white-space: nowrap;
}

.galeri-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  z-index: 10001;
}

.galeri-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.galeri-lightbox-prev,
.galeri-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  z-index: 10001;
}

.galeri-lightbox-prev:hover,
.galeri-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.35);
}

.galeri-lightbox-prev {
  left: 20px;
}

.galeri-lightbox-next {
  right: 20px;
}

.urun-detay-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.urun-detay-content p {
  margin-bottom: 16px;
}

.urun-detay-content .urun-aciklama-bos {
  color: var(--color-text-light);
  font-style: italic;
}

.urun-detay-cta {
  margin-top: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition), transform 0.15s ease;
}

.btn-primary:hover {
  background: #d4af37;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  margin-left: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}

.btn-secondary:hover {
  background: #1a3a4a;
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-small {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background var(--transition);
}

.btn-small:hover {
  background: #1a3a4a;
  color: var(--color-white);
}

/* ===== Slider Banner ===== */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-primary);
}

.banner-track {
  display: flex;
  transition: transform 0.5s ease;
}

.banner-slide {
  flex: 0 0 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  background-size: cover;
  background-position: center;
}

.banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.65);
  z-index: 0;
}

.banner-slide .container {
  position: relative;
  z-index: 1;
}

.banner-slide h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.banner-slide p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.banner-slide .btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.banner-slide .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.banner-slide-1 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.banner-slide-2 { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }
.banner-slide-3 { background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%); }

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.banner-prev,
.banner-next {
  position: absolute;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-prev:hover,
.banner-next:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.banner-prev { left: 20px; }
.banner-next { right: 20px; }

.banner-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.banner-dots button:hover {
  background: rgba(255,255,255,0.7);
}

.banner-dots button.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .banner-slide {
    min-height: 380px;
  }
  .banner-prev { left: 10px; }
  .banner-next { right: 10px; }
  .banner-prev, .banner-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== Hero (iç sayfalar için) ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.85);
}

.hero .btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

/* ===== Intro (Ana sayfa) ===== */
.intro-section {
  padding: 80px 0;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.intro-actions .btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.intro-actions .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.intro-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.intro-actions .btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.intro-actions .btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ===== Ana sayfa özel ===== */
.home-banner .btn-banner {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-banner .btn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
  color: var(--color-primary);
}

.home-intro {
  padding: 64px 0;
  background: var(--color-white);
}

.home-products {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f5f5f5 100%);
}

.home-products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-products-more {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 0;
}

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.home-products-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text-light);
}

.home-products-empty .btn {
  margin-top: 20px;
}

.home-about {
  padding: 80px 0;
  background: var(--color-white);
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.home-about-content h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 700;
}

.home-about-content p {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.home-about-content .btn {
  margin-top: 8px;
}

.home-about-visual {
  height: 320px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.home-why {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #f5f5f5 0%, var(--color-bg) 100%);
}
.section-title-simple {
  text-align: center;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 32px;
  font-weight: 700;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.home-why-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.home-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  background: rgba(201,162,39,0.12);
  color: var(--color-accent);
  border-radius: 12px;
  margin-bottom: 16px;
  line-height: 1;
}
.home-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.home-why-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .home-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-why-grid { grid-template-columns: 1fr; }
  .home-why { padding: 48px 0 64px; }
}

/* ===== Bölüm Başlıkları ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ===== Kategoriler ===== */
.categories {
  padding: 80px 0;
}

.back-to-categories {
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--color-accent);
}

.category-products-title {
  margin-bottom: 28px;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.category-products-layout {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 24px 28px;
  margin-top: 16px;
}

.category-products-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.category-products-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 520px;
}

.category-products-grid {
  margin-top: 8px;
}

@media (min-width: 992px) {
  /* Urunler.aspx kategori ürünleri: geniş ekranda 3 sütun */
  .product-grid.category-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  display: block;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.category-card .thumb {
  height: 200px;
  background: linear-gradient(145deg, #e8e8e8 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-primary);
  opacity: 0.75;
}

.category-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-card-title {
  font-size: 1.25rem;
  color: var(--color-primary);
  display: block;
  font-weight: 700;
}

.category-card-count {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.category-card-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 4px;
}

.category-card:hover .category-card-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.category-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.category-card .link {
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-card .link:hover {
  opacity: 0.85;
}

/* ===== Hakkımızda ===== */
.about {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-content {
  max-width: 520px;
}

.about-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-stats .stat {
  text-align: left;
  min-width: 100px;
}

.about-stats .stat strong {
  display: block;
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-stats .stat span {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.about-visual {
  height: 380px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm0-30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM10 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm0-30C10 14.477 14.477 10 20 10s10 4.477 10 10-4.477 10-10 10S10 24.477 10 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ===== İletişim ===== */
.hero-contact .lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}

.contact {
  padding: 64px 0 96px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f5f5f5 50%, var(--color-white) 100%);
}

.contact-section-intro {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-col-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  letter-spacing: -0.02em;
}

.contact-info {
  background: var(--color-white);
  padding: 32px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, #b8921f 100%);
  border-radius: 4px 0 0 4px;
}

.contact-info-inner {
  margin-left: 4px;
}

.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-block:first-child {
  padding-top: 0;
}

.contact-block h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block h3::before {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-accent);
}

.contact-block:nth-of-type(1) h3::before { content: '📍'; }
.contact-block:nth-of-type(2) h3::before { content: '📞'; }
.contact-block:nth-of-type(3) h3::before { content: '📱'; }
.contact-block:nth-of-type(4) h3::before { content: '✉'; }

.contact-info p,
.contact-info a {
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.65;
  font-size: 1rem;
}

.contact-info a {
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--color-accent);
}

.contact-form {
  background: var(--color-white);
  padding: 32px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form .contact-col-title {
  margin-bottom: 28px;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.contact-form label .required {
  color: #c62828;
  margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow 0.2s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
  background: var(--color-white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn-contact {
  padding: 16px 36px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.contact-form .btn-contact:hover {
  background: #b8921f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.contact-form .btn-contact:active {
  transform: translateY(0);
}

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.25);
  border-radius: 12px;
  color: #1b5e20;
  font-weight: 600;
  font-size: 0.98rem;
}

/* ===== Sabit iletişim (WhatsApp + Telefon) ===== */
.float-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-phone,
.float-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-phone:hover,
.float-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  color: var(--color-white);
}

.float-phone {
  background: var(--color-primary);
}

.float-phone-icon {
  font-size: 1.2rem;
}

.float-phone-text {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-whatsapp {
  background: #25d366;
}

.float-whatsapp-icon {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .float-contact {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-phone,
  .float-whatsapp {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .float-phone-text {
    max-width: 120px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px 32px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.footer-brand .logo-link img,
.footer-brand .logo-link svg {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  height: 42px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-item strong {
  color: rgba(255,255,255,0.9);
  min-width: 60px;
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  word-break: break-all;
}

.footer-contact a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-contact .contact-item span {
  color: rgba(255,255,255,0.8);
}

.footer-cta {
  margin-top: 16px;
}

.footer-cta a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-cta a:hover {
  opacity: 0.9;
  color: var(--color-primary);
}

.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    max-width: none;
  }
  .about-visual {
    order: -1;
    height: 280px;
  }
  .contact-section-intro {
    margin-bottom: 32px;
    font-size: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info,
  .contact-form {
    padding: 24px 20px;
  }
  .contact-col-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  .contact-block h3::before {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .product-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-about-visual {
    order: -1;
    height: 260px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .logo-link img {
    margin-top: 10px;
  }
  .hamburger-btn {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .header-actions {
    display: none;
  }
  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s;
    background: var(--color-white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    margin: 0 -24px;
    padding: 0 24px;
  }
  body.menu-open .main-nav {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 8px;
  }
  .main-nav > ul > li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .main-nav > ul > li:last-of-type {
    border-bottom: none;
  }
  .main-nav > ul > li > a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: none;
  }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active {
    background: rgba(201, 162, 39, 0.08);
  }
  .has-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: none;
  }
  .has-dropdown > .nav-dropdown-trigger {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
  }
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background 0.2s ease;
  }
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus {
    background: rgba(201, 162, 39, 0.1);
    outline: none;
  }
  .nav-dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    color: var(--color-text-light);
  }
  .has-dropdown.dropdown-open .nav-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--color-accent);
  }
  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: auto;
    box-shadow: none;
    border: none;
    border-radius: 0 0 8px 8px;
    padding: 0 0 12px 0;
    margin: 0 0 8px 0;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, rgba(201, 162, 39, 0.02) 100%);
    border-left: 3px solid var(--color-accent);
    display: none;
    overflow: hidden;
  }
  .has-dropdown:not(.dropdown-open) .nav-dropdown {
    display: none !important;
  }
  .has-dropdown.dropdown-open .nav-dropdown {
    display: block !important;
  }
  .nav-dropdown li {
    margin: 0;
  }
  .nav-dropdown li + li {
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-dropdown a {
    padding: 12px 16px 12px 20px;
    font-size: 0.95rem;
    display: block;
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-dropdown a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-accent);
  }
  .nav-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 8px;
  }
  .nav-mobile-actions a {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .nav-mobile-actions a:hover {
    background: var(--color-secondary);
  }
  .nav-mobile-actions a:active {
    transform: scale(0.98);
  }
  .hero {
    padding: 60px 0 80px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .product-grid-home {
    grid-template-columns: 1fr;
  }
  .urun-detay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .urun-detay-img {
    position: static;
  }
  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand p {
    max-width: none;
    margin: 0 auto;
  }
  .footer-links ul {
    align-items: center;
  }
  .footer-contact .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .footer-contact .contact-item strong {
    min-width: auto;
  }
  .footer-cta {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .main-nav {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
}
