/* =====================================================
   RESTORAN.CSS — Coffee Life Restoran & Cafe
   Tema: Espresso Koyu / Kehribar / Krem
   ===================================================== */

/* ─── Body & Base ─── */
body.restoran-page {
  background: var(--r-espresso-dark);
  color: var(--r-text);
  font-family: 'Open Sans', sans-serif;
}

/* ─── HEADER (AÇIK RENK & YÜKSEK OKUNABİLİRLİK) ─── */
.r-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.4s ease;
  background: linear-gradient(
    180deg,
    rgba(95, 62, 40, 0.90) 0%,
    rgba(75, 46, 28, 0.84) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(250, 238, 221, 0.3);
  box-shadow: 0 4px 25px rgba(25, 12, 6, 0.25);
}

.r-header.scrolled {
  background: linear-gradient(
    180deg,
    rgba(108, 72, 48, 0.96) 0%,
    rgba(86, 54, 34, 0.96) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 30px rgba(20, 10, 5, 0.4);
  border-bottom: 1px solid rgba(250, 238, 221, 0.45);
}

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

.r-back-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.r-back-link:hover {
  color: #ffe1be;
  transform: translateX(-3px);
}

.r-logo {
  text-align: center;
}
.r-logo-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.r-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffe1be;
  font-weight: 700;
  display: block;
  margin-top: 0.3rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.r-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.r-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.25s ease;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}
.r-nav a:hover {
  color: #ffe1be;
  text-shadow: 0 0 10px rgba(255, 225, 190, 0.6);
}

.r-qrmenu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 1.35rem;
  background: linear-gradient(135deg, var(--r-amber) 0%, #a84b16 100%);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(212, 120, 58, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}
.r-qrmenu-btn:hover {
  background: linear-gradient(135deg, var(--r-amber-light) 0%, var(--r-amber) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 120, 58, 0.65);
  color: #fff !important;
}
.r-qrmenu-btn .qr-btn-icon {
  font-size: 1rem;
}

.r-mobile-qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--r-amber) 0%, #a84b16 100%);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(212, 120, 58, 0.45);
  cursor: pointer;
  margin: 0.5rem 0;
}
.r-mobile-qr-btn:hover {
  background: linear-gradient(135deg, var(--r-amber-light) 0%, var(--r-amber) 100%);
}

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

/* ─── MOBILE NAV ─── */
.r-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--r-espresso-dark);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-left: 3px solid var(--r-amber);
}
.r-mobile-nav.open { display: flex; }
.r-mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r-cream);
  transition: color 0.2s;
}
.r-mobile-nav a:hover { color: var(--r-amber); }
.r-mobile-nav .r-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--r-amber);
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── HERO SECTION ─── */
.r-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--r-espresso-dark);
}

.r-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/restoran/hero_coffee_life_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.98) contrast(1.04) saturate(1.1);
  transition: transform 0.8s ease;
  z-index: 0;
}

/* ─── Hero Arka Plan Videosu (PC & Mobil Uyumlu) ─── */
.r-hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.r-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.96) contrast(1.04);
}

@media (min-aspect-ratio: 16/9) {
  .r-hero-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .r-hero-video {
    width: auto;
    height: 100%;
  }
}

.r-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Kenarlardaki karartıyı ve ağır havayı kaldırıp canlı, sıcak ve parlak kafe atmosferi */
  background: 
    radial-gradient(ellipse at center, rgba(20, 10, 5, 0.15) 0%, rgba(30, 15, 8, 0.30) 100%),
    linear-gradient(180deg, rgba(212, 120, 58, 0.10) 0%, rgba(245, 230, 208, 0.02) 50%, rgba(180, 90, 30, 0.18) 100%);
}

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

.r-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.r-hero-eyebrow::before,
.r-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--r-amber);
}
.r-hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--r-amber);
}

.r-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 120, 58, 0.5);
}

.r-hero-title span {
  color: #ff9d47;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 30px rgba(232, 148, 78, 0.6);
}

