/* Magic Hands - Çocuk dostu, modern tema (sadece bu palet kullanılır; dış site renkleri örnek değildir) */
:root {
  --sky: #5eb3f6;
  --sun: #ffc845;
  --cloud: #fff;
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #457b9d;
  --accent: #f4a261;
  --green: #2a9d8f;
  --purple: #9b5de5;
  --pink: #f72585;
  --yellow: #ffc300;
  --white: #fff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-700: #495057;
  --gray-900: #212529;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: linear-gradient(180deg, #e8f4fc 0%, #fff 20%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  color: var(--primary-dark);
  opacity: 0.9;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 42px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-main a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-weight: 600;
}
.nav-main a:hover,
.nav-main a.active {
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
}

.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cart-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.cart-trigger svg {
  width: 24px;
  height: 24px;
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--gray-900);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main content */
.main-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem 2rem;
}

/* Hero slider - sipariskapinda ebatları (padding-bottom 42%/56%), çocuksal tema */
.hero-slider-wrap {
  width: 100%;
  max-width: 720px;
  margin: 20px auto 2rem;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .hero-slider-wrap {
    max-width: 1400px;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky), #7ec8f7);
  border: 1px solid var(--gray-200);
}
.hero-slider-inner {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
  overflow: hidden;
}
@media (max-width: 479px) {
  .hero-slider-inner {
    padding-bottom: 56%;
  }
}
.hero-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero-slider-item.active {
  opacity: 1;
  z-index: 1;
}
/* Görseli kırpmadan slider kutusu içinde tam göster (mobil + masaüstü tutarlı) */
.hero-slider-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-slider-link {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-slider-overlay-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-slider-title {
  font-size: clamp(1.1rem, 3.5vw, 1.75rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.25rem 0;
}
.hero-slider-subtitle {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--gray-700);
  margin: 0;
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hero-slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.hero-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-slider-dots button.active {
  background: var(--primary);
}

/* Eski slider sınıfları (geri uyumluluk) */
.slider-wrap { margin: 0 -1.25rem 2rem; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.slider { position: relative; aspect-ratio: 1920/600; max-height: 420px; background: linear-gradient(135deg, var(--sky), #7ec8f7); }
.slider-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.slider-item { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slider-item.active { opacity: 1; z-index: 1; }
.slider-item img { width: 100%; height: 100%; object-fit: cover; }
.slider-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 0.5rem; }
.slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; transition: background 0.3s; }
.slider-dots button.active { background: var(--white); }

/* Section - çocuksal tema */
.section-block {
  padding: 0 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin: 16px 0 6px;
  text-align: center;
}
.section-title span {
  color: var(--primary);
}
.section-subtitle {
  text-align: center;
  color: var(--gray-700);
  font-size: 14px;
  margin: 0 0 16px;
}

/* Ürün kartları - sipariskapinda firma kartı ebatları/mantığı, çocuksal tema */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .products-grid { gap: 20px; }
}
@media (min-width: 768px) {
  .products-grid { gap: 24px; }
}
@media (min-width: 1024px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
  }
  .product-card { max-width: none; min-width: 0; }
}
@media (max-width: 479px) {
  .product-card {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  min-width: 240px;
  flex: 0 0 auto;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 480px) {
  .product-card { max-width: 300px; min-width: 260px; }
}
@media (min-width: 768px) {
  .product-card { max-width: 280px; min-width: 240px; }
}
@media (min-width: 1024px) {
  .product-card { max-width: none; min-width: 0; }
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

/* Anasayfa: oval kare ürün görseli (göz alıcı) */
.hero-product-grid .product-card-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.hero-product-grid .product-card:hover .product-card-image {
  background: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
}
.hero-product-grid .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-product-grid .product-card:hover .product-card-image img {
  filter: brightness(1.05);
}

/* Ürünler sayfası: büyük kare görsel (varsayılan) */
.product-card-image {
  aspect-ratio: 1;
  background: var(--gray-100);
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.hero-product-grid .product-card-actions {
  flex-direction: column;
  gap: 0.5rem;
}
.product-card-badge {
  flex: 1;
  min-width: 0;
}
.hero-product-grid .product-card-badge {
  width: 100%;
}

.qty-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-input-wrap input {
  width: 52px;
  padding: 0.5rem;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: background 0.2s;
}
.qty-btn:hover {
  background: var(--gray-200);
}

/* Kartta adet seçici daha küçük ve orantılı */
.hero-product-grid .qty-input-wrap {
  border-width: 1px;
}
.hero-product-grid .qty-input-wrap input {
  width: 38px;
  padding: 0.35rem;
  font-size: 0.9rem;
}
.hero-product-grid .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.btn-add-cart {
  flex: 1;
  min-width: 120px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-add-cart:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}

/* Modal - modern */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
}
.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gray-700);
  transition: background 0.2s;
}
.modal-close:hover {
  background: var(--gray-200);
}

.modal-body {
  padding: 1.5rem;
}

/* Sepet modalı - orta boy */
#cartModal .modal-box {
  width: 100%;
  min-width: 420px;
  max-width: 520px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
#cartModal .modal-body {
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#cartModal .cart-empty {
  padding: 2.5rem 2rem;
  font-size: 1.05rem;
}

/* Cart modal */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-100);
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}
.cart-item-meta {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}
.cart-item-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
.cart-item-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.cart-item-remove:hover {
  color: var(--primary);
  opacity: 1;
  background: var(--gray-100);
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  color: var(--gray-700);
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cart-footer-total {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.cart-footer-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-cart-clear {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-cart-clear:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}
.cart-grand-total-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}
.cart-grand-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.btn-checkout {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green), #34c0b0);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.4);
}

