@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream:       #F8F0E8;
  --cream-light: #FDF7F2;
  --cream-dark:  #EDD5BC;
  --brown-dark:  #3D1A0C;
  --brown:       #5C2D1E;
  --brown-mid:   #7A3B24;
  --gold:        #C4862A;
  --gold-light:  #E8A83D;
  --teal:        #7BBCB0;
  --teal-dark:   #5EA89D;
  --text:        #2D1308;
  --text-mid:    #6B3D2E;
  --text-light:  #A07060;
  --white:       #FFFFFF;
  --shadow:      rgba(61,26,12,0.12);
  --shadow-lg:   rgba(61,26,12,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream-light);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  background: var(--brown-dark);
  padding: 50px 20px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.header-logo img {
  height: 180px; /* Çok daha büyük logo */
  width: auto;
  object-fit: contain;
  margin-bottom: 5px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.header-info {
  width: 100%;
}

.header-info .tagline {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.header-info .price-note {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .site-header { padding: 40px 15px; }
  .header-logo img { height: 140px; }
  .header-info .tagline { font-size: 1.05rem; }
  .header-info .price-note { font-size: 0.8rem; }
}

/* ── MAIN CONTAINER ──────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 60px;
}

/* ── SECTION TITLE ───────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* ── BACK BUTTON ─────────────────────────────────── */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--cream-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  margin-bottom: 24px;
}
.btn-back:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* ── CATEGORY GRID ───────────────────────────────── */
#view-categories { animation: fadeIn .35s ease; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px) { .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.category-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(196,134,42,0.1);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

.category-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.category-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover .category-card__img-wrap img { transform: scale(1.08); }

.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--teal));
  font-size: 3rem;
}

.category-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  padding: 14px 12px;
  border-top: 2px solid var(--cream);
}

/* ── PRODUCT GRID ────────────────────────────────── */
#view-products { display: block; animation: fadeIn .35s ease; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 360px) { .products-grid { grid-template-columns: 1fr 1fr; } }

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 12px var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  border: 1px solid rgba(196,134,42,0.08);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px var(--shadow-lg);
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

/* Badges */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 2;
}
.badge--yeni     { background: var(--brown-dark); color: var(--white); }
.badge--populer  { background: var(--gold);       color: var(--white); }
.badge--sef      { background: #c0392b;            color: var(--white); }

.product-card__body {
  padding: 12px;
}

.product-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
  line-height: 1.3;
  text-align: center;
}

.product-card__desc {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

/* ── PRODUCT MODAL ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(8px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  transform: translateY(30px) scale(.96);
  transition: transform .3s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.modal__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.modal__body {
  padding: 22px 24px 28px;
  position: relative;
}

.modal__badge { margin-bottom: 10px; display: inline-block; }

.modal__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.modal__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: background .2s;
}
.modal__close:hover { background: var(--cream-dark); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--brown-dark);
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 70px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-copyright {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.6;
}

.site-footer span { color: var(--gold); }

/* ── CATEGORY HEADER (inside product view) ───────── */
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.cat-header__name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── ANIMATION ───────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── EMPTY STATE ─────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }

/* ── HEDİYE ÇARKI ────────────────────────────────── */
.wheel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,5,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  backdrop-filter: blur(8px);
}
.wheel-overlay.open { opacity: 1; pointer-events: all; }

.wheel-container {
  background: var(--white);
  border-radius: 30px;
  max-width: 400px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border: 4px solid var(--gold);
}

.wheel-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown-dark); margin-bottom: 8px; }
.wheel-subtitle { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 30px; }

.wheel-box {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 30px;
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid var(--brown-dark);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  background: var(--gold);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.btn--spin {
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(196,134,42,0.3);
}

.wheel-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

.wheel-result {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: var(--cream);
  border-radius: 15px;
  border: 2px dashed var(--gold);
  animation: fadeIn 0.5s ease;
}
.wheel-result.active { display: block; }
.wheel-result h3 { color: var(--brown); margin-bottom: 5px; }

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  border: 3px solid var(--gold);
  overflow: hidden;
  padding: 5px;
}

.wheel-center img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

#wheelCanvas {
  transition: transform 5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* ── VUE CLOAK ── */