.r-hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.r-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.r-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--r-amber);
  color: var(--r-espresso-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.r-btn-primary:hover {
  background: var(--r-amber-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 120, 58, 0.4);
}

.r-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(245, 230, 208, 0.3);
  color: var(--r-cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.r-btn-ghost:hover {
  border-color: var(--r-amber);
  color: var(--r-amber);
}

/* ─── SMOKE EFFECT (CSS) ─── */
.r-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--r-espresso-dark), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ─── FEATURES BAR ─── */
.r-features {
  background: var(--r-espresso);
  border-top: 1px solid rgba(212, 120, 58, 0.15);
  border-bottom: 1px solid rgba(212, 120, 58, 0.15);
  padding: 1.5rem 2rem;
}
.r-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.r-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--r-cream);
}
.r-feature-icon { font-size: 1.5rem; }
.r-feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--r-amber);
  letter-spacing: 0.05em;
  font-family: 'Oswald', sans-serif;
}
.r-feature-text span {
  font-size: 0.68rem;
  color: rgba(245, 230, 208, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.r-features-sep {
  width: 1px;
  height: 30px;
  background: rgba(212, 120, 58, 0.2);
}

/* ─── SECTION COMMON ─── */
.r-section {
  padding: var(--gap-xl) var(--gap-md);
}
.r-section-dark { background: var(--r-espresso-dark); }
.r-section-mid  { background: var(--r-espresso); }

/* ─── LEZZETLERİMİZ MENÜMÜZ: CANLI KREM & KAHVERENGİ DALGALI DESEN ARKA PLANI ─── */
#menu.r-section {
  position: relative;
  overflow: hidden;
  background-color: #180c07;
  background-image:
    url('../img/restoran/menu_wave_bg.svg'),
    radial-gradient(ellipse 90% 50% at 20% 15%, rgba(250, 238, 221, 0.18) 0%, transparent 60%),
    radial-gradient(circle 800px at 85% 55%, rgba(212, 120, 58, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 95% 60% at 50% 95%, rgba(250, 238, 221, 0.14) 0%, transparent 70%),
    linear-gradient(180deg, #1c0e07 0%, #28140a 25%, #1e0e07 50%, #2a150b 75%, #180c07 100%);
  background-repeat: repeat-y, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% auto, auto, auto, auto, auto;
  background-position: top center;
}

/* Canlı, hafif latte art / kahve ışıltı katmanı */
#menu.r-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20px 20px, rgba(250, 238, 221, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 60px 60px, rgba(212, 120, 58, 0.07) 1.5px, transparent 1.5px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

#menu.r-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(250, 238, 221, 0.6) 25%, rgba(212, 120, 58, 0.8) 50%, rgba(250, 238, 221, 0.6) 75%, transparent);
  pointer-events: none;
  z-index: 2;
}

#menu .container {
  position: relative;
  z-index: 3;
}

.r-section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.r-section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  font-size: clamp(0.82rem, 1.8vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--r-amber);
  color: #ff9d47;
  display: block;
  margin-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.r-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r-cream);
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 120, 58, 0.35);
}
.r-section-title span { color: var(--r-amber); }
.r-section-title span {
  color: #ff9d47;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 157, 71, 0.55);
}
.r-section-desc {
  font-size: 0.9rem;
  color: rgba(245, 230, 208, 0.5);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 500px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 1.2rem;
  line-height: 1.85;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* ─── PRODUCT TABS ─── */
.r-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  border: 1px solid rgba(212, 120, 58, 0.2);
  max-width: 700px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.r-tab-btn {
  flex: 1;
  padding: 0.8rem 1rem;
  padding: 0.85rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 230, 208, 0.5);
  border: none;
  background: transparent;
  border-right: 1px solid rgba(212, 120, 58, 0.15);
  transition: all 0.3s;
  color: rgba(245, 230, 208, 0.65);
  border: 1px solid rgba(212, 120, 58, 0.3);
  border-radius: 50px;
  background: rgba(28, 16, 8, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.r-tab-btn:last-child { border-right: 0; }
.r-tab-btn.active {
  background: var(--r-amber);
  color: var(--r-espresso-dark);
  background: linear-gradient(135deg, var(--r-amber) 0%, #a84b16 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 18px rgba(212, 120, 58, 0.45);
  transform: translateY(-2px);
}
.r-tab-btn:hover:not(.active) {
  color: var(--r-amber);
  background: rgba(212, 120, 58, 0.08);
  color: var(--r-amber-light);
  border-color: var(--r-amber);
  background: rgba(212, 120, 58, 0.15);
}

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

/* ─── PRODUCT GRID & GLASSMORPHISM CARDS ─── */
.r-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.r-product-card {
  position: relative;
  background: rgba(28, 16, 8, 0.75);
  border: 1px solid rgba(212, 120, 58, 0.2);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.r-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 120, 58, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 120, 58, 0.22);
  z-index: 2;
}

.r-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #120b07;
}

.r-product-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9) saturate(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.r-product-card:hover .r-product-img {
  filter: brightness(1.05) saturate(1.08);
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════════
   ÖZEL ÜRÜN ODAKLAMA & KADRAJ AYARLARI (Focal Alignments)
   ═══════════════════════════════════════════════════════════════ */
/* Sıcak & Soğuk İçecekler */
[data-slug="icecek_espresso"] .r-product-img { object-position: 65% center; }
[data-slug="icecek_caramel_macchiato"] .r-product-img { object-position: center 60%; }
[data-slug="icecek_salep"] .r-product-img { object-position: center 75%; }
[data-slug="icecek_caffe_latte"] .r-product-img { object-position: center center; }
[data-slug="icecek_ice_latte"] .r-product-img { object-position: center center; }
[data-slug="icecek_limonata"] .r-product-img { object-position: center center; }

/* Özel Kokteyller & Frozen */
[data-slug="kokteyl_atom_frozen"] .r-product-img { object-position: center 62%; }
[data-slug="kokteyl_vicci"] .r-product-img { object-position: center 65%; }
[data-slug="kokteyl_blue_tigger"] .r-product-img { object-position: center 66%; }
[data-slug="kokteyl_moscow"] .r-product-img { object-position: center 74%; }
[data-slug="kokteyl_oreolu_frappe"] .r-product-img { object-position: center 28%; }
[data-slug="kokteyl_molakai"] .r-product-img { object-position: center center; }
[data-slug="kokteyl_caramel_milkshake"] .r-product-img { object-position: center 20%; }
[data-slug="kokteyl_cikolatali_milkshake"] .r-product-img { object-position: center 28%; }
[data-slug="kokteyl_ejder_meyveli"] .r-product-img { object-position: center center; }
[data-slug="kokteyl_madagaskar"] .r-product-img { object-position: center 52%; }
[data-slug="kokteyl_strawberry_natural_soda"] .r-product-img,
[data-slug="kokteyl_strawberry_soda"] .r-product-img { object-position: center 65%; }
[data-slug="kokteyl_kuzukulagi"] .r-product-img { object-position: center center; }
[data-slug="kokteyl_mojito"] .r-product-img { object-position: center center; }

/* Sıcak & Soğuk Yemekler */
[data-slug="yemek_steak_dallas"] .r-product-img { object-position: center center; }
[data-slug="yemek_steak_biftek"] .r-product-img { object-position: center center; }
[data-slug="yemek_sebze_guvec"] .r-product-img { object-position: center center; }
[data-slug="yemek_fajita"] .r-product-img { object-position: center center; }

/* Tatlılarımız */
[data-slug="tatli_waffle"] .r-product-img { object-position: center center; }
[data-slug="tatli_sufle"] .r-product-img { object-position: center center; }
[data-slug="tatli_fistikli_mousse"] .r-product-img { object-position: center center; }
[data-slug="tatli_cikolatali_mousse"] .r-product-img { object-position: center center; }
[data-slug="tatli_meyve_sepeti"] .r-product-img { object-position: center center; }

.r-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(15, 9, 6, 0.82);
  border: 1px solid rgba(212, 120, 58, 0.5);
  backdrop-filter: blur(8px);
  color: var(--r-amber-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Placeholder for Serpme Kahvaltı */
.r-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(212, 120, 58, 0.14) 0%, rgba(15, 9, 6, 0.95) 75%);
  border: 2px dashed rgba(212, 120, 58, 0.4);
  padding: 1.5rem;
  text-align: center;
  color: rgba(245, 230, 208, 0.5);
}

.r-placeholder-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.6rem;
  color: var(--r-amber);
  opacity: 0.85;
  animation: floatPlaceholder 3s ease-in-out infinite;
}

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

