:root {
  --pink: #f6d7de;
  --pink-soft: #fbeaee;
  --pink-deep: #e9a9b8;
  --rose-gold: #c58f96;
  --cream: #fdf7f4;
  --ink: #2b2320;
  --ink-soft: #7a6f6c;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(198, 143, 150, 0.18);
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(198, 143, 150, 0.3); }
.btn-outline {
  background: var(--pink-soft);
  color: var(--rose-gold);
  border: 1px solid var(--pink-deep);
  width: 100%;
  text-align: center;
}
.btn-outline:hover { background: var(--pink); }
.btn-outline.disabled { opacity: 0.55; pointer-events: none; }

/* Announcement bar */
.announcement-bar {
  background: var(--pink);
  color: #8a4a58;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 9px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(233, 169, 184, 0.25);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  justify-self: center;
  white-space: nowrap;
}
.logo span { color: var(--rose-gold); }
/* Nav her ekran boyutunda aynı: hamburger tıklanınca açılan sabit çekmece
   (drawer) menüsü — masaüstünde de mobil ile aynı davranış istendi. */
.main-nav {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 76%;
  max-width: 300px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 100px 32px;
  gap: 26px;
  box-shadow: 20px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 40;
}
.main-nav.open { transform: translateX(0); }
.main-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--rose-gold); }
.icon-link {
  justify-self: end;
  color: var(--ink);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.icon-link:hover { color: var(--rose-gold); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  justify-self: start;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 34vh;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.eyebrow {
  color: var(--rose-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--rose-gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}
.blob-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle at 30% 30%, var(--pink) 0%, var(--pink-soft) 60%, transparent 75%);
  top: -140px; left: -100px;
}
.blob-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 70% 70%, var(--pink-soft) 0%, var(--cream) 60%, transparent 75%);
  bottom: -160px; right: -80px;
}
.hero-visual-card {
  position: absolute;
  z-index: 1;
  width: 190px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(43, 35, 32, 0.18);
  border: 6px solid var(--white);
}
.hero-visual-card img { aspect-ratio: 4/5; object-fit: cover; }
.hero-visual-card.left { top: 18%; left: 6%; transform: rotate(-9deg); }
.hero-visual-card.right { bottom: 12%; right: 6%; transform: rotate(8deg); width: 160px; }
.hero-visual-card.logo-card { width: 210px; border-radius: 50%; }
.hero-visual-card.logo-card img { aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 900px) {
  .hero-visual-card { display: none; }
}

/* Sections */
section { max-width: var(--max-width); margin: 0 auto; padding: 64px 24px; }
section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-top: 8px;
  margin-bottom: 40px;
}
.catalog h2 { margin-bottom: 24px; }

/* Filter chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--pink-deep);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { background: var(--pink-soft); }
.filter-chip.active {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}
.grid-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 30px 0;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(43, 35, 32, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pink-soft);
  touch-action: pan-y;
}
.image-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 1;
  padding: 6px 10px;
  width: fit-content;
  margin: 0 auto;
  background: rgba(43, 35, 32, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.image-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.image-dots span.active {
  background: var(--rose-gold);
  border-color: var(--white);
  transform: scale(1.3);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-card.out-of-stock .product-image img { filter: grayscale(0.6); opacity: 0.7; }
.product-card.out-of-stock:hover .product-image img { transform: none; }
.product-info { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rose-gold);
  font-weight: 600;
}
.product-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.product-price {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 4px 0 12px;
}
.product-info .btn-outline { margin-top: auto; }

/* Müşteri yorumları — gerçek müşteri mesajlarından, panelden elle giriliyor.
   Tıklanabilir/yazılabilir bir puanlama sistemi DEĞİL, sadece metin gösterimi
   (15 Ağustos 2026). Yorumu olmayan üründe blok hiç basılmıyor. */
.product-review {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: var(--pink-soft);
  border-radius: 12px;
  border-left: 3px solid var(--pink-deep);
}
.product-review p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.product-review cite {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  font-style: normal;
  color: var(--rose-gold);
  font-weight: 600;
}
/* Kartta tek yorum var ve uzun mesajlar kart yüksekliğini bozmasın diye
   3 satırda kesiliyor — tamamı ürün detay modalında görünüyor. */
.product-info .product-review p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-modal-reviews { margin-top: 18px; }
.product-modal-reviews-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rose-gold);
  font-weight: 600;
  margin: 0 0 8px;
}

/* Hakkımızda */
.about-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.about-inner .eyebrow { text-align: center; margin-bottom: 18px; }
.about-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 22px;
}
.about-text:first-of-type { font-style: italic; color: var(--rose-gold); }
.about-text:last-of-type { margin-bottom: 0; }
.about-page, .trust-page { min-height: 55vh; display: flex; flex-direction: column; justify-content: center; }
.about-cta, .trust-cta { display: inline-block; margin-top: 30px; }
.trust-page { text-align: center; }
.trust-page .trust-grid { margin-bottom: 8px; }

/* Trust section */
.trust { background: var(--cream); border-radius: 32px; margin: 0 auto; max-width: calc(var(--max-width) - 24px); }
.trust h2 { margin-bottom: 40px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.trust-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--rose-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.trust-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,0.85); margin-top: 40px; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.55); margin-top: 10px; font-size: 0.9rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Ürün detay modalı */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.product-modal.open { display: block; }
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 32, 0.55);
}
.product-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  max-width: 920px;
  max-height: 88vh;
  margin: 6vh auto;
  border-radius: 22px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.product-modal-gallery { background: var(--pink-soft); padding: 20px; }
.product-modal-main-image {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.product-modal-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-modal-thumbs img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.15s ease;
}
.product-modal-thumbs img:hover { opacity: 1; }
.product-modal-thumbs img.active { border-color: var(--rose-gold); opacity: 1; }
.product-modal-info { padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; }
.product-modal-info h2 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.product-modal-price { font-size: 1.3rem; font-weight: 600; color: var(--rose-gold); margin: 0; }
.product-modal-sizes { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.product-modal-description {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  white-space: pre-line;
  margin: 4px 0 12px;
}
.product-modal-info .btn { margin-top: auto; align-self: flex-start; }
.product-card { cursor: pointer; }
.product-card .btn { cursor: pointer; }

@media (max-width: 720px) {
  .product-modal-panel { grid-template-columns: 1fr; margin: 0; max-height: 100vh; border-radius: 0; }
  .product-modal-gallery { padding: 16px; }
}

/* Mobile */
@media (max-width: 820px) {
  .logo { font-size: 1.3rem; }
  .hero { padding: 60px 20px 50px; min-height: auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links, .footer-contact { align-items: center; }
  section { padding: 48px 20px; }
}

/* Telefon: ürün kataloğu referans siteyle aynı şekilde 2 sütun */
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-info { padding: 12px; gap: 4px; }
  .product-category { font-size: 0.65rem; }
  .product-info h3 { font-size: 0.85rem; }
  .product-price { font-size: 0.92rem; margin: 2px 0 8px; }
  .btn-outline { padding: 10px 12px; font-size: 0.8rem; }
}
