/* PARFÜMTEDARIK — LIQUID GLASS (iOS 26 / visionOS) */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #f8f9ff;
  --ink: #1a1a2e;
  --ink-2: #3a3a5c;
  --ink-3: #6a6a8c;
  --ink-mute: #9a9ab2;
  --line: rgba(120, 110, 180, 0.14);
  --line-2: rgba(120, 110, 180, 0.22);
  --purple: #7c3aed;
  --pink: #e879f9;
  --mint: #5eead4;
  --peach: #fdba74;
  --lav: #c4b5fd;
  --rose: #fda4af;
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.45);
  --orange: #f97316;
  --red: #ef4444;
  --gold: #d4a017;
  --serif: 'Instrument Serif', serif;
  --sans: 'Inter', system-ui, sans-serif;

  --glass: rgba(255, 255, 255, 0.55);
  --glass-2: rgba(255, 255, 255, 0.72);
  --glass-edge: rgba(255, 255, 255, 0.9);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }

/* ===== ORBS BACKGROUND ===== */
.orbs {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
  animation: float 28s ease-in-out infinite;
}
.orb.pink { background: radial-gradient(circle, #f9a8d4, #e879f9); width: 520px; height: 520px; top: -120px; left: -100px; animation-delay: 0s; }
.orb.lav { background: radial-gradient(circle, #c4b5fd, #a78bfa); width: 580px; height: 580px; top: 18%; right: -180px; animation-delay: -6s; }
.orb.mint { background: radial-gradient(circle, #99f6e4, #5eead4); width: 460px; height: 460px; top: 60%; left: 8%; animation-delay: -12s; }
.orb.peach { background: radial-gradient(circle, #fed7aa, #fdba74); width: 500px; height: 500px; top: 78%; right: 10%; animation-delay: -18s; }
.orb.rose { background: radial-gradient(circle, #fecdd3, #fda4af); width: 380px; height: 380px; top: 40%; left: 45%; animation-delay: -22s; opacity: 0.4; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -60px) scale(1.08); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(-50px, -30px) scale(1.05); }
}

/* Subtle grain layer */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255,255,255,0.4), transparent 50%);
}

/* ===== GLASS BASE ===== */
.glass {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-edge);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 -1px 0 rgba(255,255,255,0.4) inset,
    0 8px 32px rgba(124, 58, 237, 0.08),
    0 2px 8px rgba(232, 121, 249, 0.05);
  border-radius: 28px;
  position: relative;
}
.glass-strong {
  background: var(--glass-2);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}

/* iridescent edge */
.iridescent {
  position: relative;
}
.iridescent::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(232, 121, 249, 0.6),
    rgba(124, 58, 237, 0.3),
    rgba(94, 234, 212, 0.5),
    rgba(253, 186, 116, 0.4),
    rgba(232, 121, 249, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.7;
}

/* eyebrow / labels */
.eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--purple); font-weight: 700;
}
.divider-grad {
  width: 60px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--mint));
  margin: 14px 0;
}
.divider-grad.center { margin: 14px auto; }

/* ===== TOP BAR ===== */
.topbar {
  position: relative; z-index: 40;
  font-size: 12px; padding: 0 18px;
  margin: 14px auto 0; max-width: 1380px;
}
@media (max-width: 1100px) {
  .topbar { font-size: 11.5px; }
  .topbar .tb-left, .topbar .tb-right { gap: 12px; }
  .topbar .tb-left .sep:first-of-type ~ span:not(.sep) { display: none; }
}
.topbar-inner {
  background: var(--glass-2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-edge);
  border-radius: 100px;
  padding: 8px 22px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}
.topbar a { color: var(--ink-2); transition: color .2s; }
.topbar a:hover { color: var(--purple); }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar .wa { color: var(--green); font-weight: 600; }
.topbar .phone { color: var(--purple); font-weight: 600; letter-spacing: 0.04em; }
.topbar .sep { color: var(--ink-mute); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 14px; z-index: 50;
  margin: 14px auto 0; max-width: 1380px; padding: 0 18px;
}
.header-inner {
  background: var(--glass-2);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid var(--glass-edge);
  border-radius: 100px;
  padding: 10px 16px 10px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 8px 32px rgba(124, 58, 237, 0.10);
}
.header-inner .nav { flex: 1; justify-content: center; }
.logo {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1; white-space: nowrap; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #e879f9 50%, #f97316 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo .glow {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(from 0deg, #e879f9, #7c3aed, #5eead4, #fdba74, #e879f9);
  filter: blur(2px);
}
.nav {
  display: flex; gap: 2px;
  font-size: 12.5px; font-weight: 500;
  flex-wrap: nowrap;
}
.nav-link {
  color: var(--ink-2); padding: 8px 11px; border-radius: 100px;
  transition: all .25s; white-space: nowrap; display: flex; align-items: center; gap: 4px;
}
@media (max-width: 1180px) {
  .nav { font-size: 12px; gap: 0; }
  .nav-link { padding: 8px 9px; }
  .logo { font-size: 20px; }
  .logo .glow { width: 22px; height: 22px; }
  .header-actions .icon-btn { display: none; }
}
.nav-link:hover { background: rgba(255,255,255,0.7); color: var(--purple); }
.nav-link.active {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(232,121,249,0.12));
  color: var(--purple); font-weight: 600;
}
.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-edge);
  display: grid; place-items: center;
  color: var(--ink-2); transition: all .25s;
  backdrop-filter: blur(20px);
}
.icon-btn:hover { background: white; color: var(--purple); transform: scale(1.05); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
  transition: all .25s; cursor: pointer; position: relative; overflow: hidden;
}
.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 24px rgba(16, 185, 129, 0.45),
    0 0 0 1px rgba(16, 185, 129, 0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 32px rgba(16, 185, 129, 0.55); }