.r-placeholder-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--r-amber-light);
  margin-bottom: 0.2rem;
}

.r-placeholder-sub {
  font-size: 0.68rem;
  color: rgba(245, 230, 208, 0.4);
}

.r-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.r-product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--r-cream);
  margin-bottom: 0.45rem;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.r-product-card:hover .r-product-name {
  color: var(--r-amber-light);
}

.r-product-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 230, 208, 0.65);
  margin: 0;
  font-weight: 400;
}

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

/* ─── KONSEPT QUOTE SECTION (LÜKS LOUNGE & CAFE ATMOSFERİ) ─── */
.r-quote-section {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #140905;
  background-image: 
    radial-gradient(circle 600px at 50% 50%, rgba(224, 122, 45, 0.18) 0%, rgba(20, 10, 5, 0.95) 75%),
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(250, 238, 221, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #100603 0%, #1a0b06 50%, #120703 100%);
  border-top: 1px solid rgba(250, 238, 221, 0.25);
  border-bottom: 1px solid rgba(250, 238, 221, 0.25);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.r-quote-ambient-light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(232, 130, 48, 0.15) 0%, rgba(212, 120, 58, 0.05) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  animation: rQuotePulse 6s ease-in-out infinite alternate;
}

@keyframes rQuotePulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.r-quote-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.r-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(35, 18, 10, 0.7);
  border: 1px solid rgba(212, 120, 58, 0.4);
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffb873;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.r-quote-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9d47;
  box-shadow: 0 0 8px #ff9d47;
}

