/* =====================================================
   PASTANE.CSS — Nehir Pastanesi Alt Sitesi
   Tema: Gül Kurusu / Altın / Krem
   ===================================================== */

/* ─── Body & Base ─── */
body.pastane-page {
  background: var(--p-cream);
  color: var(--p-text);
  font-family: 'Lato', sans-serif;
}

/* ─── HEADER ─── */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.4s ease;
  padding: 0;
}

.p-header.scrolled {
  background: rgba(253, 246, 240, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(61, 31, 13, 0.08);
}

.p-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

.p-back-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(61, 31, 13, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.p-back-link:hover { color: var(--p-choco); }

.p-logo {
  text-align: center;
}
.p-logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--p-choco);
  letter-spacing: 0.02em;
  line-height: 1;
}
.p-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--p-gold);
  font-weight: 700;
  display: block;
  margin-top: 0.2rem;
}

.p-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p-choco);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.p-nav a:hover { opacity: 1; }

.p-qrmenu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem;
  background: linear-gradient(135deg, #3d1f0d 0%, #522a12 50%, #3d1f0d 100%);
  color: #f7df94 !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 168, 67, 0.6);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(61, 31, 13, 0.3), inset 0 0 8px rgba(212, 168, 67, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-qrmenu-btn:hover {
  background: linear-gradient(135deg, #522a12 0%, #6b3718 100%);
  border-color: #f7df94;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(61, 31, 13, 0.45), 0 0 15px rgba(212, 168, 67, 0.3);
}

.qr-btn-icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 0 4px rgba(212, 168, 67, 0.5));
}

.p-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.p-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--p-choco);
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─── */
.p-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--p-cream);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.p-mobile-nav.open { display: flex; }
.p-mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--p-choco);
  transition: color 0.2s;
}
.p-mobile-nav a:hover { color: var(--p-gold); }
.p-mobile-nav .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--p-choco);
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── HERO SECTION ─── */
.p-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.p-hero-slider {
  position: absolute;
  inset: 0;
}

.p-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 40%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: contrast(1.03) brightness(0.96);
  image-rendering: -webkit-optimize-contrast;
  will-change: opacity, transform;
}
.p-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.p-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 10, 4, 0.25) 0%,
    rgba(20, 10, 4, 0.55) 60%,
    rgba(10, 5, 2, 0.8) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(10, 5, 2, 0.5) 0%,
    transparent 20%,
    transparent 70%,
    rgba(10, 5, 2, 0.85) 100%
  );
  pointer-events: none;
}

.p-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 2rem;
  padding-top: 80px;
}

.p-hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.p-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.p-hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.p-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(245, 198, 198, 0.5);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.p-hero-cta:hover {
  background: rgba(212, 168, 67, 0.25);
  border-color: var(--p-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Slider dots */
.p-hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.p-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.p-hero-dot.active {
  background: var(--p-gold);
  transform: scale(1.3);
}

/* ─── FEATURES BAR ─── */
.p-features {
  background: var(--p-choco);
  padding: 1.5rem 2rem;
}
.p-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
}
.p-feature-icon {
  font-size: 1.5rem;
}
.p-feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--p-gold);
  letter-spacing: 0.05em;
}
.p-feature-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}
.p-features-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ─── SECTION COMMON ─── */
.p-section {
  padding: var(--gap-xl) var(--gap-md);
}
.p-section-alt {
  background: #f5ece5;
}

.p-section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.p-section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 0.5rem;
  display: block;
}
.p-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--p-choco);
  line-height: 1.2;
}
.p-section-desc {
  font-size: 1rem;
  color: rgba(61, 31, 13, 0.6);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PRODUCT TABS ─── */
.p-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.p-tab-btn {
  padding: 0.75rem 1.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-choco);
  border: 1.5px solid rgba(61, 31, 13, 0.18);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(61, 31, 13, 0.04);
}
.p-tab-btn:hover {
  background: #3d1f0d;
  color: #c9a84c;
  border-color: #3d1f0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 31, 13, 0.15);
}
.p-tab-btn.active {
  background: linear-gradient(135deg, #3d1f0d 0%, #200f05 100%);
  color: #e5c158;
  border-color: #c9a84c;
  box-shadow: 0 8px 25px rgba(61, 31, 13, 0.25), inset 0 0 10px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.p-tab-panel { display: none; }
.p-tab-panel.active { display: block; }

/* ─── PRODUCT GRID ─── */
.p-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.p-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 10px 30px rgba(61, 31, 13, 0.07);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.p-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(61, 31, 13, 0.16);
  border-color: rgba(201, 168, 76, 0.55);
}

.p-product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fbf7f4;
}
.p-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.p-product-card:hover .p-product-img-wrap img {
  transform: scale(1.08);
}