[v-cloak] { display: none; }

/* ── MOBILE NAV FIX ── */
.cat-nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  padding: 10px 0;
  z-index: 90;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-nav-inner {
  display: flex;
  padding: 0 15px;
  gap: 10px;
  width: max-content;
  white-space: nowrap;
}
.cat-nav-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}
.cat-nav-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── PRODUCT GRID FIX ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 10px 0;
}
@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── CATEGORY VIEW ENHANCEMENTS ── */
.view-header {
  padding: 20px 0;
  text-align: left;
}
.view-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a2a4e; /* Görseldeki koyu lacivert tonu */
  margin-bottom: 8px;
}
.view-header p {
  color: #666;
  font-size: 0.95rem;
  font-weight: 400;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px 0;
}

.category-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}
.category-card:active { transform: scale(0.97); }

.category-image {
  aspect-ratio: 1 / 1.1; /* Görseldeki dikeyimsi kare yapı */
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-info {
  padding: 20px 10px;
  text-align: center;
  background: var(--white);
}
.category-info h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2a4e;
  margin: 0;
}
.category-arrow { display: none; }


/* ── PRODUCT LIST VIEW (NOBILIS STYLE) ── */
.product-view-header {
  padding: 20px 0;
}
.back-btn {
  background: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2a4e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  cursor: pointer;
}
.product-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a2a4e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-list-view {
  display: flex;
  flex-direction: column;
}

.product-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.product-list-info {
  flex: 1;
  padding-right: 20px;
}
.product-list-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-num { color: #000; margin-right: 5px; }
.product-list-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}

.product-list-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #ddd;
  overflow: hidden;
  padding: 5px;
  background: #fff;
}
.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}


/* ── PRODUCT ITEM REFINEMENTS ── */
.product-list-item {
  align-items: flex-start; /* Üstten hizala */
  padding: 30px 0;
}

.product-item-badge {
  display: inline-block;
  background: #1a2a4e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.product-item-desc {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-item-image {
  width: 150px;
  height: 110px;
  flex-shrink: 0;
}
.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}


/* ── WHEEL TRIGGER BUTTON ── */
.wheel-trigger {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: var(--brown-dark);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  cursor: pointer;
  animation: pulseWheel 2s infinite;
}

.wheel-icon { font-size: 1.4rem; }
.wheel-text { font-weight: 700; font-size: 0.9rem; }

@keyframes pulseWheel {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(196,134,42,0.4); }
  100% { transform: scale(1); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
}


/* ── WHEEL CONDITION BOX ── */
.wheel-condition {
  background: #1e2a4e; /* Görseldeki koyu lacivert tonu */
  color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 15px 0 0;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.wheel-condition strong { color: #fff; font-weight: 800; }

.wheel-arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #C4862A; /* Altın rengi ok */
  margin: 0 auto 15px;
}


/* ── WHEEL CONDITION COLOR UPDATE ── */
.wheel-condition {
  background: #3D1A0C !important; /* Trend Coffee Koyu Kahve */
  border-color: rgba(196,134,42,0.3); /* Altın rengi hafif bir çerçeve */
}


/* ── WHEEL SPACING UPDATE ── */
.wheel-subtitle {
  margin-top: 25px !important; /* Üstteki kutuyla arasına mesafe eklendi */
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--brown);
}


/* ── WIN SCREEN (NOBILIS STYLE) ── */
.win-screen {
  text-align: center;
  padding: 10px;
}
.win-header {
  background: #111b33;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.win-badge-ikram {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
}
.win-reward-name {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0;
}

.win-box-main {
  background: #1a2a4e;
  padding: 30px 20px;
  margin-bottom: 2px;
}
.win-label {
  color: #8894aa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.win-coupon-code {
  border: 2px dashed var(--gold);
  padding: 20px;
  border-radius: 15px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 5px;
  background: rgba(196,134,42,0.05);
}