.r-quote-mark {
  font-size: 4.5rem;
  color: #ff9d47;
  opacity: 0.45;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 0.6;
  display: block;
  margin: 0 auto 0.8rem;
  text-shadow: 0 0 20px rgba(255, 157, 71, 0.4);
}

.r-quote-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 auto 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.r-quote-text .highlight {
  color: #ff9d47;
  background: linear-gradient(135deg, #ffb873 0%, #ff831e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 148, 56, 0.4);
}

.r-quote-author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
}

.r-quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 120, 58, 0.5), transparent);
}

.r-quote-author {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 238, 221, 0.75);
  margin: 0;
  white-space: nowrap;
}

/* ─── ABOUT SECTION & SİVEREK'İN KALBİ MİKRO ROZETİ ─── */
.r-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.r-story-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 120, 58, 0.2);
  border: 1px solid rgba(212, 120, 58, 0.35);
  background: #140904;
}

.r-story-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.98) saturate(1.05) contrast(1.03);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.r-story-img-wrap:hover img {
  transform: scale(1.04);
}

/* "Siverek'in Kalbi" Mikro Rozeti */
.r-story-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.2rem;
  background: rgba(24, 12, 6, 0.85);
  border: 1px solid rgba(250, 238, 221, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 120, 58, 0.35);
  animation: badgeGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes badgeGlowPulse {
  0% { border-color: rgba(212, 120, 58, 0.4); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); }
  100% { border-color: rgba(255, 184, 115, 0.8); box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 157, 71, 0.45); }
}

.story-badge-icon {
  font-size: 1rem;
}

.story-badge-text {
  color: #ffe8d2;
}

/* Editoryal İtalik Tipografi */
.r-story-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  border-left: 3px solid #ff9d47;
  padding-left: 1.5rem;
  line-height: 1.55;
  margin: 1.8rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.r-story-editorial {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* 3 Parçalı İstatistik Bileşeni */
.r-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 120, 58, 0.25);
}

.r-stat-card {
  background: rgba(35, 18, 10, 0.6);
  border: 1px solid rgba(212, 120, 58, 0.3);
  border-radius: 12px;
  padding: 1rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.r-stat-card:hover {
  transform: translateY(-3px);
  border-color: #ff9d47;
  background: rgba(45, 22, 12, 0.75);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 120, 58, 0.3);
}

.r-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ff9d47;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(255, 157, 71, 0.35);
}

.r-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  display: block;
}

/* ─── 3D BARİSTA MASTER ÇIKARTMASI (SOL STICKER) ─── */
.cafe-master-sticker {
  position: fixed;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  perspective: 1000px;
  width: 96px;
  max-width: 96px;
  pointer-events: auto;
}

.cafe-sticker-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(165deg, #24140a 0%, #150b06 50%, #0a0503 100%);
  border: 2px solid var(--r-amber);
  border-radius: 46px;
  padding: 1.1rem 0.8rem 0.9rem;
  width: 96px;
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(212, 120, 58, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -3px 6px rgba(0, 0, 0, 0.8);
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  animation: cafeStickerFloat 4.5s ease-in-out infinite;
}

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

.cafe-sticker-link:hover {
  transform: translateY(-8px) scale(1.08) rotate(0deg);
  border-color: var(--r-amber-light);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(232, 148, 78, 0.65);
}

.cafe-sticker-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--r-amber-light), var(--r-amber), #5c2909);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.barista-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--r-espresso-dark);
}