.p-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(32, 15, 5, 0.88);
  backdrop-filter: blur(6px);
  color: #e5c158;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.p-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 15, 5, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  z-index: 1;
}
.p-product-card:hover .p-product-overlay { opacity: 1; }
.p-product-overlay-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.p-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.3rem;
  background: #ffffff;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.p-product-card:hover .p-product-info {
  border-color: var(--p-gold);
}

.p-product-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.35rem;
}

.p-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--p-choco);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  transition: color 0.3s;
}
.p-product-card:hover .p-product-name {
  color: #8c531b;
}

.p-product-quote {
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5c4333;
  margin-bottom: 1rem;
  flex: 1;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(201, 168, 76, 0.45);
}

.p-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(61, 31, 13, 0.08);
  margin-top: auto;
}

.p-product-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8c531b;
  text-decoration: none;
  transition: all 0.3s;
}
.p-product-action:hover {
  color: #c9a84c;
  transform: translateX(3px);
}

.p-product-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: #7d6b5e;
  background: #f7f1eb;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ─── KADEMELİ ÜRÜN YÜKLEME (LOAD MORE) BUTONU ─── */
.p-load-more-wrap {
  display: none; /* Masaüstünde tamamen gizli */
}

/* ─── ABOUT / STORY ─── */
.p-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.p-story-img-wrap {
  position: relative;
  border-radius: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.p-story-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 639 / 859;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: block;
}
.p-story-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--p-choco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--p-gold);
}
.p-story-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.p-story-img-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.7);
}

.p-story-text {}
.p-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--p-choco);
  line-height: 1.5;
  border-left: 3px solid var(--p-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.p-story-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(61, 31, 13, 0.7);
}
.p-story-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(135deg, #3d1f0d 0%, #251206 100%);
  border: 1px solid rgba(212, 168, 67, 0.45);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(61, 31, 13, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.p-stat {
  flex: 1;
  text-align: center;
}
.p-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--p-gold);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.p-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5eedc;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.92;
}
.p-stat-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.35), transparent);
  flex-shrink: 0;
}

/* ─── GELENEKSEL LEZZET ÇIKARTMASI (TRADITION STICKER) ─── */
.tradition-sticker {
  position: fixed;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  perspective: 1000px;
}

.sticker-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(165deg, #96643c 0%, #6e3e1c 45%, #4a210b 100%);
  border: 3px solid #d4a843;
  border-radius: 46px;
  padding: 1.25rem 0.75rem 1rem;
  width: 88px;
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(212, 168, 67, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -3px 6px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  animation: stickerFloat 4.5s ease-in-out infinite;
}

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-8px) rotate(1.5deg); }
}

.sticker-link:hover {
  transform: translateY(-8px) scale(1.08) rotate(0deg);
  border-color: #f7df94;
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(247, 223, 148, 0.6);
}

/* İki Şef İllüstrasyonu (Büyük & Küçük) */
.sticker-chefs-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-top: -12px;
  margin-bottom: 0.4rem;
}

.chef-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.chef-hat-svg {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}

.chef-face {
  width: 22px;
  height: 18px;
  background: #fcd9b8;
  border-radius: 50% 50% 45% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
  border: 1px solid #c99365;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.little-chef .chef-face {
  width: 18px;
  height: 15px;
}

.chef-eyes {
  font-size: 0.5rem;
  color: #5c381c;
  display: flex;
  gap: 4px;
  line-height: 1;
}

.chef-smile {
  width: 6px;
  height: 3px;
  border-bottom: 1.5px solid #a34825;
  border-radius: 0 0 6px 6px;
  margin-top: 1px;
}

.chef-apron {
  margin-top: -3px;
}

.apron-dish {
  font-size: 0.85rem;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.little-chef {
  transform: scale(0.85) translateY(2px);
}

.sticker-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.15;
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(247, 223, 148, 0.5);
  border-bottom: 1px dashed rgba(247, 223, 148, 0.5);
  width: 100%;
}

.sticker-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
}

.sticker-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  color: #f7df94;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2px 0;
}

.sticker-strong {
  font-family: 'Playfair Display', serif;
  font-size: 0.96rem;
  font-weight: 900;
  color: #ffd875;
  text-shadow: 0 2px 5px rgba(0,0,0,0.9);
  letter-spacing: 0.05em;
}

