/* Ozgu Butik - Kadın Giyim E-Ticaret */
:root {
  --color-bg: #faf9f7;
  --color-white: #fff;
  --color-text: #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-accent: #8b7355;
  --color-accent-dark: #6b5944;
  --color-border: #e8e6e3;
  --color-sale: #c41e3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --header-height: 56px;
  --promo-height: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  overflow-x: hidden;
  max-width: 100%;
}

/* Promo Bar */
.promo-bar {
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
}

.promo-bar p {
  margin: 0;
}

/* Header */
.main-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

.main-nav {
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.nav-item a:hover {
  color: var(--color-accent);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
}

.dropdown li a {
  padding: 10px 20px;
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.search-input {
  width: 140px;
  padding: 8px 12px;
  border: none;
  font-size: 13px;
  font-family: inherit;
}

.search-input:focus {
  outline: none;
}

.search-btn {
  background: var(--color-bg);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--color-text);
}

.icon-link:hover {
  color: var(--color-accent);
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty,
.cart-count[data-count="0"] {
  display: none;
}

/* Quick Links */
.quick-links-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}

.quick-links-bar a {
  color: var(--color-text-muted);
}

.quick-links-bar a:hover {
  color: var(--color-accent);
}

.quick-links-bar .lang {
  margin-left: auto;
  color: var(--color-text-muted);
}

/* Hero Banners - Kategori alanı */
.hero-banners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  background: linear-gradient(180deg, #faf8f6 0%, #fff 100%);
}

.banner-item {
  background: linear-gradient(145deg, #f5f0eb 0%, #ebe4dd 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(139, 115, 85, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.15);
  border-color: rgba(139, 115, 85, 0.25);
  background: linear-gradient(145deg, #ebe4dd 0%, #e0d6cc 100%);
}

.banner-item a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.banner-item:hover a {
  color: var(--color-accent-dark);
}

/* İndirim kutusu vurgulu */
.banner-item.banner-kasim {
  background: linear-gradient(145deg, #e8ddd4 0%, #d9c9bc 100%);
  border-color: rgba(139, 115, 85, 0.2);
}

.banner-item.banner-kasim:hover {
  background: linear-gradient(145deg, #d9c9bc 0%, #c4a484 100%);
}

.banner-item.banner-kasim a {
  color: var(--color-accent-dark);
}

/* Section */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
  overflow-x: hidden;
}

.section.alt-bg {
  background: var(--color-white);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.link-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
}

.link-more:hover {
  text-decoration: underline;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--color-accent);
}

.product-card a {
  display: block;
}

.product-image {
  aspect-ratio: 3/4;
  background: #f0eeeb;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  flex-shrink: 0;
  contain: layout;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-sale);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  text-transform: uppercase;
}

.product-badge.new {
  background: var(--color-accent);
}

.product-badge.campaign {
  background: #2e7d32;
}

.product-info {
  padding: 16px;
}

.product-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.product-price .old {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.product-price .sale {
  color: var(--color-sale);
}

/* Footer */
.main-footer {
  background: var(--color-text);
  color: #b0b0b0;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #b0b0b0;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--color-white);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 14px;
  border: 1px solid #555;
  background: transparent;
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
}

.newsletter-form button:hover {
  background: var(--color-accent-dark);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #444;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  padding: 32px;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-text);
}

.login-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 8px 0;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 12px;
}

.login-form label:not(.checkbox-label) {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.forgot-link {
  display: block;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-bottom: 8px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Page Title (category, cart) */
.page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 16px;
  overflow-x: hidden;
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}

/* Category Page */
.category-toolbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Product Detail Page */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  overflow-x: hidden;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--promo-height) + 60px);
}

/* Mobil: yatay kaydırmalı slider (tek alan, sağa kaydırınca foto değişir) */
.product-gallery-slider {
  display: none;
}

.product-gallery-slider .product-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  aspect-ratio: 3/4;
  min-height: 200px;
  background: #f0eeeb;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-gallery-slider .product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-gallery-desktop {
  display: block;
}