.avatar-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 58, 0.4) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; transform: scale(0.98); }
  100% { opacity: 0.9; transform: scale(1.06); }
}

.cafe-sticker-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  padding: 0.4rem 0;
  border-top: 1px dashed rgba(212, 120, 58, 0.45);
  border-bottom: 1px dashed rgba(212, 120, 58, 0.45);
  width: 100%;
}

.sticker-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r-amber-light);
  margin-bottom: 1px;
}

.sticker-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.sticker-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--r-cream);
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1px;
}

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

.coffee-cup-svg {
  animation: cupSteam 3s ease-in-out infinite;
}

@keyframes cupSteam {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); color: var(--r-amber-light); }
}

/* 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(0,0,0,0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.qr-modal-box {
  position: relative;
  background: var(--r-espresso);
  border: 1px solid rgba(212, 120, 58, 0.3);
  padding: 3rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  z-index: 1;
  animation: modalIn 0.4s ease;
}
.qr-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  color: rgba(245, 230, 208, 0.4);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.qr-modal-close:hover { color: var(--r-amber); }
.qr-modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r-amber);
  margin-bottom: 0.5rem;
}
.qr-modal-subtitle {
  font-size: 0.75rem;
  color: rgba(245, 230, 208, 0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.qr-code-box {
  width: 200px;
  height: 200px;
  background: rgba(245, 230, 208, 0.05);
  border: 2px solid rgba(212, 120, 58, 0.3);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(245, 230, 208, 0.3);
  flex-direction: column;
  gap: 0.5rem;
}
.qr-code-box .qr-icon { font-size: 4rem; }
.qr-modal-hint {
  font-size: 0.8rem;
  color: rgba(245, 230, 208, 0.4);
  line-height: 1.6;
}
.qr-modal-tel {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  background: var(--r-amber);
  color: var(--r-espresso-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.qr-modal-tel:hover {
  background: var(--r-amber-light);
}

/* ─── WHATSAPP BİZE ULAŞIN DESTEK WIDGET'I (SAĞ ALT) ─── */
.r-wa-support-widget {
  position: fixed;
  right: 1.8rem;
  bottom: 2rem;
  z-index: 150;
}

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

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

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

/* Mini Barista Figürü / Rozet */
.r-wa-barista-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -14px;
}

.r-wa-headset-band {
  width: 24px;
  height: 6px;
  border-top: 2.5px solid var(--r-amber);
  border-radius: 10px 10px 0 0;
  margin-bottom: 2px;
}

.r-wa-headset-mic {
  position: absolute;
  bottom: 6px;
  right: -6px;
  width: 12px;
  height: 5px;
  border-bottom: 2px solid var(--r-amber);
  border-left: 2px solid var(--r-amber);
  border-radius: 0 0 0 5px;
  transform: rotate(-15deg);
}

.r-wa-coffee-cup {
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
  animation: cupSteam 3s ease-in-out infinite;
}

/* WhatsApp Kapsülü */
.r-wa-capsule {
  background: linear-gradient(165deg, #24140a 0%, #150b06 60%, #0a0503 100%);
  border: 2.5px solid #25D366;
  border-radius: 36px;
  padding: 1.25rem 0.85rem 0.85rem;
  width: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(37, 211, 102, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
  position: relative;
}

.r-wa-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  text-align: center;
}

.r-wa-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #25D366;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.r-wa-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--r-cream);
  letter-spacing: 0.04em;
  opacity: 0.9;
  white-space: nowrap;
}

.r-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.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.r-wa-support-link:hover .r-wa-green-circle {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.9);
}

.r-wa-official-logo {
  display: block;
}

