:root {
  --orange: #F58220;
  --orange-dark: #d96d0f;
  --navy: #1B2B4B;
  --navy-light: #2a3f6b;
  --cream: #f8f6f3;
  --white: #ffffff;
  --text: #3d3d3d;
  --text-muted: #6b7280;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 60px rgba(27, 43, 75, 0.12);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sponsor / Topluluk — kaydırma ve hover animasyonu yok */
.page-no-motion,
.page-no-motion *,
.page-no-motion *::before,
.page-no-motion *::after {
  animation: none !important;
  transition: none !important;
}

.page-no-motion {
  scroll-behavior: auto !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; transition: color var(--transition); }

/* ── Navbar ── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar-custom.scrolled {
  background: rgba(27, 43, 75, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-custom .nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.9rem !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--orange);
}

.navbar-custom .dropdown-menu {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.navbar-custom .dropdown-header {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem 0.35rem;
}

.navbar-custom .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 0.35rem 0.5rem;
}

.navbar-custom .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.navbar-custom .dropdown-item:hover {
  background: var(--orange);
  color: var(--white);
}

.navbar-custom .dropdown-toggle::after {
  border-top-color: rgba(255, 255, 255, 0.85);
  vertical-align: 0.15em;
}

.navbar-custom .dropdown-toggle:hover::after,
.navbar-custom .dropdown-toggle.show::after,
.navbar-custom .dropdown-toggle.active::after {
  border-top-color: var(--orange);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-roaster { color: var(--orange); }
.logo-club { color: var(--white); }

.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
  text-transform: lowercase;
  margin-top: 2px;
}

.btn-apply-nav {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600;
  font-size: 0.8rem;
}

.btn-apply-nav:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-bg-video {
  display: block;
  background: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }

  .hero-bg {
    background: url('../assets/hero/hero-opening-poster.jpg') center 72% / cover no-repeat;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(27, 43, 75, 0.92) 0%,
    rgba(27, 43, 75, 0.72) 42%,
    rgba(27, 43, 75, 0.28) 68%,
    rgba(27, 43, 75, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

.hero-badge {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-event-meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.hero-intro {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin: 1rem 0;
  line-height: 1.05;
}

.hero-title__line {
  display: block;
}

.hero-title .accent { color: var(--orange); }

.hero-body {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary-custom:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,130,32,0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-countdown {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: inline-block;
  z-index: 3;
}

.hero-countdown-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content .col-lg-7 {
    padding-right: 1rem;
  }
}

.hero-countdown-label {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}

.countdown-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
}

.countdown-item {
  text-align: center;
  min-width: 3.5rem;
}

.countdown-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero-countdown-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
}

/* ── Section common ── */
.section {
  padding: 6rem 0;
}

.section-eyebrow {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--orange); }

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-dark {
  background: linear-gradient(155deg, #1a2848 0%, #243d6e 45%, #1e3560 100%);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.88); }
.section-dark .section-eyebrow { color: var(--orange); }
.section-dark .section-title .accent { color: #ff9a3d; }

.section-cream { background: var(--cream); }

/* Blog — şampiyon reçeteleri (mavi bölüm) */
.section-blog {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.section-blog .section-title {
  color: var(--white);
}

.section-blog .section-title .accent {
  color: var(--orange);
}

.section-blog .section-eyebrow {
  color: var(--orange);
}

.section-blog .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-blog .section-lead a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-blog .section-lead a:hover {
  color: var(--orange-dark);
}

.section-blog .recipe-card {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.section-blog .recipe-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.section-blog .recipe-year {
  background: var(--orange);
}

.section-blog .btn-recipe:hover,
.section-blog .btn-recipe.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ── About ── */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image-badge .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(27,43,75,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card.p-0 > .p-4 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,130,32,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-icon--img {
  width: 72px;
  height: 72px;
  padding: 0;
  background: var(--cream);
  overflow: hidden;
  border: 1px solid rgba(27, 43, 75, 0.08);
}

.service-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  align-self: flex-start;
}

.service-link:hover { color: var(--orange-dark); }

/* ── Portfolio / Etaplar ── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(27,43,75,0.15);
  color: var(--navy);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,43,75,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.portfolio-overlay .cat {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
}

.portfolio-overlay .date {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.portfolio-info {
  padding: 1rem 0;
}

.portfolio-info h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.portfolio-info .cat { color: var(--orange); font-size: 0.85rem; font-weight: 600; }
.portfolio-info .date { color: var(--text-muted); font-size: 0.8rem; }

/* ── Process ── */
.process-step {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  height: 100%;
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(245, 130, 32, 0.2);
  border-color: var(--orange);
  box-shadow: 0 12px 36px rgba(245, 130, 32, 0.25);
  transform: translateY(-4px);
}

.process-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 1;
  text-shadow: 0 2px 24px rgba(245, 130, 32, 0.55);
}

.process-step h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Brew moment ── */
.brew-moment {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brew-moment-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/wac-2026/03-championship-action.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.brew-moment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,75,0.75);
}

.brew-moment-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.brew-moment-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.brew-moment-title .accent { color: var(--orange); }

.brew-moment-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ── Sponsor marquee ── */
.sponsors-marquee-section {
  padding: 3.5rem 0;
  overflow: hidden;
}

.sponsor-marquee {
  position: relative;
  width: 100%;
  min-height: 130px;
  overflow: hidden;
  /* mask-image iOS Safari’de animasyonlu track’i tamamen gizleyebiliyor — kenar solması pseudo ile */
}

.sponsor-marquee::before,
.sponsor-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(12%, 48px);
  z-index: 2;
  pointer-events: none;
}

.sponsor-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream) 15%, transparent);
}