.btn-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #e879f9 100%);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 24px rgba(124, 58, 237, 0.4);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 32px rgba(124, 58, 237, 0.55); }
.btn-glass {
  background: var(--glass-2);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-edge);
  color: var(--ink); font-weight: 600;
  box-shadow: 0 4px 16px rgba(124,58,237,0.08);
}
.btn-glass:hover { background: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.15); }
.btn-phone {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px rgba(239, 68, 68, 0.4);
}
.btn-phone:hover { transform: translateY(-2px); }

.btn::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left .6s;
}
.btn:hover::after { left: 130%; }

/* ===== WARNING (orange tinted glass) ===== */
.warning-glass {
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.25), rgba(249, 115, 22, 0.15));
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(253, 186, 116, 0.5);
  border-radius: 24px;
  padding: 22px 26px;
  display: flex; gap: 16px; align-items: center;
  color: #7c2d12;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 24px rgba(249, 115, 22, 0.15);
}
.warning-glass .icn {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: white; display: grid; place-items: center; font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.warning-glass strong { color: #9a3412; }

/* ===== BOTTLE PLACEHOLDER ===== */
.bottle-ph {
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  border-radius: 20px;
}
.bottle-ph::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,121,249,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(94,234,212,0.18), transparent 50%);
}
.bottle-ph svg { width: 50%; height: 60%; opacity: 0.8; }
.bottle-ph .brand-stamp {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center; font-family: var(--serif);
  color: var(--purple); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; font-style: italic;
  opacity: 0.7;
}

/* ===== PRODUCT CARD ===== */
.pcard {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-edge);
  border-radius: 28px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 8px 28px rgba(124,58,237,0.08);
}
.pcard:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 20px 48px rgba(232, 121, 249, 0.22),
    0 8px 24px rgba(124, 58, 237, 0.18);
  background: var(--glass-2);
}
.pcard .pimg { aspect-ratio: 1; position: relative; margin: 10px; border-radius: 20px; overflow: hidden; }
.pcard .gender-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--glass-2); backdrop-filter: blur(20px);
  color: var(--purple); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--glass-edge); text-transform: uppercase;
}
.pcard .save-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white; font-size: 11px; font-weight: 700;
  padding: 6px 11px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.pcard .pinfo { padding: 16px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pcard .pbrand {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple); font-weight: 700; margin-bottom: 6px;
}
.pcard .pname {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); line-height: 1.15; margin-bottom: 6px;
  min-height: 50px;
}
.pcard .psize { font-size: 12.5px; color: var(--ink-3); margin-bottom: 16px; }
.pcard .price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--line);
  margin-bottom: 14px;
}
.pcard .pprice {
  background: linear-gradient(135deg, #7c3aed, #e879f9);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-size: 26px; font-weight: 800; font-family: var(--sans);
}
.pcard .pmsrp { color: var(--ink-mute); font-size: 13px; text-decoration: line-through; }
.pcard .pactions { display: flex; gap: 6px; }
.pcard .pact-wa, .pcard .pact-call {
  flex: 1; padding: 11px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 100px; transition: all .25s;
}
.pcard .pact-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}
.pcard .pact-wa:hover { box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5); }
.pcard .pact-call {
  background: rgba(255,255,255,0.7); color: var(--purple);
  border: 1px solid var(--glass-edge);
}
.pcard .pact-call:hover { background: white; }

/* ===== SECTIONS ===== */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 30px; flex-wrap: wrap;
}
.section-title {
  font-family: var(--serif); font-size: 56px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.0;
}
.section-title .grad {
  background: linear-gradient(135deg, #7c3aed, #e879f9, #f97316);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic;
}

/* ===== FOOTER ===== */
.footer { margin-top: 100px; padding: 0 18px 24px; position: relative; z-index: 2; }
.footer-inner {
  background: var(--glass-2);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-edge);
  border-radius: 36px;
  padding: 60px 50px 24px;
  max-width: 1380px; margin: 0 auto;
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 8px 32px rgba(124,58,237,0.08);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px; padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--ink-2); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--purple); }
.footer .ftxt { color: var(--ink-3); font-size: 14px; line-height: 1.7; margin-top: 18px; max-width: 380px; }
.footer .ftxt strong { color: var(--ink); }
.footer-bottom {
  padding: 20px 0 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 12.5px; color: var(--ink-3);
}
.footer-disc {
  margin: 18px 0 0; padding: 14px 22px;
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.3), rgba(249, 115, 22, 0.18));
  border: 1px solid rgba(253, 186, 116, 0.45);
  border-radius: 100px; font-size: 12.5px; color: #9a3412;
  text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-3); padding: 24px 0 0;
}
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .sep { color: var(--ink-mute); }
.breadcrumb .current { color: var(--purple); font-weight: 600; }

.muted { color: var(--ink-mute); }
.dim { color: var(--ink-3); }

/* ===== PRODUCT GRID ===== */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width:1024px){ .pcard-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px){ .pcard-grid { grid-template-columns: repeat(2,1fr); gap:14px; } }
@media(max-width:480px){ .pcard-grid { grid-template-columns: repeat(2,1fr); gap:10px; } }

/* 3 columns when product grid is inside sidebar layout (desktop only) */
@media (min-width: 769px) {
  .layout .product-grid-cat { grid-template-columns: repeat(3, 1fr); }
}