/* ─── INSTAGRAM 6-6-6 SLIDER MİMARİSİ & PRESTİJLİ CTA ─── */
.r-instagram {
  padding: 5rem 1.5rem;
  background-color: #160b06;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 120, 58, 0.14) 0%, transparent 60%),
    radial-gradient(circle 800px at 85% 85%, rgba(250, 238, 221, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, #120703 0%, #1a0d07 50%, #140905 100%);
  border-top: 1px solid rgba(212, 120, 58, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.r-insta-carousel-wrap {
  position: relative;
  max-width: 1280px;
  margin: 2.5rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.r-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(35, 18, 10, 0.85);
  border: 1px solid rgba(212, 120, 58, 0.45);
  color: #ffe1be;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.r-carousel-btn:hover {
  background: #ff9d47;
  color: #120703;
  border-color: #ff9d47;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 157, 71, 0.45);
}

.r-insta-slider-container {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

.r-insta-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.r-insta-slide {
  flex: 0 0 100%;
  width: 100%;
}

.r-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
}

.r-insta-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #26140b 0%, #110603 100%);
  border-radius: 14px;
  border: 1px solid rgba(212, 120, 58, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.r-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 9px;
  filter: brightness(0.96) contrast(1.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}

.r-insta-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 157, 71, 0.65);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(212, 120, 58, 0.35);
  z-index: 2;
}

.r-insta-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.08);
}

.r-insta-item .insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 10, 5, 0.6) 0%, rgba(212, 120, 58, 0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.r-insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-icon {
  font-size: 1.8rem;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.r-insta-item:hover .insta-icon {
  transform: scale(1.1);
}

/* Slider Noktaları (Dots) */
.r-insta-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.r-insta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212, 120, 58, 0.5);
  background: rgba(35, 18, 10, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.r-insta-dot.active {
  width: 32px;
  border-radius: 12px;
  background: #ff9d47;
  border-color: #ff9d47;
  box-shadow: 0 0 12px rgba(255, 157, 71, 0.6);
}

/* ─── PRESTİJLİ KURUMSAL INSTAGRAM CTA BUTONU (ADIM 5) ─── */
.r-insta-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.r-insta-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.95rem 2.4rem;
  background: linear-gradient(135deg, #2a140a 0%, #1a0c06 100%);
  border: 1.5px solid rgba(212, 120, 58, 0.5);
  border-radius: 60px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 120, 58, 0.2);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.r-insta-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.6s ease;
}

.r-insta-cta-btn:hover::before {
  left: 100%;
}

.r-insta-cta-btn:hover {
  transform: translateY(-4px);
  border-color: #ff9d47;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 157, 71, 0.4);
  background: linear-gradient(135deg, #351a0d 0%, #201008 100%);
}

.cta-insta-svg {
  width: 24px;
  height: 24px;
  stroke: var(--r-amber);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.3s ease;
}

.r-insta-cta-btn:hover .cta-insta-svg {
  transform: scale(1.15) rotate(5deg);
  stroke: #ffe1be;
}

.cta-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-badge-line {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffb873;
  margin-bottom: 2px;
}

.cta-main-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.cta-arrow {
  font-size: 1.4rem;
  color: #ff9d47;
  transition: transform 0.3s ease;
}

.r-insta-cta-btn:hover .cta-arrow {
  transform: translateX(6px);
  color: #ffb873;
}

/* ─── CONTACT SECTION (BİZE ULAŞIN) — NEHİR MODERN KART MİMARİSİ ─── */
#iletisim {
  background: linear-gradient(180deg, #140905 0%, #0c0503 100%);
  padding: 4.5rem 1.5rem;
  border-top: 1px solid rgba(212, 120, 58, 0.2);
}

.r-contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.r-contact-info {
  padding: 2.75rem 2.5rem;
  background: linear-gradient(145deg, #2a140a 0%, #1a0c06 100%);
  border: 1px solid rgba(212, 120, 58, 0.38);
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 120, 58, 0.15);
}

.r-contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 600;
  color: #ffb873;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* İşletme Yetkilisi Rozeti */
.r-contact-authority {
  margin-bottom: 1.75rem;
  display: inline-block;
}

.r-contact-authority .authority-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.25rem;
  background: rgba(212, 120, 58, 0.12);
  border: 1px solid rgba(212, 120, 58, 0.45);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.r-contact-authority .authority-badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff9d47;
  background: rgba(35, 18, 10, 0.9);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 120, 58, 0.35);
}

.r-contact-authority .authority-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* Contact Items */
.r-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}

.r-contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 120, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 120, 58, 0.35);
  border-radius: 12px;
  color: #ff9d47;
}

.r-contact-icon svg {
  stroke: #ff9d47;
}

.r-contact-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff9d47;
  margin-bottom: 0.25rem;
}

.r-contact-item p,
.r-contact-item a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.r-contact-item a:hover {
  color: #ffb873;
}

.r-phone-link.r-phone-highlight {
  font-weight: 700;
  color: #ffffff !important;
  font-size: 1.08rem !important;
  letter-spacing: 0.03em;
}