.sticker-meander-pattern {
  width: 100%;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.sticker-bottom-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* ─── WHATSAPP KULAKLIKLI ŞEF DESTEK WIDGET'I ─── */
.wa-support-widget {
  position: fixed;
  right: 1.8rem;
  bottom: 2rem;
  z-index: 150;
}

.wa-support-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  animation: waFloat 4.5s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wa-support-link:hover {
  transform: translateY(-8px) scale(1.08);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Kulaklıklı Şef Figürü */
.wa-chef-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -18px;
}

.wa-chef-hat {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.wa-chef-head {
  width: 32px;
  height: 28px;
  background: #fcd9b8;
  border-radius: 50% 50% 45% 45%;
  position: relative;
  border: 1px solid #c99365;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Kulaklık Bandı ve Kulaklıklar */
.wa-headset-band {
  position: absolute;
  top: -2px;
  left: 3px;
  right: 3px;
  height: 8px;
  border-top: 2.5px solid #222;
  border-radius: 12px 12px 0 0;
}

.wa-headset-ear {
  position: absolute;
  top: 6px;
  width: 7px;
  height: 12px;
  background: #111;
  border-radius: 4px;
}
.wa-headset-ear.left  { left: -4px; }
.wa-headset-ear.right { right: -4px; }

.wa-headset-mic {
  position: absolute;
  bottom: 2px;
  right: -2px;
  width: 14px;
  height: 6px;
  border-bottom: 2px solid #222;
  border-left: 2px solid #222;
  border-radius: 0 0 0 6px;
  transform: rotate(-15deg);
}

.wa-eyes {
  font-size: 0.6rem;
  color: #4a2810;
  display: flex;
  gap: 6px;
  line-height: 1;
}

.wa-smile {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #a34825;
  border-radius: 0 0 8px 8px;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
}

.wa-chef-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -3px;
}

.wa-apron-cloth {
  width: 22px;
  height: 14px;
  background: #784a25;
  border-radius: 2px 2px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.wa-chef-feet {
  display: flex;
  gap: 6px;
  margin-top: 1px;
}
.wa-chef-feet span {
  width: 6px;
  height: 4px;
  background: #42230f;
  border-radius: 2px;
}

/* WhatsApp Destek Kapsülü (3. görsel stili) */
.wa-support-capsule {
  background: #f7f3eb;
  border: 2.5px solid #25D366;
  border-radius: 40px;
  padding: 1.4rem 0.95rem 0.95rem;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 
    0 14px 32px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(37, 211, 102, 0.3);
  position: relative;
}

.wa-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #63381a;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.wa-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: #946039;
  margin-bottom: 0.55rem;
}

.wa-green-circle {
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-support-link:hover .wa-green-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.9);
}

.wa-official-logo {
  display: block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}

/* QR Modal */
.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.qr-modal.open { display: flex; }
.qr-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(61,31,13,0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.qr-modal-box {
  position: relative;
  background: var(--p-cream);
  padding: 3rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  z-index: 1;
  animation: modalIn 0.4s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.qr-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--p-choco);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.qr-modal-close:hover { opacity: 1; }
.qr-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--p-choco);
  margin-bottom: 0.5rem;
}
.qr-modal-subtitle {
  font-size: 0.8rem;
  color: rgba(61,31,13,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.qr-code-box {
  width: 200px;
  height: 200px;
  background: #fff;
  border: 8px solid var(--p-choco);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(61,31,13,0.4);
  flex-direction: column;
  gap: 0.5rem;
}
.qr-code-box .qr-icon { font-size: 4rem; }
.qr-modal-hint {
  font-size: 0.8rem;
  color: rgba(61,31,13,0.5);
  line-height: 1.6;
}
.qr-modal-tel {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  background: var(--p-choco);
  color: var(--p-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.2s;
}
.qr-modal-tel:hover {
  background: var(--p-gold);
  color: var(--p-choco);
}

/* ─── WHATSAPP KULAKLIKLI ŞEF DESTEK WIDGET'I ─── */
.wa-support-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 150;
}

.wa-support-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  animation: waFloat 4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wa-support-link:hover {
  transform: translateY(-6px) scale(1.06);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Kulaklıklı Şef */
.wa-chef-headset {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -18px;
}

.chef-headset-avatar {
  position: relative;
  display: inline-block;
}

.chef-toque {
  font-size: 2.2rem;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.headset-mic {
  position: absolute;
  top: 6px;
  right: -6px;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.wa-chef-apron {
  position: relative;
  margin-top: -6px;
}

.wa-mini-badge {
  font-size: 0.8rem;
  background: #25D366;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Destek Kapsülü (3. görsel stili) */
.wa-support-capsule {
  background: #f7f3eb;
  border: 2px solid #25D366;
  border-radius: 35px;
  padding: 1.3rem 0.85rem 0.85rem;
  width: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(37, 211, 102, 0.25);
  position: relative;
}

.wa-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #784a25;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.wa-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: #a3754e;
  margin-bottom: 0.5rem;
}

.wa-green-circle {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-support-link:hover .wa-green-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.85);
}

.wa-icon-svg {
  font-size: 1.45rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* ─── INSTAGRAM FEED CAROUSEL ─── */
.p-instagram {
  background: var(--p-choco);
  padding: var(--gap-lg) 0;
  text-align: center;
  overflow: hidden;
}
.p-instagram .p-section-title { color: var(--p-gold); }
.p-instagram .p-section-desc { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.p-instagram .p-section-tag { color: rgba(212,168,67,0.8); }

.p-insta-slider-container {
  width: 100%;
  max-width: 1240px;
  margin: 2.5rem auto 2rem;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.p-insta-slides-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.p-insta-slide {
  width: 100%;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.p-insta-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.p-insta-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.p-insta-item {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  border: 1px solid rgba(212, 168, 67, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: #251206;
}
.p-insta-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--p-gold);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}
.p-insta-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.5s ease;
  filter: brightness(0.96);
}
.p-insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.p-insta-item .insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 18, 6, 0.92) 0%, rgba(61, 31, 13, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0.75rem;
  color: #fff;
  text-align: center;
}
.p-insta-item:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay-icon {
  width: 28px;
  height: 28px;
  stroke: var(--p-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.insta-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f5eedc;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  line-height: 1.25;
}

/* Slider Navigasyon Kontrolleri */
.p-insta-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.p-insta-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--p-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.p-insta-nav-btn:hover {
  background: var(--p-gold);
  color: var(--p-choco);
  border-color: var(--p-gold);
  transform: scale(1.08);
}

.p-insta-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.p-insta-dot {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: rgba(255, 255, 255, 0.65);
  padding: 0.45rem 1.15rem;
  border-radius: 25px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-insta-dot:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
  background: rgba(212, 168, 67, 0.12);
}
.p-insta-dot.active {
  background: var(--p-gold);
  color: var(--p-choco);
  border-color: var(--p-gold);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
}

.p-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  border: 1.5px solid var(--p-gold);
  border-radius: 50px;
  background: rgba(212, 168, 67, 0.08);
  color: var(--p-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.p-insta-follow .insta-btn-icon {
  stroke: var(--p-gold);
  transition: transform 0.3s ease;
}
.p-insta-follow:hover {
  background: var(--p-gold);
  color: var(--p-choco);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
  transform: translateY(-2px);
}
.p-insta-follow:hover .insta-btn-icon {
  stroke: var(--p-choco);
  transform: scale(1.15) rotate(5deg);
}

/* ─── CONTACT ─── */
.p-contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
  padding: 3.5rem 1.5rem;
}

.p-contact-info {
  padding: 2.5rem;
  background: linear-gradient(145deg, #3d1f0d 0%, #291408 100%);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.p-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-style: italic;
  color: var(--p-gold);
  margin-bottom: 1.25rem;
}

/* İşletme Yetkilisi Rozeti */
.p-contact-authority {
  margin-bottom: 1.75rem;
  display: inline-block;
}
.authority-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.2rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 12px;
}
.authority-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-gold);
  background: rgba(61, 31, 13, 0.8);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}
.authority-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.p-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}
.p-contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 168, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 10px;
  color: var(--p-gold);
}
.p-contact-icon svg {
  stroke: var(--p-gold);
}
.p-contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 0.3rem;
}
.p-contact-item p, .p-contact-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.p-contact-item a:hover { color: var(--p-gold); }

.p-phone-highlight {
  font-weight: 700;
  color: #ffffff !important;
  font-size: 1.05rem !important;
}
.p-phone-highlight:hover {
  color: var(--p-gold) !important;
}
.phone-type-tag {
  font-size: 0.72rem;
  color: rgba(212, 168, 67, 0.85);
  font-weight: 600;
  margin-left: 0.25rem;
}

/* Modern Action Buttons */
.p-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}
.p-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.p-action-btn .p-action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Instagram action button */
.p-action-btn.btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.p-action-btn.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.45);
}

