* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink:   #ff6b9d;
  --purple: #a855f7;
  --blue:   #3b82f6;
  --orange: #f97316;
  --dark:   #0f0f1a;
  --light:  #fafafa;
  --radius: 16px;
}

body { font-family: 'Segoe UI', sans-serif; color: #222; background: var(--light); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.topbar {
  background: var(--dark); color: #aaa;
  text-align: center; font-size: .78rem; padding: .45rem 1rem;
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; letter-spacing: .5px; position: relative;
}
.topbar strong { color: var(--pink); }
.topbar-close {
  position: absolute; right: 1rem; background: none; border: none;
  color: #666; cursor: pointer; font-size: .85rem; padding: .2rem;
}
.topbar-close:hover { color: #fff; }

/* NAVBAR */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 6%; background: var(--dark);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s, box-shadow .3s;
  height: 64px;
}
.navbar.scrolled {
  background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.navbar.scrolled .nav-logo {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.navbar.scrolled .nav-links > li > a { color: #222; }
.navbar.scrolled .nav-links > li > a:hover { color: var(--purple); }
.navbar.scrolled .nav-sale { color: #e63946 !important; }
.navbar.scrolled .nav-icon-btn { color: #222; }

.nav-logo {
  font-size: 1.6rem; font-weight: 800; letter-spacing: 1px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.nav-links {
  list-style: none; display: flex; align-items: stretch; gap: 0;
  height: 100%;
}
.nav-links > li {
  position: relative; display: flex; align-items: center;
}
.nav-links > li > a {
  color: #ccc; font-size: .82rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 0 1.1rem; height: 64px; display: flex; align-items: center;
  transition: color .2s; white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { color: #fff; border-bottom-color: var(--pink); }
.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-links > li:hover > a { color: var(--purple); border-bottom-color: var(--purple); }
.nav-sale { color: #ff6b9d !important; }
.arrow { font-size: .6rem; margin-left: .3rem; }

/* DROPDOWN */
.dropdown {
  display: none; position: absolute; top: 64px; left: 50%;
  transform: translateX(-50%);
  background: #fff; border-top: 3px solid var(--purple);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 2rem; gap: 2rem;
  min-width: 560px; z-index: 300;
  grid-template-columns: 1fr 1fr 160px;
  border-radius: 0 0 12px 12px;
}
.has-dropdown:hover .dropdown { display: grid; }

.dropdown-col h4 {
  font-size: .75rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #aaa; margin-bottom: .8rem;
  padding-bottom: .5rem; border-bottom: 1px solid #eee;
}
.dropdown-col a {
  display: block; color: #333; font-size: .88rem;
  padding: .35rem 0; transition: color .2s, padding-left .2s;
}
.dropdown-col a:hover { color: var(--purple); padding-left: 6px; }

.dropdown-banner {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer;
}
.dbanner-img {
  width: 100%; height: 140px;
  background-size: cover; background-position: center;
  transition: transform .4s;
}
.dropdown-banner:hover .dbanner-img { transform: scale(1.05); }
.dropdown-banner span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff; font-size: .78rem; font-weight: 700;
  padding: .6rem .8rem; letter-spacing: .5px;
}

/* NAV ACTIONS */
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  color: #ccc; font-size: 1.1rem; padding: .4rem .6rem;
  border-radius: 8px; transition: background .2s, color .2s;
  position: relative;
}
.nav-icon-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.navbar.scrolled .nav-icon-btn:hover { background: #f0f0f0; color: #222; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--pink); color: #fff;
  font-size: .6rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* SEARCH BAR */
.search-bar {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: #fff; padding: 1rem 6%; z-index: 190;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  align-items: center; gap: 1rem;
}
.search-bar.open { display: flex; }
.search-bar input {
  flex: 1; border: 2px solid #eee; border-radius: 50px;
  padding: .7rem 1.4rem; font-size: 1rem; outline: none;
  transition: border-color .2s;
}
.search-bar input:focus { border-color: var(--purple); }
.search-bar button {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: #888; padding: .4rem;
}

/* HERO */
.hero {
  min-height: 92vh; background: var(--dark);
  display: flex; align-items: center; padding: 4rem 6%;
  position: relative; overflow: hidden;
  gap: 3rem;
}
.hero-content { position: relative; z-index: 2; max-width: 480px; flex-shrink: 0; }

/* HERO IMAGES */
.hero-images {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 1rem; height: 420px;
}
.hero-img-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #444;
  transition: transform .3s;
}
.hero-img-card:hover { transform: scale(1.02); }
.hero-img-card:first-child { grid-row: 1 / 3; }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  display: inline-block; background: rgba(168,85,247,.2);
  color: var(--purple); border: 1px solid rgba(168,85,247,.4);
  padding: .3rem 1rem; border-radius: 50px; font-size: .8rem;
  font-weight: 600; letter-spacing: 1px; margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); color: #fff;
  line-height: 1.15; margin-bottom: 1.2rem; font-weight: 800;
}
.hero-content p { color: #888; font-size: 1.1rem; margin-bottom: 2rem; }

.btn {
  display: inline-block; padding: .85rem 2.2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(168,85,247,.4); }

/* HERO SHAPES */
.hero-shapes { position: absolute; right: 0; top: 0; width: 55%; height: 100%; z-index: 1; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.s1 { width: 400px; height: 400px; background: var(--purple); top: -100px; right: -100px; }
.s2 { width: 300px; height: 300px; background: var(--pink); bottom: 50px; right: 200px; }
.s3 { width: 200px; height: 200px; background: var(--blue); top: 200px; right: 400px; }

/* SECTION TITLE */
.section-title {
  font-size: 2rem; font-weight: 800; text-align: center;
  margin-bottom: 2.5rem; position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px; margin: .6rem auto 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }

/* CATEGORIES */
.categories { padding: 5rem 0; background: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.cat-card {
  position: relative; overflow: hidden;
  height: 480px; cursor: pointer;
  border-radius: 0;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  transition: background .4s;
}
.cat-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.cat-card:hover { transform: none; box-shadow: none; }
.cat-card:hover .cat-bg { transform: scale(1.06); }

.cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.cat-cocuk .cat-bg { background-image: url('https://images.unsplash.com/photo-1622290291468-a28f7a7dc6a8?w=600&q=80'); }
.cat-erkek  .cat-bg { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=80'); }
.cat-bayan  .cat-bg { background-image: url('https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?w=600&q=80'); }

.cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 2rem;
  transform: translateY(10px); transition: transform .3s;
}
.cat-card:hover .cat-body { transform: translateY(0); }

.cat-icon { display: none; }
.cat-card h3 {
  font-size: 1.8rem; font-weight: 800; color: #fff;
  margin-bottom: .3rem; letter-spacing: 1px; text-transform: uppercase;
}
.cat-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.cat-link {
  display: inline-block; color: #fff; font-weight: 700; font-size: .85rem;
  letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 2px solid #fff; padding-bottom: 2px;
  transition: opacity .2s;
}
.cat-link:hover { opacity: .7; }
.cat-cocuk .cat-link, .cat-erkek .cat-link, .cat-bayan .cat-link { color: #fff; }

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 300px; }
}

/* FEATURED */
.featured { padding: 5rem 0; background: var(--light); }
.featured-header { text-align: center; margin-bottom: 2.5rem; }
.featured-header .section-title { margin-bottom: .8rem; }

.active-filter-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-size: .8rem; font-weight: 700;
  padding: .3rem 1rem; border-radius: 50px; letter-spacing: .5px;
}

.filter-tabs { display: flex; gap: .8rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.4rem; border: 2px solid #e0e0e0; background: #fff;
  border-radius: 50px; font-size: .9rem; cursor: pointer; transition: all .2s;
}
.filter-btn:hover  { border-color: var(--purple); color: var(--purple); }
.filter-btn.active { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border-color: transparent; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }

.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,.12); }
.product-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, #f0e6ff, #ffe0ef);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.2rem; }
.product-cat-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: .4rem;
}
.tag-cocuk { color: var(--pink); }
.tag-erkek  { color: var(--blue); }
.tag-bayan  { color: var(--purple); }
.product-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.product-body p  { font-size: .85rem; color: #888; margin-bottom: .8rem; }
.product-price-row { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 1.1rem; font-weight: 800; color: var(--purple); }
.price-soon { font-size: .75rem; color: #bbb; font-weight: 500; }
.add-btn {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; padding: .4rem .9rem;
  border-radius: 50px; font-size: .8rem; cursor: pointer;
}

.no-products { text-align: center; color: #aaa; padding: 3rem; grid-column: 1/-1; }

/* ABOUT */
.about { padding: 5rem 0; background: var(--dark); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.about-text p  { color: #888; margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2rem; }
.astat strong { display: block; font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.astat span { font-size: .85rem; color: #666; }

.about-visual { position: relative; height: 300px; }
.av-box { position: absolute; border-radius: var(--radius); }
.av1 { width: 180px; height: 180px; background: linear-gradient(135deg, var(--pink), var(--purple)); top: 0; left: 0; opacity: .8; }
.av2 { width: 140px; height: 140px; background: linear-gradient(135deg, var(--blue), var(--purple)); bottom: 0; right: 0; opacity: .7; }
.av3 { width: 100px; height: 100px; background: linear-gradient(135deg, var(--orange), var(--pink)); bottom: 40px; left: 120px; opacity: .6; }

/* CONTACT */
.contact { padding: 5rem 0; background: #fff; text-align: center; }
.contact-sub { color: #888; margin-bottom: 2.5rem; }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; text-align: left; align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--light); border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border-left: 4px solid transparent;
  border-image: linear-gradient(var(--pink), var(--purple)) 1;
}
.info-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-card strong { display: block; font-size: .85rem; color: #aaa; margin-bottom: .2rem; }
.info-card p, .info-card a { font-size: 1rem; font-weight: 600; color: #222; }
.info-card a:hover { color: var(--purple); }

.whatsapp-btn {
  display: inline-block; text-align: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; padding: .85rem 1.5rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem; transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  padding: .9rem 1.2rem; border: 1.5px solid #e0e0e0;
  border-radius: var(--radius); font-size: 1rem; font-family: inherit; outline: none;
  transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--purple); }
.contact-form textarea { resize: vertical; }

@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer { background: var(--dark); color: #aaa; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 6%; max-width: 1200px; margin: 0 auto;
}
.footer-col .footer-logo {
  display: block; font-size: 1.4rem; font-weight: 800; margin-bottom: .8rem;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { font-size: .85rem; color: #666; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.15); }

.footer-col h4 {
  font-size: .8rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: .85rem; color: #666;
  margin-bottom: .5rem; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-wa-btn {
  display: inline-block; margin-top: .5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important; padding: .5rem 1.2rem; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 6%; display: flex; justify-content: center;
  align-items: center; font-size: .82rem; position: relative;
}
.admin-link {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  color: #333; font-size: .85rem; opacity: .25; transition: opacity .3s;
}
.admin-link:hover { opacity: 1; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 5%; }
  .footer-col:first-child { grid-column: 1 / -1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column; padding: 2rem 5%;
    min-height: auto; padding-top: 3rem;
  }
  .hero-content { max-width: 100%; }
  .hero-images { height: 220px; }
  .hero-shapes { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-img { height: 160px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* HAMBURGEr */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ccc; border-radius: 2px;
  transition: all .3s;
}
.navbar.scrolled .hamburger span { background: #222; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBİL MENÜ */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
  height: 100vh; background: #fff; z-index: 500;
  transition: right .3s ease; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 499;
}
.mobile-overlay.open { display: block; }

.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid #eee;
}
.mobile-menu-header button {
  background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #888;
}

.mobile-nav { padding: 1rem 0; }
.mobile-link {
  display: block; padding: .9rem 1.5rem;
  font-size: .9rem; font-weight: 700; letter-spacing: 1px;
  color: #222; border-bottom: 1px solid #f5f5f5;
  transition: color .2s;
}
.mobile-link:hover { color: var(--purple); }
.mobile-sale { color: #e63946 !important; }

.mobile-cat { border-bottom: 1px solid #f5f5f5; }
.mobile-cat-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: .9rem 1.5rem; font-size: .9rem; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; color: #222;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-cat-items {
  display: none; background: #fafafa; padding: .5rem 0;
}
.mobile-cat-items.open { display: block; }
.mobile-cat-items a {
  display: block; padding: .6rem 2rem;
  font-size: .85rem; color: #555;
  transition: color .2s;
}
.mobile-cat-items a:hover { color: var(--purple); }

/* ===================== SEPET DRAWER ===================== */
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px;
  height: 100vh; background: #fff; z-index: 600;
  transition: right .3s ease; display: flex; flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,.15);
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 599;
}
.cart-overlay.open { display: block; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid #eee;
}
.cart-header h3 { font-size: 1.1rem; font-weight: 800; }
.cart-header button { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #888; }

.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: #aaa; padding: 3rem 0; }

.cart-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 0; border-bottom: 1px solid #f5f5f5;
}
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: .9rem; font-weight: 700; }
.cart-item-info span { font-size: .85rem; color: var(--purple); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: .4rem; }
.cart-item-qty button {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #ddd;
  background: none; cursor: pointer; font-size: 1rem; line-height: 1;
  transition: border-color .2s;
}
.cart-item-qty button:hover { border-color: var(--purple); color: var(--purple); }
.cart-item-qty span { font-size: .9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: .9rem; padding: .2rem; }
.cart-item-remove:hover { color: #e63946; }

.cart-footer { padding: 1.2rem 1.5rem; border-top: 1px solid #eee; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1rem; }
.cart-total-row strong { font-size: 1.2rem; color: var(--purple); }

/* ===================== TOAST ===================== */
#toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: #fff; padding: .7rem 1.5rem;
  border-radius: 50px; font-size: .9rem; font-weight: 600;
  opacity: 0; transition: all .3s; z-index: 700; pointer-events: none;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================== ÜRÜN DETAY MODAL ===================== */
.product-modal {
  display: none; position: fixed; inset: 0; z-index: 800;
  align-items: center; justify-content: center;
}
.product-modal.open { display: flex; }
.pm-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
}
.pm-inner {
  position: relative; z-index: 1; background: #fff;
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 760px; width: 90%; max-height: 90vh;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.pm-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 1rem; z-index: 2;
}
.pm-img-wrap { overflow: hidden; }
.pm-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-info { padding: 2rem; overflow-y: auto; }
.pm-cat { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem; }
.pm-name { font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; }
.pm-desc { color: #888; font-size: .9rem; margin-bottom: 1rem; }
.pm-price { font-size: 1.4rem; font-weight: 800; color: var(--purple); }

/* PRODUCT OVERLAY */
.product-img { position: relative; }
.product-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: #fff; font-weight: 700; font-size: .9rem;
  border: 2px solid #fff; padding: .4rem 1.2rem; border-radius: 50px;
}

@media (max-width: 600px) {
  .pm-inner { grid-template-columns: 1fr; max-height: 95vh; }
  .pm-img-wrap { height: 220px; }
  .cart-drawer { max-width: 100%; }
}

/* ===================== SİPARİŞ MODAL ===================== */
.order-modal {
  display: none; position: fixed; inset: 0; z-index: 800;
  align-items: center; justify-content: center;
}
.order-modal.open { display: flex; }
.om-inner {
  position: relative; z-index: 1; background: #fff;
  border-radius: 20px; padding: 2rem;
  width: 90%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.om-inner h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.2rem; }

.order-summary-list { background: #fafafa; border-radius: 12px; padding: 1rem; margin-bottom: 1.5rem; }
.os-item { display: flex; justify-content: space-between; font-size: .88rem; color: #555; padding: .3rem 0; }
.os-total { display: flex; justify-content: space-between; padding-top: .6rem; margin-top: .6rem; border-top: 1px solid #eee; font-size: 1rem; }

#orderForm { display: flex; flex-direction: column; gap: .8rem; }
#orderForm input, #orderForm textarea {
  padding: .8rem 1.1rem; border: 1.5px solid #e0e0e0;
  border-radius: 12px; font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
#orderForm input:focus, #orderForm textarea:focus { border-color: var(--purple); }
#orderForm textarea { resize: vertical; }

/* ===================== PAGE LOADER ===================== */
.page-loader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s ease;
}
.page-loader.hide { opacity: 0; pointer-events: none; }
.loader-logo {
  font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.loader-bar {
  width: 160px; height: 3px; background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
  animation: loadFill .8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(168,85,247,.4);
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 400;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }

/* ===================== FAVORİ BUTONU ===================== */
.fav-btn {
  position: absolute; top: .6rem; right: .6rem;
  background: rgba(255,255,255,.9); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  color: #aaa;
}
.fav-btn:hover { transform: scale(1.15); }
.fav-btn.fav-active { color: #e63946; background: #fff; }

/* ===================== BÜLTEN ===================== */
.newsletter {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a2e 100%);
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.nl-text h2 {
  font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: .4rem;
}
.nl-text p { color: #888; font-size: .95rem; }
.nl-form {
  display: flex; gap: .8rem; flex-wrap: wrap;
}
.nl-form input {
  padding: .8rem 1.4rem; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px; background: rgba(255,255,255,.07);
  color: #fff; font-size: .95rem; outline: none; min-width: 260px;
  transition: border-color .2s;
}
.nl-form input::placeholder { color: #666; }
.nl-form input:focus { border-color: var(--purple); }

@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .nl-form { justify-content: center; }
  .nl-form input { min-width: 100%; }
  .topbar span:nth-child(2), .topbar span:nth-child(4) { display: none; }
}

/* ===================== YORUM SİSTEMİ ===================== */
.pm-stars-row {
  display: flex; align-items: center; gap: .6rem;
  margin: .8rem 0;
}
.pm-avg-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.pm-review-count { font-size: .82rem; color: #aaa; }

.pm-reviews { margin-top: 1.5rem; max-height: 200px; overflow-y: auto; }
.review-item {
  padding: .8rem 0; border-bottom: 1px solid #f0f0f0;
}
.review-item:last-child { border-bottom: none; }
.review-header {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .3rem; flex-wrap: wrap;
}
.review-header strong { font-size: .9rem; }
.review-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.review-date { font-size: .75rem; color: #bbb; margin-left: auto; }
.review-item p { font-size: .85rem; color: #666; }

.pm-review-form { margin-top: 1.5rem; border-top: 1px solid #eee; padding-top: 1.2rem; }
.pm-review-form h4 { font-size: .95rem; font-weight: 700; margin-bottom: .8rem; }

.star-picker {
  display: flex; gap: .3rem; margin-bottom: .8rem; font-size: 1.6rem;
  color: #ddd; cursor: pointer;
}
.star-picker span { transition: color .15s; }
.star-picker span:hover,
.star-picker span.active { color: #f59e0b; }

.pm-review-form input,
.pm-review-form textarea {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid #eee;
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  outline: none; margin-bottom: .6rem; transition: border-color .2s;
}
.pm-review-form input:focus,
.pm-review-form textarea:focus { border-color: var(--purple); }
.pm-review-form textarea { resize: vertical; }

/* Modal scroll için */
.pm-inner { overflow-y: auto; }
.pm-info { overflow-y: auto; max-height: 90vh; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: #fff; border-bottom: 1px solid #f0f0f0;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 0;
}
.trust-item {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.2rem 2.5rem; border-right: 1px solid #f0f0f0;
  flex: 1; min-width: 180px; justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item > span { font-size: 1.5rem; }
.trust-item strong { display: block; font-size: .88rem; font-weight: 700; color: #222; }
.trust-item small { font-size: .78rem; color: #aaa; }

/* HERO OUTLINE BTN */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline {
  display: inline-block; padding: .85rem 2.2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border: 2px solid rgba(255,255,255,.3); color: #fff;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* MODAL BADGE */
.pm-badge-new {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-size: .72rem; font-weight: 800;
  padding: .25rem .7rem; border-radius: 50px; letter-spacing: .5px;
}

/* PM FEATURES */
.pm-features { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.pm-feature {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: #666;
}
.pm-divider { height: 1px; background: #f0f0f0; margin: 1.2rem 0; }

/* PM ACTIONS */
.pm-actions { display: flex; gap: .8rem; margin-top: 1.2rem; }
.pm-fav-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid #e0e0e0; background: #fff;
  font-size: 1.2rem; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.pm-fav-btn:hover, .pm-fav-btn.active { border-color: #e63946; color: #e63946; }

@media (max-width: 768px) {
  .trust-bar { gap: 0; }
  .trust-item { padding: .8rem 1rem; min-width: 140px; }
  .hero-btns { flex-direction: column; }
}

/* ===================== SIRALAMALI TOOLBAR ===================== */
.featured-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: .8rem;
}
.product-count { font-size: .85rem; color: #aaa; }
#sortSelect {
  padding: .5rem 1rem; border: 1.5px solid #e0e0e0; border-radius: 50px;
  font-size: .85rem; outline: none; cursor: pointer; background: #fff;
  transition: border-color .2s;
}
#sortSelect:focus { border-color: var(--purple); }

/* ===================== BENZERLERİ ===================== */
.similar-section {
  background: #fff; padding: 3rem 0;
  border-top: 1px solid #f0f0f0;
}
.similar-title {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem;
  padding: 0 6%;
}
.similar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 0 6%;
}
.similar-card {
  cursor: pointer; border-radius: 12px; overflow: hidden;
  border: 1.5px solid #f0f0f0; transition: box-shadow .2s, transform .2s;
}
.similar-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.similar-img { height: 160px; overflow: hidden; }
.similar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.similar-card:hover .similar-img img { transform: scale(1.05); }
.similar-body { padding: .8rem; }
.similar-body p { font-size: .85rem; font-weight: 600; color: #222; margin-bottom: .2rem; }
.similar-body span { font-size: .82rem; color: var(--purple); font-weight: 700; }

@media (max-width: 768px) {
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== İNDİRİM & STOK ===================== */
.discount-badge {
  position: absolute; top: .6rem; left: .6rem;
  background: #e63946; color: #fff;
  font-size: .72rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 50px;
  z-index: 2; letter-spacing: .3px;
}
.out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; font-weight: 700;
  letter-spacing: 1px; z-index: 3;
}

/* FAVORİ NAV BUTONU */
.fav-nav-btn { color: #e63946 !important; font-size: 1rem; }
.fav-nav-btn #favCount {
  background: #e63946; color: #fff;
  font-size: .6rem; font-weight: 800;
  padding: .1rem .35rem; border-radius: 50px; margin-left: .1rem;
}

/* ===================== KUPON ===================== */
.coupon-row {
  display: flex; gap: .5rem; margin-bottom: .5rem;
}
.coupon-row input {
  flex: 1; padding: .6rem 1rem; border: 1.5px solid #e0e0e0;
  border-radius: 50px; font-size: .88rem; outline: none;
  transition: border-color .2s; text-transform: uppercase;
}
.coupon-row input:focus { border-color: var(--purple); }
.coupon-row button {
  padding: .6rem 1rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; font-size: .85rem; cursor: pointer;
  white-space: nowrap;
}
.coupon-msg { font-size: .82rem; margin-bottom: .6rem; min-height: 1.2rem; }

/* ===================== CANLI DESTEK WIDGET ===================== */
.support-widget {
  position: fixed; bottom: 5rem; right: 1.5rem;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: .6rem; z-index: 450;
}
.support-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.support-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.support-btn.wa { background: #25d366; }
.support-btn.chat { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; }

.support-tooltip {
  background: var(--dark); color: #fff;
  font-size: .78rem; padding: .3rem .8rem; border-radius: 50px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s; position: absolute; right: 60px;
}
.support-btn:hover + .support-tooltip,
.support-item:hover .support-tooltip { opacity: 1; }

.support-item { position: relative; display: flex; align-items: center; }

.chat-bubble {
  position: fixed; bottom: 10rem; right: 1.5rem;
  width: 300px; background: #fff; border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15); z-index: 451;
  display: none; overflow: hidden;
}
.chat-bubble.open { display: block; }
.chat-bubble-header {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; padding: 1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-bubble-header h4 { font-size: .95rem; font-weight: 700; }
.chat-bubble-header button { background: none; border: none; color: #fff; cursor: pointer; font-size: 1rem; }
.chat-bubble-body { padding: 1rem 1.2rem; }
.chat-bubble-body p { font-size: .85rem; color: #555; margin-bottom: 1rem; }
.chat-bubble-body a {
  display: block; text-align: center;
  background: #25d366; color: #fff; padding: .7rem;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: opacity .2s;
}
.chat-bubble-body a:hover { opacity: .85; }

/* ===================== AUTH ===================== */
.auth-tabs {
  display: flex; gap: 0; margin-bottom: 1.2rem;
  border-bottom: 2px solid #eee;
}
.auth-tab {
  flex: 1; padding: .7rem; background: none; border: none;
  font-size: .95rem; font-weight: 700; cursor: pointer; color: #aaa;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.auth-tab.active { color: var(--purple); border-bottom-color: var(--purple); }

.auth-form input {
  padding: .8rem 1rem; border: 1.5px solid #eee; border-radius: 12px;
  font-size: .95rem; outline: none; transition: border-color .2s;
}
.auth-form input:focus { border-color: var(--purple); }

/* MY ORDERS */
.my-order-item {
  background: #fafafa; border-radius: 10px; padding: .8rem 1rem;
  margin-bottom: .6rem; display: flex; flex-direction: column; gap: .3rem;
}
.my-order-header {
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
}
.my-order-header span:first-child { font-weight: 700; font-size: .9rem; }