.r-phone-link.r-phone-highlight:hover {
  color: #ff9d47 !important;
}

.phone-type-tag {
  font-size: 0.72rem;
  color: rgba(255, 157, 71, 0.85);
  font-weight: 600;
  margin-left: 0.35rem;
}

/* Modern Hızlı İletişim Butonları (Ekran Görüntüsü 3 ile Birebir) */
.r-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 120, 58, 0.25);
}

.r-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.78rem 1.4rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.r-action-btn .r-action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 1. Instagram Butonu (Pembe/Turuncu Gradyan) */
.r-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.25);
}

.r-action-btn.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.5);
  color: #fff;
}

/* 2. Hemen Ara Butonu (Altın Sarısı / Hardal Gradyan) */
.r-action-btn.btn-call {
  background: linear-gradient(135deg, #d4a843 0%, #a87d25 100%);
  color: #1a0c06;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.r-action-btn.btn-call:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f0c978 0%, #d4a843 100%);
  box-shadow: 0 8px 22px rgba(212, 168, 67, 0.5);
  color: #1a0c06;
}

/* 3. WhatsApp Butonu (Zümrüt Yeşili Gradyan) */
.r-action-btn.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.r-action-btn.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Harita Sarmalayıcı (Ayrı Modern Tasarım Kartı) */
.r-contact-map-wrapper {
  display: flex;
  height: 100%;
  min-height: 480px;
}

.r-contact-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: #1e0f08;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 120, 58, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 120, 58, 0.15);
}

.r-contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

/* ─── FOOTER ─── */
.r-footer {
  background: #000;
  border-top: 1px solid rgba(212, 120, 58, 0.1);
  color: rgba(245, 230, 208, 0.25);
  text-align: center;
  padding: 2rem;
}
.r-footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--r-amber);
  margin-bottom: 0.5rem;
}
.r-footer-copy { font-size: 0.72rem; letter-spacing: 0.1em; }
.r-footer-link {
  color: var(--r-amber);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.r-footer-link:hover { opacity: 1; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mascotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.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) {
  .r-story { grid-template-columns: 1fr; }
  .r-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .r-contact { grid-template-columns: 1fr; gap: 2rem; }
  .r-contact-map-wrapper { min-height: 380px; height: 380px; }
  .r-contact-map { min-height: 380px; height: 380px; }
}

@media (max-width: 768px) {
  .r-nav { display: none; }
  .r-menu-toggle { display: flex; }
  .r-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

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

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

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

  .r-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, rgba(212, 120, 58, 0.95) 0%, rgba(168, 75, 22, 0.95) 100%);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 180, 120, 0.4);
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(212, 120, 58, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .r-load-more-btn:hover,
  .r-load-more-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 120, 58, 0.48);
  }

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

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

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

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

  .r-card-body { padding: 1rem 0.9rem 1.1rem; }
  .r-product-name { font-size: 1rem; }
  .r-product-desc { font-size: 0.74rem; line-height: 1.5; }
  .r-features-sep { display: none; }
  .r-features-inner { justify-content: flex-start; gap: 1.5rem; }
  .r-tabs { max-width: 100%; gap: 0.4rem; }
  .r-tab-btn { font-size: 0.74rem; padding: 0.65rem 0.85rem; }
  .cafe-master-sticker { left: 0.75rem; transform: translateY(-50%) scale(0.85); transform-origin: left center; }
  .r-wa-support-widget { right: 0.75rem; bottom: 1.5rem; transform: scale(0.9); transform-origin: right bottom; }
}

@media (max-width: 480px) {
  .r-product-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .r-section { padding: 3rem 1rem; }
  .r-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .r-hero-btns { flex-direction: column; align-items: center; }
  .r-tab-btn { font-size: 0.7rem; padding: 0.6rem 0.75rem; width: calc(50% - 0.3rem); text-align: center; }
  .r-contact-actions { flex-direction: column; }
  .r-action-btn { justify-content: center; width: 100%; }
  .r-contact-info { padding: 1.75rem 1.25rem; }
  .cafe-master-sticker { left: 0.4rem; transform: translateY(-50%) scale(0.72); transform-origin: left center; }
  .r-wa-support-widget { right: 0.6rem; bottom: 1.2rem; transform: scale(0.82); transform-origin: right bottom; }
}