.sponsor-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream) 15%, transparent);
}

.sponsor-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-ltr 64s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.sponsor-marquee-track:hover {
  animation-play-state: paused;
}

.sponsor-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  padding: 0 2rem;
}

.sponsor-marquee-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 148px;
  min-height: 118px;
  padding: 0.65rem 0.5rem 0.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(27, 43, 75, 0.08);
  box-shadow: 0 4px 16px rgba(27, 43, 75, 0.06);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.sponsor-marquee-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sponsor-marquee-item__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.sponsor-marquee-item__logo:not([class*='sponsor-logo-surface--']) {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
}

.sponsor-marquee-item__logo img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

/* Logo zeminleri — dosya rengine göre (data.js → logoSurface) */
.sponsor-logo-surface--light {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
}

.sponsor-logo-surface--dark {
  background: #121820;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sponsor-logo-surface--blend-screen {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
}

.sponsor-logo-surface--blend-screen img {
  mix-blend-mode: screen;
  opacity: 0.95;
}

.sponsor-marquee-item__name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.sponsor-marquee-item__role {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.2;
}

@keyframes marquee-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ── Sponsors (grid cards) ── */
.sponsor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(27,43,75,0.08);
  transition: all var(--transition);
  height: 100%;
}

.sponsor-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.sponsor-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 10px;
}

.sponsor-card__logo:not([class*='sponsor-logo-surface--']) {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
}

.sponsor-card__logo img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-card img {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.sponsor-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0 0 0.35rem;
}

.sponsor-role {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Shop ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27,43,75,0.08);
  transition: all var(--transition);
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 1.25rem;
}

.product-brand {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0.5rem 0;
}

.product-body h3 a {
  color: inherit;
}

.product-body h3 a:hover {
  color: var(--orange);
}

.product-card--shop .product-body h3 {
  font-size: 0.95rem;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.product-price--lg {
  font-size: 1.75rem;
}

.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.product-card-link {
  display: block;
}

.shop-btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.page-hero--compact {
  padding: 8rem 0 1.5rem;
}

.page-hero--compact .page-hero-content {
  padding-bottom: 0;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.shop-showcase {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shop-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ── Recipe cards ── */
.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(27,43,75,0.08);
  height: 100%;
  transition: all var(--transition);
}

.recipe-card:hover { box-shadow: var(--shadow); }

.recipe-year {
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.recipe-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.recipe-country {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.recipe-beans {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.recipe-steps {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27,43,75,0.08);
}

.recipe-steps.open { display: block; }

.recipe-steps ol {
  padding-left: 1.25rem;
  margin: 0;
}

.recipe-steps li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.btn-recipe {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-recipe:hover,
.btn-recipe.active {
  background: var(--navy);
  color: var(--white);
}

/* ── Contact ── */
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.contact-info-card h5 {
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info-card a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(27,43,75,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,32,0.15);
}

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer .logo-roaster { color: var(--orange); }
.footer .logo-club { color: var(--white); }
.footer .logo-tagline { color: rgba(255,255,255,0.4); }

.footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer a:hover { color: var(--orange); }

.footer-social a {
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

/* ── Subpages ── */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-bg-img,
  .hero-bg-video {
    object-position: center 40%;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-bg {
      background-position: center 40%;
    }
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(27, 43, 75, 0.88) 0%,
      rgba(27, 43, 75, 0.75) 55%,
      rgba(27, 43, 75, 0.55) 100%
    );
  }

  .hero-countdown-wrap {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .hero-countdown {
    margin: 0 0 0.25rem;
    padding: 1rem 1.25rem;
    max-width: 100%;
  }

  .countdown-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem 1rem;
    max-width: none;
    justify-content: flex-start;
  }

  .countdown-item {
    min-width: 3.25rem;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 6.5rem 0 4.5rem;
  }

  .hero-content .col-lg-7 {
    padding-right: 0;
  }

  .navbar-collapse {
    background: var(--navy);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
  }

  .about-image-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .countdown-grid { gap: 0.75rem; }
  .countdown-value { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sponsor-marquee::-webkit-scrollbar {
    display: none;
  }

  .sponsor-marquee-track {
    animation: none;
    width: max-content;
    flex-wrap: nowrap;
    padding: 0 1rem 0.5rem;
  }

  /* Döngü kopyası — hareket kapalıyken tek satır yeterli */
  .sponsor-marquee-track > .sponsor-marquee-group:last-child {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .sponsor-marquee-item {
    width: 132px;
    min-height: 110px;
  }

  .sponsor-marquee-group {
    gap: 1.25rem;
    padding: 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