.win-box-footer {
  background: #1a2a4e;
  padding: 25px 20px;
  border-radius: 0 0 20px 20px;
  text-align: left;
}
.win-label-small {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.win-rules {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.6;
}
.win-rules strong { color: #fff; }

.anim-fade-in {
  animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ── CATEGORY TITLE COLOR UPDATE ── */
.view-header h1 {
  color: #7BBCB0 !important; /* Logodaki Yeşil/Turkuaz tonu */
}


/* ── CONTAINER SPACING UPDATE ── */
.main-container {
  padding-left: 20px !important;
  padding-right: 20px !important;
  max-width: 600px; /* Mobil odaklı genişlik */
  margin: 0 auto;
}

/* Kategori gridi için boşlukları da optimize edelim */
.category-grid {
  gap: 20px !important; /* Kartlar arası boşluğu biraz artırdım */
}


/* ── HEADER TEXT COLOR UPDATE ── */
.view-header h1 {
  color: #3D1A0C !important; /* Trend Coffee Koyu Kahve */
}

.view-header p {
  color: #000000 !important; /* Net Siyah */
  opacity: 0.8; /* Hafif bir yumuşaklık için */
}


/* ── TREND COFFEE PREMIUM GLOBAL THEME ── */
body {
  background-color: #FDF8F3 !important; /* Premium Krem Arka Plan */
}

/* ── WIN SCREEN RE-DESIGN ── */
.win-header {
  background: #3D1A0C !important; /* Trend Koyu Kahve */
  border-bottom: 2px solid var(--gold);
}
.win-reward-name {
  color: var(--gold) !important;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.win-box-main, .win-box-footer {
  background: #5C2D1E !important; /* Trend Kahve */
  color: #fff !important;
}

.win-coupon-code {
  background: rgba(196,134,42,0.1) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  text-shadow: 0 0 10px rgba(196,134,42,0.4);
}

.win-label, .win-label-small {
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* ── BUTTON RE-DESIGN (Premium) ── */
.btn--full {
  background: #3D1A0C !important;
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  padding: 15px !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.btn--full:active { transform: scale(0.95); box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

/* ── KAZANDINIZ ANIMASYONU ── */
.win-title-anim {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: celebrate 0.8s cubic-bezier(0.17, 0.89, 0.32, 1.49) both;
}
@keyframes celebrate {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}


/* ── WHEEL CONTAINER BRANDING ── */
.wheel-container {
  background: #FDF8F3 !important; /* Trend Coffee Krem */
  border-color: #3D1A0C !important; /* Trend Kahve Çerçeve */
}

.win-header {
  justify-content: center;
  padding: 30px 10px !important;
}

.win-coupon-code {
  color: #C4862A !important; /* Altın rengi netleştirildi */
  font-size: 3rem !important; /* Daha büyük ve okunur */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* ── GOLD BORDER & CREAM BG RESTORATION ── */
.wheel-container {
  background: #FDF8F3 !important; /* Premium Krem Arka Plan */
  border: 4px solid #C4862A !important; /* Altın Rengi Çerçeve Geri Geldi */
  box-shadow: 0 20px 50px rgba(61,26,12,0.3); /* Kahve tonlu gölge */
}

.site-header, .main-container {
  background-color: #FDF8F3 !important;
}


/* ── WIN POPUP OVERLAY ── */
.win-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 248, 243, 0.95); /* Krem tonlu yarı şeffaf overlay */
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 24px;
  backdrop-filter: blur(5px);
}

.win-screen {
  width: 100%;
  max-width: 340px;
}


/* ── SITE HEADER RESTORATION (BROWN) ── */
.site-header {
  background-color: #3D1A0C !important;
  border-bottom: none !important;
  padding: 30px 20px;
}

.tagline {
  color: #C4862A !important; /* Altın sarısı */
  font-weight: 600;
}

.price-note {
  color: #FFFFFF !important; /* Beyaz */
  opacity: 0.9;
}


/* ── WIN POPUP OVERLAY CREAM UPDATE ── */
.win-popup-overlay {
  background-color: #FDF8F3 !important; /* Tam Krem Rengi */
  opacity: 1 !important;
}


/* ── CATEGORY INFO COLOR UPDATE ── */
.category-info h3 {
  color: #515150 !important;
  font-weight: 700;
}


/* ── PRODUCT PAGE COLOR UPDATES ── */
.product-category-title {
  color: #3D1A0C !important;
  font-weight: 800;
}

.product-item-badge {
  background: #3D1A0C !important; /* Lacivert yerine Kahverengi rozet */
  color: var(--gold) !important; /* Yazı rengi altın sarısı */
}


/* ── MODERN TYPOGRAPHY SYSTEM ── */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-body) !important;
}

h1, h2, h3, .product-list-name, .win-title-anim, .win-reward-name {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.5px;
}

.product-num, .product-list-price, .win-coupon-code, .btn {
  font-family: var(--font-body) !important;
  font-weight: 800;
}


/* ── BACK BUTTON COLOR UPDATE ── */
.back-btn {
  color: #3D1A0C !important; /* Trend Coffee Kahve */
  font-weight: 700;
}
.back-btn .icon {
  color: #C4862A; /* İkon altın rengi kalsın */
}


/* ── FOOTER INFO STYLING ── */
.footer-info {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-info .tagline {
  color: #3D1A0C !important;
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.footer-info .price-note {
  color: #3D1A0C !important;
  font-size: 0.75rem;
  font-weight: 600;
}


/* ── DESKTOP & RESPONSIVE REFINEMENTS ── */
body {
  background-color: #FDF8F3 !important;
  min-height: 100vh;
}

#app {
  width: 100%;
  max-width: 100%;
  background: #FDF8F3;
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .products-list-view {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* Genel konteyner düzenlemesi */
.main-container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}


/* ── CATEGORY TEXT COLOR FIX ── */
.category-info h2, 
.category-info h3, 
.category-info p {
  color: #515150 !important;
}


/* ── ADVANCED WHEEL UX ── */

/* İşaretçi Titreme Animasyonu */
.wheel-pointer.flicker {
  animation: pointer-flicker 0.1s ease-in-out infinite;
}

@keyframes pointer-flicker {
  0% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(-15deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}

/* Çark Parlama Efekti */
.wheel-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

/* Yüzen Buton Pulse Animasyonu */
.wheel-trigger {
  animation: wheel-pulse 2s infinite;
}

@keyframes wheel-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(196, 134, 42, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(196, 134, 42, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(196, 134, 42, 0); }
}

/* Kazanma Pop-up Giriş Efekti */
.win-screen {
  animation: win-pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes win-pop-in {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.wheel-status-text {
  margin-top: 15px;
  font-weight: 600;
  color: #C4862A;
  min-height: 24px;
}


/* ── PREMIUM SPIN BUTTON ── */
.btn--spin {
  background: linear-gradient(135deg, #3D1A0C 0%, #5C2D1E 100%) !important;
  color: #C4862A !important;
  border: 2px solid #C4862A !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  letter-spacing: 2px;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 20px rgba(61,26,12,0.3) !important;
  text-transform: uppercase;
}

.btn--spin:active {
  transform: scale(0.92);
  box-shadow: 0 5px 10px rgba(61,26,12,0.5) !important;
}

.btn--spin:hover {
  background: #3D1A0C !important;
  color: #fff !important;
}


/* ── MODERN PRODUCT MODAL (POP-UP) ── */
.modal {
  position: fixed !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(61, 26, 12, 0.7);
  backdrop-filter: blur(8px);
  display: flex !important;
  align-items: flex-start; /* Üstten başlasın ki scroll yapılabilsin */
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 40px 20px;
  overflow-y: auto; /* İçerik taşarsa modalın kendisi scroll olsun */
  -webkit-overflow-scrolling: touch;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FDF8F3;
  width: 100%;
  max-width: 450px;
  border-radius: 35px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  overflow: visible; /* Butonun dışarı taşabilmesi için */
  border: none;
  margin: auto 0; /* Ortalanması için */
}

.modal.open .modal-content {
  transform: translateY(0);
}

body.no-scroll {
  overflow: hidden !important;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: #fff;
  border: none; border-radius: 50%;
  color: #3D1A0C; font-size: 1.5rem;
  cursor: pointer; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.modal-close:hover {
  background: #C4862A; color: #fff;
}


/* ── PREMIUM PRODUCT MODAL REDESIGN ── */
.modal-content {
  background: #FDF8F3 !important;
  max-width: 420px !important;
  border-radius: 35px !important;
  padding: 0 !important; /* İçeriği biz yöneteceğiz */
  box-shadow: 0 40px 100px rgba(61, 26, 12, 0.25) !important;
  border: none !important;
}

.modal-header-img {
  width: 100%;
  height: 300px;
  background-color: #E8E2DA;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 35px 35px 0 0;
}

.modal-header-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 60px;
  background: linear-gradient(to top, #FDF8F3, transparent);
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.modal-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(196,134,42,0.3);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brown);
  margin: 0 0 10px;
  line-height: 1.2;
}

.modal-desc {
  color: #6d5d54;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 30px;
  display: block;
}

.modal-btn {
  background: var(--brown);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(61, 26, 12, 0.2);
  cursor: pointer;
}

.modal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(61, 26, 12, 0.3);
}

/* ── SPLASH SCREEN (ENTRANCE ANIMATION) ── */
.splash-screen {
  position: fixed;
  inset: 0;
  background: #000; /* Video yüklenirken siyah kalsın */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  overflow: hidden;
}

.splash-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.6; /* Üzerindeki yazıların okunması için hafif karartma */
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.splash-logo-wrap {
  animation: splash-logo-in 1.2s cubic-bezier(0.2, 0.8, 0.2, 1.1) forwards;
  opacity: 0;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.splash-logo {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.splash-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: splash-text-in 0.8s ease 0.5s forwards;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(196, 134, 42, 0.5), 0 10px 30px rgba(0,0,0,0.5);
}

.splash-tagline {
  color: #f0ded2;
  font-weight: 500;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}

.splash-btn {
  background: #f0ded2 !important;
  color: #3D1A0C !important;
  border: none;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 2px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  margin-top: 20px;
}

@keyframes splash-logo-in {
  0% { opacity: 0; transform: scale(0.6) rotate(-8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes splash-text-in {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Vue Transition Fade Out */
.fade-splash-leave-active {
  transition: opacity 0.8s ease, filter 0.8s ease;
}
.fade-splash-leave-to {
  opacity: 0;
  filter: blur(20px);
}

/* ── FINAL THEME OVERRIDES ── */
.main-container {
  background-color: #E8E4E0 !important;
  padding-top: 0 !important;
}

.view-header h1 {
  color: #515150 !important;
}

.product-item-badge, .modal-badge {
  background-color: #515150 !important;
  color: #fff !important;
}

.modal-btn {
  background-color: #515150 !important;
  border-color: #515150 !important;
  color: #fff !important;
}

.view-header, .product-view-header {
  background: #f0ded2;
  margin: 0 -16px 30px -16px;
  padding: 20px;
  text-align: left;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none !important;
}

.view-header::after, .product-view-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(196,134,42,0) 0%, rgba(196,134,42,1) 50%, rgba(196,134,42,0) 100%);
}

.product-view-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.view-header h1 {
  font-size: 1.4rem !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: capitalize;
}

.product-category-title {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: right;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #515150 !important;
}

.back-btn {
  background: #fff;
  border: 1px solid rgba(196,134,42,0.3);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #515150;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.back-btn:hover {
  background: #515150;
  color: #fff;
}

.view-header p {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
}

.site-header, .site-footer {
  background-color: #f0ded2 !important;
  background: #f0ded2 !important;
  color: #3D1A0C !important;
  border-bottom: none !important;
  margin-top: 0 !important;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(196,134,42,0) 0%, rgba(196,134,42,1) 50%, rgba(196,134,42,0) 100%);
}

.site-footer .footer-copyright,
.site-footer .footer-tagline,
.site-header .tagline,
.site-header .price-note {
  color: #3D1A0C !important;
  opacity: 1 !important;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.lang-btn {
  background: rgba(61, 26, 12, 0.05);
  color: #3D1A0C;
  border: 1.5px solid #3D1A0C;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn.active {
  background: #C4862A !important;
  border-color: #C4862A !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(196, 134, 42, 0.3);
}

.lang-btn:hover:not(.active) {
  border-color: #C4862A;
  color: #C4862A;
}

/* ── DIETARY & NUTRITION ── */
.dietary-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.diet-badge {
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.diet-badge.safe {
  background: rgba(196, 134, 42, 0.15) !important;
  color: #C4862A !important;
}

.nutrition-accordion {
  background: rgba(61, 26, 12, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 26, 12, 0.05);
  margin-bottom: 20px;
}

.nutrition-trigger {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: #3D1A0C;
  transition: 0.3s;
}

.nutrition-trigger.active { color: #C4862A; }

.nutrition-panel {
  padding: 0 20px 20px;
  text-align: left;
}

.kcal-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #C4862A;
  line-height: 1;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  border-top: 1px solid rgba(61, 26, 12, 0.1);
  padding-top: 15px;
}

.nutri-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #5c4d44;
}

.nutrition-disclaimer {
  margin-top: 20px;
  font-size: 0.7rem;
  color: #9c8c84;
  line-height: 1.5;
  font-style: italic;
}

/* ── YOĞUN MANGAL ATEŞİ VE KOR EFEKTİ (Intense Barbecue Fire & Glowing Embers) ── */
.smoke-container {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 68, 0, 0.45) 0%, rgba(255, 140, 0, 0.2) 45%, transparent 85%);
  animation: fireGlowPulse 2.5s infinite alternate ease-in-out;
}

.smoke-particle {
  position: absolute;
  bottom: -25px;
  width: 10px; height: 10px;
  background: #ff5500;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff2200, 0 0 25px #ff7700, 0 0 40px #ffcc00, 0 0 60px #ff0000;
  opacity: 0;
  animation: emberRiseIntense 3.5s infinite ease-out;
}

.smoke-particle:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-duration: 3.2s; animation-delay: 0s; background: #ffaa00; }
.smoke-particle:nth-child(2) { left: 22%; width: 14px; height: 14px; animation-duration: 4.1s; animation-delay: 0.5s; background: #ff3300; }
.smoke-particle:nth-child(3) { left: 35%; width: 10px; height: 10px; animation-duration: 2.9s; animation-delay: 1.1s; background: #ffd700; }
.smoke-particle:nth-child(4) { left: 48%; width: 16px; height: 16px; animation-duration: 4.6s; animation-delay: 0.2s; background: #ff4500; }
.smoke-particle:nth-child(5) { left: 60%; width: 9px; height: 9px; animation-duration: 3.4s; animation-delay: 1.7s; background: #ff8c00; }
.smoke-particle:nth-child(6) { left: 72%; width: 13px; height: 13px; animation-duration: 3.8s; animation-delay: 0.9s; background: #ffaa00; }
.smoke-particle:nth-child(7) { left: 85%; width: 11px; height: 11px; animation-duration: 4.3s; animation-delay: 2.3s; background: #ff2200; }
.smoke-particle:nth-child(8) { left: 93%; width: 7px; height: 7px; animation-duration: 3.1s; animation-delay: 1.4s; background: #ffd700; }
.smoke-particle:nth-child(9) { left: 18%; width: 12px; height: 12px; animation-duration: 3.7s; animation-delay: 2.8s; background: #ff5500; }
.smoke-particle:nth-child(10) { left: 40%; width: 15px; height: 15px; animation-duration: 4.4s; animation-delay: 1.9s; background: #ffaa00; }
.smoke-particle:nth-child(11) { left: 53%; width: 8px; height: 8px; animation-duration: 2.8s; animation-delay: 0.6s; background: #ff3300; }
.smoke-particle:nth-child(12) { left: 68%; width: 14px; height: 14px; animation-duration: 3.9s; animation-delay: 3.1s; background: #ffd700; }
.smoke-particle:nth-child(13) { left: 78%; width: 10px; height: 10px; animation-duration: 4.2s; animation-delay: 2.1s; background: #ff7700; }
.smoke-particle:nth-child(14) { left: 28%; width: 7px; height: 7px; animation-duration: 3.3s; animation-delay: 1.3s; background: #ff4500; }

@keyframes fireGlowPulse {
  0% { opacity: 0.75; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.08); }
  100% { opacity: 0.8; transform: scaleY(0.96); }
}

@keyframes emberRiseIntense {
  0% {
    bottom: -25px;
    opacity: 0;
    transform: translateX(0) scale(0.5) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: translateX(20px) scale(1.3) rotate(45deg);
  }
  55% {
    opacity: 0.9;
    transform: translateX(-25px) scale(1.1) rotate(90deg);
  }
  100% {
    bottom: 95%;
    opacity: 0;
    transform: translateX(35px) scale(0.3) rotate(180deg);
  }
}

/* ── TREND CONCEPT SUB-HEADER BANNER BAR ── */
.trend-sub-header {
  background: #F2E4D6;
  border-top: 1.5px solid #C4862A;
  border-bottom: 1.5px solid #C4862A;
  padding: 18px 24px;
  box-shadow: inset 0 2px 8px rgba(61,26,12,0.04);
  margin-bottom: 20px;
}

.trend-sub-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trend-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3D1A0C;
  letter-spacing: 0.5px;
}

.trend-banner-product-view {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.trend-btn-back {
  background: #FFFFFF;
  color: #C4862A !important;
  border: 1.5px solid rgba(196,134,42,0.4);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(61,26,12,0.08);
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.trend-btn-back:hover {
  background: #3D1A0C;
  color: #F3E5AB;
  border-color: #3D1A0C;
  transform: translateY(-2px);
}

.trend-banner-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3D1A0C;
  text-align: right;
}

@media (max-width: 600px) {
  .trend-sub-header {
    padding: 14px 16px;
  }
  .trend-banner-title {
    font-size: 1.5rem;
  }
  .trend-banner-cat-title {
    font-size: 1.3rem;
  }
  .trend-btn-back {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ── LUXURY RESPONSIVE PRODUCT DETAIL MODAL ── */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 22, 12, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal-card {
  background: #FDF8F3;
  border-radius: 32px;
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(196, 134, 42, 0.3);
  margin: auto;
  animation: modalPopUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  background: #FFFFFF;
  color: #3D1A0C;
  border: 1.5px solid rgba(61, 26, 12, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.product-modal-close-btn:hover {
  background: #3D1A0C;
  color: #F3E5AB;
  transform: rotate(90deg);
}

.product-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 768px) {
  .product-modal-layout {
    grid-template-columns: 1fr;
  }
}

.product-modal-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
  background: #E8E2DA;
}

.product-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-content-wrap {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .product-modal-backdrop {
    padding: 12px;
    align-items: flex-end;
  }
  .product-modal-card {
    max-height: 90vh;
    border-radius: 28px 28px 24px 24px;
  }
  .product-modal-content-wrap {
    padding: 24px 20px 24px;
  }
  .product-modal-img-wrap {
    min-height: 220px;
    max-height: 260px;
  }
}

/* ── TREND CONCEPT NUTRITION ACCORDION ── */
.trend-nutrition-accordion {
  background: #FDF7F0;
  border-radius: 24px;
  border: 1px solid rgba(196, 134, 42, 0.2);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(61, 26, 12, 0.04);
  transition: all 0.3s ease;
}

.trend-nutrition-trigger {
  width: 100%;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}

.trend-nutrition-trigger:hover {
  background: rgba(196, 134, 42, 0.05);
}

.trend-nutrition-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3D1A0C;
  transition: color 0.2s ease;
}

.trend-nutrition-accordion.open .trend-nutrition-title {
  color: #C4862A;
}

.trend-nutrition-arrow {
  color: #3D1A0C;
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.2s ease;
}

.trend-nutrition-accordion.open .trend-nutrition-arrow {
  color: #C4862A;
}

.trend-nutrition-content {
  padding: 0 22px 22px;
  animation: accordionFadeIn 0.3s ease;
}

@keyframes accordionFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.trend-kcal-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(61, 26, 12, 0.08);
}

.trend-kcal-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #C4862A;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.trend-kcal-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3D1A0C;
  margin-left: 6px;
}

.trend-portion-note {
  font-size: 0.9rem;
  color: #66554D;
  font-weight: 600;
  margin-top: 4px;
}

.trend-nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin-bottom: 16px;
}

.nutri-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #515150;
  font-family: 'Inter', sans-serif;
}

.nutri-row span {
  color: #515150;
}

.nutri-row strong {
  color: #2D1308;
  font-weight: 700;
}

.trend-nutrition-disclaimer {
  font-size: 0.73rem;
  color: #998880;
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(61, 26, 12, 0.06);
  padding-top: 12px;
}