/* Phone action button */
.p-action-btn.btn-call {
  background: linear-gradient(135deg, var(--p-gold) 0%, #b88a28 100%);
  color: #241206;
  border: 1px solid rgba(212, 168, 67, 0.4);
}
.p-action-btn.btn-call:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f0c978 0%, var(--p-gold) 100%);
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.45);
}

/* WhatsApp action button */
.p-action-btn.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.p-action-btn.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* Contact Map Wrapper */
.p-contact-map-wrapper {
  display: flex;
  height: 100%;
  min-height: 480px;
}
.p-contact-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: #251206;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 67, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.p-contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

/* ─── FOOTER ─── */
.p-footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
}
.p-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--p-gold);
  margin-bottom: 0.5rem;
}
.p-footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}
.p-footer-link {
  color: var(--p-gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.p-footer-link:hover { opacity: 1; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .p-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .p-story-img-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .p-story-img-wrap img { width: 100%; height: auto; aspect-ratio: 639 / 859; }
  .p-story-img-badge { display: none; }
  .p-insta-grid-6 { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .p-contact { grid-template-columns: 1fr; padding: 2.5rem 1rem; }
  .p-contact-map-wrapper { min-height: 380px; }
  .p-contact-map { min-height: 380px; height: 380px; }
}

@media (max-width: 768px) {
  .p-nav { display: none; }
  .p-menu-toggle { display: flex; }
  .tradition-sticker { left: 0.75rem; transform: translateY(-50%) scale(0.85); transform-origin: left center; }
  .wa-support-widget { right: 1rem; bottom: 1.5rem; transform: scale(0.9); transform-origin: right bottom; }
  .p-hero { height: 100svh; min-height: 520px; }
  .p-hero-slide { background-position: center 30%; }
  .p-product-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobilde ilk 3 ürün dışındakileri başlangıçta gizle */
  .p-product-grid:not(.is-expanded) > .p-product-card:nth-child(n+4) {
    display: none !important;
  }

  /* Açıldığında yumuşak kart geçiş animasyonu */
  .p-product-grid.is-expanded > .p-product-card:nth-child(n+4) {
    animation: pCardFadeIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  /* Mobilde 'Daha Fazla Gör' butonu */
  .p-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.25rem;
    position: relative;
    z-index: 5;
  }

  .p-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #dfb44a 0%, #caa035 50%, #a87e20 100%);
    color: #1f1007;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 235, 180, 0.6);
    border-radius: 50px;
    box-shadow: 
      0 8px 22px rgba(184, 136, 40, 0.32),
      0 2px 6px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .p-load-more-btn:hover,
  .p-load-more-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(184, 136, 40, 0.42);
  }

  .p-load-more-btn .btn-icon {
    width: 18px;
    height: 18px;
    stroke: #1f1007;
    stroke-width: 2.5;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: chevronBob 1.6s ease-in-out infinite;
  }

  .p-load-more-btn.is-expanded .btn-icon {
    transform: rotate(180deg);
    animation: none;
  }

  @keyframes chevronBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
  }

  @keyframes pCardFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .p-story-stats { padding: 1.1rem 1rem; gap: 0.75rem; }
  .p-story-stats strong { font-size: 1.85rem; }
  .p-story-stats span { font-size: 0.68rem; letter-spacing: 0.1em; }
  .p-features-inner { justify-content: flex-start; gap: 1.5rem; }
  .p-features-sep { display: none; }
  .p-insta-grid-6 { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .p-insta-dots { gap: 0.4rem; }
  .p-insta-dot { font-size: 0.68rem; padding: 0.4rem 0.85rem; }
}

@media (max-width: 540px) {
  .p-insta-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .p-insta-dots { flex-wrap: wrap; justify-content: center; }
  .p-insta-dot { font-size: 0.65rem; padding: 0.35rem 0.75rem; }
}

@media (max-width: 480px) {
  .tradition-sticker { left: 0.4rem; transform: translateY(-50%) scale(0.72); transform-origin: left center; }
  .wa-support-widget { right: 0.75rem; bottom: 1.25rem; transform: scale(0.82); transform-origin: right bottom; }
  .p-hero-slide { background-position: center 25%; }
  .p-product-grid { grid-template-columns: 1fr; }
  .p-section { padding: 3rem 1rem; }
  .p-story-stats { flex-direction: column; gap: 0.9rem; padding: 1.25rem 1rem; }
  .p-stat-sep { width: 60%; height: 1px; background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.4), transparent); }
  .p-contact-actions { flex-direction: column; }
  .p-action-btn { justify-content: center; width: 100%; }
  .p-hero-content { padding: 1.25rem; padding-top: 70px; }
  .p-contact-info { padding: 1.75rem 1.25rem; }
}
