/* ============================================
   NAKIS3D — YENİ TEMİZ TEMA
   ============================================ */

:root {
  --bg: #f5f4f0;
  --bg2: #edecea;
  --card: #ffffff;
  --dark: #1a1a1a;
  --darker: #111111;
  --border: #e2e0db;
  --border2: #d0cec9;
  --accent: #e85d00;
  --accent2: #ff7a1a;
  --accent-light: rgba(232,93,0,0.08);
  --text: #1a1a1a;
  --muted: #7a7671;
  --muted2: #a8a49f;
  --green: #16a34a;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,244,240,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; text-decoration: none; letter-spacing: 2px; }
.logo-main { color: var(--dark); }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.88rem; transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-btn { background: var(--dark) !important; color: var(--white) !important; padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 600 !important; font-size: 0.85rem !important; transition: all var(--transition) !important; }
.nav-btn:hover { background: var(--accent) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

.mobile-menu { display: none; flex-direction: column; padding: 12px 20px 16px; background: var(--white); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--border); font-weight: 500; font-size: 0.95rem; }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* TICKER */
.ticker { margin-top: 60px; background: var(--dark); overflow: hidden; padding: 9px 0; }
.ticker-inner { display: flex; gap: 48px; width: max-content; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-inner span { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.hero { padding: 60px 24px 68px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); }
.hero-bg { display: none; }
.hero-content { position: relative; z-index: 2; flex: 1; max-width: 600px; }
.hero-visual { position: relative; z-index: 2; flex: 0 0 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-light); border: 1px solid rgba(232,93,0,0.2); color: var(--accent); padding: 5px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 18px; text-transform: uppercase; }

.hero-title { font-family: 'Bebas Neue', sans-serif; line-height: 0.88; letter-spacing: -1px; font-size: clamp(4.5rem, 11vw, 8rem); }
.title-line { display: block; color: var(--dark); }
.title-line.accent { color: var(--accent); }

.hero-sub { font-size: 0.98rem; color: var(--muted); margin: 18px 0 30px; max-width: 420px; line-height: 1.75; }

.hero-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-divider { width: 1px; height: 32px; background: var(--border2); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 12px 24px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,93,0,0.25); }

.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--dark); border: 1.5px solid var(--border2); padding: 12px 24px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all var(--transition); }
.btn-wa:hover { border-color: var(--accent); color: var(--accent); }

/* 3D CUBE */
.cube-container { perspective: 350px; width: 110px; height: 110px; margin: 0 auto 24px; }
.cube { width: 100%; height: 100%; transform-style: preserve-3d; animation: rotateCube 9s linear infinite; }
@keyframes rotateCube { from { transform: rotateX(15deg) rotateY(0deg); } to { transform: rotateX(15deg) rotateY(360deg); } }
.cube-face { position: absolute; width: 100%; height: 100%; border: 1px solid rgba(232,93,0,0.3); background: rgba(232,93,0,0.02); }
.cube-face.front  { transform: translateZ(55px); }
.cube-face.back   { transform: translateZ(-55px) rotateY(180deg); }
.cube-face.left   { transform: translateX(-55px) rotateY(-90deg); }
.cube-face.right  { transform: translateX(55px) rotateY(90deg); }
.cube-face.top    { transform: translateY(-55px) rotateX(90deg); }
.cube-face.bottom { transform: translateY(55px) rotateX(-90deg); }

.layer-lines { display: flex; flex-direction: column; gap: 3px; width: 150px; }
.layer-line { height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); border-radius: 2px; animation: layerPulse 2.5s ease-in-out infinite; opacity: 0; }
@keyframes layerPulse { 0%,100% { opacity: 0; transform: scaleX(0.2); } 50% { opacity: 0.5; transform: scaleX(1); } }
.layer-label { color: var(--accent); font-size: 0.65rem; letter-spacing: 2px; text-align: center; margin-top: 12px; }

@media (max-width: 900px) { .hero-visual { display: none; } .hero { padding: 36px 20px 52px; } }