.product-gallery .main-image {
  aspect-ratio: 3/4;
  background: #f0eeeb;
  margin-bottom: 12px;
  overflow: hidden;
  min-height: 240px;
  contain: layout;
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-gallery .product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-gallery .product-thumbnails .thumb-btn {
  width: 70px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.product-gallery .product-thumbnails .thumb-btn.active {
  border-color: var(--color-accent);
}

.product-gallery .product-thumbnails .thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info .product-brand {
  margin-bottom: 8px;
}

.product-detail-info .product-name {
  font-size: 1.25rem;
  -webkit-line-clamp: unset;
  margin-bottom: 16px;
}

.product-detail-info .product-price {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.product-options {
  margin-bottom: 24px;
}

.product-options label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-options select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 16px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: var(--color-accent-dark);
}

/* Cart Page */
.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  overflow-x: hidden;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.cart-table th,
.cart-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cart-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.cart-item-image {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: #f0eeeb;
}

.cart-summary {
  margin-top: 24px;
  max-width: 400px;
  margin-left: auto;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.cart-summary h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cart-summary .total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: 12px;
}

.empty-cart {
  text-align: center;
  padding: 60px 24px;
}

.empty-cart h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

/* Ödeme sayfası (Checkout) - Trendyol/Dolap tarzı */
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  background: #f5f5f5;
  min-height: 60vh;
  overflow-x: hidden;
}

.checkout-page .page-header {
  margin-bottom: 20px;
}

.checkout-page .page-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.checkout-form-wrap {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-section-title {
  margin: 0 0 24px !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  color: var(--color-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-form .form-row {
  margin-bottom: 18px;
}

.checkout-form .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.checkout-form .form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.checkout-form .form-row.two-cols label:nth-child(1) { grid-column: 1; }
.checkout-form .form-row.two-cols label:nth-child(2) { grid-column: 2; }
.checkout-form .form-row.two-cols input:nth-child(3) { grid-column: 1; }
.checkout-form .form-row.two-cols input:nth-child(4) { grid-column: 2; }

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: #999;
}

.checkout-form textarea {
  resize: vertical;
  min-height: 80px;
}

.checkout-form .btn-block {
  width: 100%;
  margin-top: 24px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
}

.checkout-form .btn-block:hover {
  background: var(--color-accent-dark);
}

.payment-method-info {
  background: #f9f8f6;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0 0;
}

.payment-method-info h3 {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.payment-method-info p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.form-errors {
  list-style: none;
  margin: 0 0 20px;
  padding: 14px 18px;
  background: #fff5f5;
  border: 1px solid #fcc;
  border-radius: 8px;
  font-size: 13px;
  color: #c41e3a;
}

.checkout-sidebar {
  position: sticky;
  top: 90px;
}

.checkout-order-summary {
  background: var(--color-white);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.checkout-summary-title {
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 18px 20px !important;
  border-bottom: 1px solid var(--color-border);
  background: #fafafa;
}

.checkout-product-list {
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  max-height: 320px;
  overflow-y: auto;
}

.checkout-product-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-product-item:last-child {
  border-bottom: none;
}

.checkout-product-img {
  width: 60px;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0eeeb;
  flex-shrink: 0;
}

.checkout-product-detail {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-product-detail strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.checkout-product-detail span {
  font-size: 13px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-product-qty {
  font-size: 12px !important;
  color: var(--color-text-muted);
}

.checkout-product-total {
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--color-text);
}

.checkout-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  border-top: 2px solid var(--color-border);
  font-size: 1.125rem;
  font-weight: 700;
  background: #fafafa;
}

.checkout-success {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.checkout-success h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  color: var(--color-accent-dark);
}

.checkout-success p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.bank-info {
  text-align: left;
  background: #f8f6f3;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.bank-info h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.bank-info p {
  margin: 0 0 8px;
  font-size: 14px;
}

.bank-note {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: var(--color-text-muted);
}

.checkout-success .order-id-text {
  margin-bottom: 8px;
  font-size: 1rem;
}

.dekont-upload-wrap {
  text-align: left;
  background: #f9f8f6;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
  margin: 24px 0;
}

.dekont-upload-wrap h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
}

.dekont-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.dekont-input {
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 14px;
  max-width: 100%;
}

.dekont-ok {
  margin: 0;
  color: var(--color-accent-dark);
  font-weight: 500;
}

.checkout-whatsapp-page .whatsapp-message {
  margin-bottom: 28px;
  font-size: 1rem;
}

.whatsapp-block {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 36px;
  background: #e8f5e9;
  border: 2px solid #25d366;
  border-radius: 12px;
  color: #1b5e20;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
}

.whatsapp-block:hover {
  background: #c8e6c9;
  color: #1b5e20;
}

.whatsapp-logo {
  display: inline-flex;
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-logo svg {
  display: block;
  width: 56px;
  height: 56px;
}

.whatsapp-label {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.whatsapp-num {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.arama-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  color: #2d2a26;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.arama-block:hover {
  background: #f8f8f8;
  border-color: #8b7355;
  color: #2d2a26;
}

.arama-logo {
  display: inline-flex;
  color: #2d2a26;
  flex-shrink: 0;
}

.arama-logo svg {
  display: block;
  width: 56px;
  height: 56px;
}

.arama-label {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
  }

  .checkout-form-wrap {
    padding: 24px 20px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-banners {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-gallery {
    position: static;
    margin-bottom: 20px;
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-gallery-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    max-height: 55vh;
    min-height: 220px;
    max-width: 100%;
  }

  .product-gallery-slider::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-slider .product-gallery-slide {
    min-height: 220px;
    max-height: 55vh;
    aspect-ratio: 3/4;
  }

  .product-gallery-desktop {
    display: none;
  }

  .product-detail {
    padding: 20px 16px 32px;
    gap: 24px;
  }

  .product-image {
    min-height: 180px;
  }

  .product-gallery .main-image {
    min-height: 240px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--promo-height) + var(--header-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item.has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav-item.has-dropdown.is-open .dropdown {
    max-height: 500px;
  }

  .search-wrap {
    display: none;
  }

  .quick-links-bar {
    display: none;
  }

  .hero-banners {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cart-table th:nth-child(n+3),
  .cart-table td:nth-child(n+3) {
    display: none;
  }

  .cart-item-image {
    width: 60px;
    height: 75px;
  }
}

.hidden {
  display: none !important;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-gallery-slider {
    max-height: 50vh;
    min-height: 200px;
  }

  .product-gallery-slider .product-gallery-slide {
    max-height: 50vh;
    min-height: 200px;
  }

  .product-detail-info .product-name {
    font-size: 1.1rem;
  }

  .product-detail-info .product-price {
    font-size: 1.25rem;
  }

  .section {
    padding: 24px 16px;
  }

  .header-inner {
    padding: 0 16px;
  }
}