/* Product detail modal */
.product-detail-modal .modal-box {
  max-width: 520px;
}
.product-detail-modal .modal-header {
  position: relative;
  padding-right: 48px;
  justify-content: center;
}
.product-detail-modal .modal-title {
  text-align: center;
  flex: 1;
  padding-right: 0;
}
.product-detail-modal .modal-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-detail-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray-100);
  border-radius: 16px;
  margin-bottom: 1rem;
}
.product-detail-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
.product-detail-desc {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.product-detail-actions .btn {
  width: 100%;
}
.qty-input-wrap-sm {
  border-width: 1px;
}
.qty-input-wrap-sm input {
  width: 40px;
  padding: 0.4rem;
  font-size: 0.95rem;
}
.qty-input-wrap-sm .qty-btn {
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}
.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-800);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--gray-300);
  color: var(--gray-900);
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #1a1d21 100%);
  color: var(--gray-200);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand span {
  color: var(--accent);
}

.footer-section-contact {
  margin-left: 1.5rem;
}
.footer-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
}
.footer-section a {
  color: var(--gray-200);
  font-size: 0.95rem;
}
.footer-section a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* Page headings */
.page-header {
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}
.page-header h1 span {
  color: var(--primary);
}
.page-header .lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin: 0.5rem 0 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* About page */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-content p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}
.about-content h2 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gray-900);
}
.about-content .about-intro {
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-content .about-list {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--gray-700);
}
.about-content .about-list li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ========== Mobil uyumluluk (tüm sayfalar) ========== */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.5rem 1rem;
  }
  .nav-main {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .nav-main a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-content {
    padding: 0 1rem 1.5rem;
  }
  .slider {
    max-height: 220px;
    aspect-ratio: 16/9;
  }
  .hero-slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .hero-slider-prev { left: 8px; }
  .hero-slider-next { right: 8px; }
  .hero-slider-overlay-box {
    padding: 0.75rem 1rem;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .product-card-body {
    padding: 1rem;
  }
  .product-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-add-cart,
  .btn-checkout,
  .btn-primary {
    min-height: 44px;
  }
  .qty-input-wrap {
    justify-content: center;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .modal-box {
    max-height: 85vh;
    margin: 1rem;
  }
  .contact-form,
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  .logo img {
    height: 36px;
  }
  .cart-trigger {
    width: 44px;
    height: 44px;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .section-block {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Tablolar: yatay kaydırma (admin ve liste sayfaları) */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