/* KATEGORILER */
.categories-section { padding: 24px 0 0; background: var(--bg); }
.categories-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.cat-pill { padding: 6px 15px; border-radius: 20px; border: 1.5px solid var(--border2); color: var(--muted); text-decoration: none; font-size: 0.8rem; font-weight: 600; transition: all var(--transition); white-space: nowrap; background: var(--white); }
.cat-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.cat-pill.active { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* SECTION HEADER */
.section-header { margin-bottom: 28px; }
.section-tag { font-size: 0.68rem; letter-spacing: 3px; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 0.5px; color: var(--dark); }

/* CATALOG */
.catalog-section { padding: 44px 0 68px; background: var(--bg); }

.search-bar { margin-top: 14px; }
.search-input { background: var(--white); border: 1.5px solid var(--border2); color: var(--text); padding: 10px 14px; border-radius: var(--radius-sm); font-family: inherit; font-size: 0.88rem; width: 260px; outline: none; transition: border-color var(--transition); }
.search-input:focus { border-color: var(--accent); }
.search-btn { background: var(--dark); border: none; color: var(--white); padding: 10px 14px; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.9rem; margin-left: 6px; transition: background var(--transition); }
.search-btn:hover { background: var(--accent); }

/* URUN GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }

.product-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all var(--transition); box-shadow: var(--shadow); }
.product-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg2); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; max-width: 100%; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.badge-featured, .badge-min { position: absolute; top: 8px; font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.badge-featured { right: 8px; background: var(--accent); color: var(--white); }
.badge-min { left: 8px; background: rgba(0,0,0,0.55); color: #fff; }

.product-info { padding: 12px; }
.product-cat { font-size: 0.65rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 700; }
.product-name { font-size: 0.88rem; font-weight: 600; line-height: 1.35; margin-bottom: 10px; color: var(--dark); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.add-to-cart { width: 30px; height: 30px; border-radius: var(--radius-sm); background: var(--dark); border: none; color: var(--white); font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.add-to-cart:hover { background: var(--accent); transform: scale(1.08); }

.empty-state { text-align: center; padding: 60px 0; color: var(--muted); }
.empty-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* ABOUT */
.about-section { padding: 60px 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-tag { color: var(--accent2); }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; margin: 8px 0 16px; color: var(--white); }
.about-text p { color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 10px; font-size: 0.92rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.feature { display: flex; gap: 10px; align-items: flex-start; }
.feature-icon { font-size: 0.95rem; color: var(--accent2); flex-shrink: 0; margin-top: 3px; }
.feature strong { display: block; font-weight: 600; font-size: 0.85rem; color: var(--white); }
.feature span { color: rgba(255,255,255,0.4); font-size: 0.76rem; }

.about-visual { display: flex; align-items: center; justify-content: center; }
.print-layers { display: flex; flex-direction: column; gap: 4px; padding: 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; width: 100%; max-width: 280px; }
.print-layer { height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 3px; animation: printLayer 3.5s ease-in-out infinite; transform-origin: left; }
@keyframes printLayer { 0% { transform: scaleX(0); opacity: 0; } 50% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 0.4; } }
.print-label { text-align: center; color: rgba(255,255,255,0.25); font-size: 0.65rem; letter-spacing: 3px; margin-top: 12px; }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-visual { display: none; } }

/* CONTACT */
.contact-section { padding: 60px 0; background: var(--bg); }
.contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; margin: 8px 0 12px; color: var(--dark); }
.contact-inner > p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; font-size: 0.92rem; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.contact-card { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--radius); background: var(--white); border: 1.5px solid var(--border); text-decoration: none; color: var(--text); transition: all var(--transition); box-shadow: var(--shadow); }
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cc-icon { font-size: 1.4rem; flex-shrink: 0; }
.cc-text strong { display: block; font-weight: 700; font-size: 0.88rem; }
.cc-text span { color: var(--muted); font-size: 0.78rem; }
.contact-note { margin-top: 20px; padding: 13px 18px; background: var(--accent-light); border: 1px solid rgba(232,93,0,0.16); border-radius: 10px; color: var(--muted); font-size: 0.84rem; line-height: 1.6; text-align: center; }
@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { background: var(--darker); padding: 32px 0 18px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-top: 4px; }
.footer-brand .logo-main { color: #fff; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.76rem; }

/* CART FAB */
.cart-fab { position: fixed; bottom: 22px; right: 22px; z-index: 900; background: var(--dark); color: var(--white); padding: 11px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.15); display: none; align-items: center; gap: 8px; transition: all var(--transition); }
.cart-fab:hover { background: var(--accent); }
.cart-fab.visible { display: flex; }
.cart-count { background: var(--accent); color: var(--white); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 16px; padding: 26px; max-width: 500px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.modal-close { position: absolute; top: 12px; right: 12px; background: var(--bg2); border: none; color: var(--muted); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.modal-close:hover { background: var(--border2); color: var(--dark); }
.modal-product-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; margin-bottom: 16px; background: var(--bg2); display: block; }
.modal-cat { color: var(--accent); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.modal-name { font-size: 1.25rem; font-weight: 700; margin: 6px 0; color: var(--dark); }
.modal-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--accent); margin-bottom: 10px; }
.modal-desc { color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-size: 0.88rem; }
.modal-min { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }

/* CART DRAWER */
.drawer-overlay { display: none; position: fixed; inset: 0; z-index: 1500; background: rgba(0,0,0,0.35); }
.drawer-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; bottom: 0; z-index: 1600; width: 390px; max-width: 100vw; background: var(--white); border-left: 1px solid var(--border); display: flex; flex-direction: column; transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -4px 0 24px rgba(0,0,0,0.08); }
.cart-drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.drawer-header h3 { font-size: 0.98rem; font-weight: 700; color: var(--dark); }
.drawer-header button { background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px; }
.drawer-item { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.drawer-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 7px; flex-shrink: 0; background: var(--bg2); display: block; }
.drawer-item-info { flex: 1; }
.drawer-item-name { font-size: 0.83rem; font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.drawer-item-price { font-size: 0.8rem; color: var(--accent); font-weight: 700; }
.drawer-item-qty { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
.qty-btn { width: 22px; height: 22px; border-radius: 5px; background: var(--bg2); border: 1px solid var(--border); color: var(--dark); cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.qty-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.qty-val { font-size: 0.82rem; font-weight: 700; min-width: 20px; text-align: center; color: var(--dark); }
.remove-item { background: none; border: none; color: var(--muted2); cursor: pointer; font-size: 0.9rem; padding: 3px; transition: color var(--transition); }
.remove-item:hover { color: #dc2626; }
.drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); background: var(--bg); }
.drawer-total { font-size: 0.98rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.drawer-total strong { color: var(--accent); }
.drawer-empty { text-align: center; padding: 36px 0; color: var(--muted); }
.drawer-empty p { margin-top: 8px; font-size: 0.88rem; }

/* ORDER PAGE */
.order-page { min-height: 100vh; padding: 86px 24px 56px; background: var(--bg); }
.order-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.order-form-box, .order-summary-box { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); }
.order-form-box h2, .order-summary-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: 20px; color: var(--dark); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.77rem; font-weight: 700; margin-bottom: 5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 13px; background: var(--bg); border: 1.5px solid var(--border2); color: var(--text); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 86px; }
.submit-btn { width: 100%; padding: 13px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: inherit; font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: all var(--transition); margin-top: 6px; }
.submit-btn:hover { background: var(--accent2); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

@media (max-width: 768px) { .order-grid { grid-template-columns: 1fr; } .order-summary-box { order: -1; } }

/* SUCCESS */
.success-box { text-align: center; padding: 44px 20px; }
.success-icon { font-size: 3.2rem; margin-bottom: 14px; }
.success-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: 8px; color: var(--green); }
.success-box p { color: var(--muted); font-size: 0.9rem; }
.order-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--accent); margin: 14px 0; letter-spacing: 2px; }

/* BADGES */
.badge { padding: 3px 9px; border-radius: 5px; font-size: 0.73rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.badge-new { background: rgba(232,93,0,0.1); color: var(--accent); }
.badge-processing { background: rgba(234,179,8,0.1); color: #ca8a04; }
.badge-shipped { background: rgba(59,130,246,0.1); color: #2563eb; }
.badge-completed { background: rgba(22,163,74,0.1); color: var(--green); }
.badge-cancelled { background: rgba(220,38,38,0.1); color: #dc2626; }

/* MOBIL */
@media (max-width: 768px) {
  .hero { padding: 30px 16px 44px; }
  .hero-title { font-size: clamp(3.8rem, 19vw, 5.5rem); }
  .hero-badge { font-size: 0.63rem; }
  .hero-sub { font-size: 0.88rem; margin: 12px 0 20px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; gap: 8px; }
  .hero-ctas a { width: 100%; justify-content: center; text-align: center; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 0.8rem; }
  .product-price { font-size: 0.98rem; }
  .add-to-cart { width: 28px; height: 28px; font-size: 1rem; }

  .section-title { font-size: 1.9rem; }
  .catalog-section { padding: 32px 0 48px; }
  .container { padding: 0 13px; }

  .search-input { width: 100%; }
  .search-bar form { display: flex; gap: 6px; }
  .cat-pill { font-size: 0.73rem; padding: 5px 10px; }
  .categories-row { gap: 6px; }

  .about-features { grid-template-columns: 1fr; }
  .modal-box { padding: 16px; }
  .cart-drawer { width: 100vw; }
  .cart-fab { bottom: 12px; right: 12px; padding: 10px 14px; font-size: 0.8rem; }
  .order-page { padding: 76px 13px 36px; }
  .order-form-box, .order-summary-box { padding: 18px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 3.3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .product-img-wrap { aspect-ratio: 1; }
}

/* ANIMASYONLAR */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.product-card { animation: fadeInUp 0.32s ease both; }
.product-card:nth-child(1) { animation-delay: 0.04s; }
.product-card:nth-child(2) { animation-delay: 0.08s; }
.product-card:nth-child(3) { animation-delay: 0.12s; }
.product-card:nth-child(4) { animation-delay: 0.16s; }
.product-card:nth-child(5) { animation-delay: 0.20s; }
.product-card:nth-child(6) { animation-delay: 0.24s; }
