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

:root {
  --bg-dark: #050508;
  --bg-card: rgba(14, 14, 22, 0.7);
  --bg-card-hover: rgba(22, 22, 34, 0.95);
  --bg-panel: rgba(10, 10, 15, 0.9);
  --border-glass: rgba(229, 169, 59, 0.12);
  --border-active: rgba(229, 169, 59, 0.45);
  
  --primary: #e5a93b; /* Premium Gold */
  --primary-light: #f7cb78;
  --primary-glow: rgba(229, 169, 59, 0.25);
  
  --secondary: #ff5400; /* Ember Orange */
  --secondary-glow: rgba(255, 84, 0, 0.25);
  
  --text-main: #f8f9fa;
  --text-muted: #8e92a8;
  --text-dark: #07070a;
  
  /* Flavor profiles colors */
  --flavor-sweet: #ff5e7e;
  --flavor-sour: #d4fc34;
  --flavor-cool: #00f5d4;
  --flavor-spicy: #ff9f1c;
  --flavor-floral: #ff00a0;
  --flavor-woody: #8d5b4c;
  
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(229, 169, 59, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background animated smoke effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(229, 169, 59, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 84, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}

/* Floating smoke clouds */
.smoke-ambient {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: drift 25s infinite alternate ease-in-out;
}

.smoke-ambient-2 {
  position: fixed;
  right: 5%;
  top: 20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 84, 0, 0.04) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: drift 35s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, 120px) scale(0.9); }
}

/* Layout Containers */
.app-container {
  max-width: 95%;
  width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-container {
  max-width: 95%;
  width: 1720px;
  margin: 0 auto;
  padding: 80px 24px 20px 24px;
}

.main-content-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.page-section {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.page-section.active {
  display: block;
}

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

/* Glassmorphism utility card */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-neon);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(229, 169, 59, 0.25);
  box-shadow: var(--shadow-neon), var(--shadow-glow);
}

/* Navigation Bar */
header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: rgba(5, 5, 8, 0.85);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: -2px;
}

.gold-text {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link.active {
  color: var(--primary);
}

/* Auth buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-auth-login {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-auth-login:hover {
  border-color: var(--primary);
  background: rgba(229, 169, 59, 0.05);
}

.btn-auth-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-dark);
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-auth-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(229, 169, 59, 0.3);
}

/* ---------------------------------
   HERO SECTION
   --------------------------------- */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 95%;
  width: 1720px;
  margin: 0 auto;
  padding: 60px 24px 20px 24px;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}

@media (max-width: 968px) {
  .hero-description {
    margin: 0 auto;
  }
}

.hero-action-row {
  margin-top: 10px;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-dark);
  border: 1px solid var(--primary-light);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(229, 169, 59, 0.25);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(229, 169, 59, 0.45);
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 15px;
}

@media (max-width: 968px) {
  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .hero-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-icon {
  color: var(--primary);
  font-size: 16px;
}

/* Hero Visual & Floating Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 0.9;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.25) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-shisha-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, var(--bg-dark) 15%, transparent 100%);
}

/* Floating Badges around Shisha */
.floating-card {
  position: absolute;
  background: rgba(14, 14, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 5;
  animation: floatCard 6s infinite alternate ease-in-out;
}

.f-card-1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.f-card-2 {
  top: 45%;
  left: -8%;
  animation-delay: 2s;
}

.f-card-3 {
  bottom: 12%;
  right: -3%;
  animation-delay: 4s;
}

@media (max-width: 968px) {
  .floating-card {
    display: none; /* Hide floating cards on mobile for cleaner visual */
  }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.f-card-icon {
  font-size: 24px;
  background: rgba(229, 169, 59, 0.1);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(229, 169, 59, 0.15);
}

.f-card-details {
  display: flex;
  flex-direction: column;
}

.f-card-percent {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.f-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: -1px;
}

.f-card-brand {
  font-size: 10px;
  color: var(--text-muted);
}

/* ---------------------------------
   SECTION HEADERS
   --------------------------------- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.section-title-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary);
}

/* ---------------------------------
   HOW IT WORKS (NASIL ÇALIŞIR)
   --------------------------------- */
.steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.01);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.02);
}

@media (max-width: 968px) {
  .steps-grid {
    flex-direction: column;
    gap: 30px;
  }
}

.step-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 169, 59, 0.04);
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.step-svg {
  width: 28px;
  height: 28px;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
}

.step-arrow {
  font-size: 20px;
  color: var(--border-glass);
  font-weight: 700;
}

@media (max-width: 968px) {
  .step-arrow {
    transform: rotate(90deg);
  }
}

/* ---------------------------------
   QUICK BUILDER (KENDİ KARIŞIMINI OLUŞTUR)
   --------------------------------- */
.quick-builder-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr 0.3fr;
  gap: 40px;
  padding: 40px;
}

@media (max-width: 968px) {
  .quick-builder-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.qb-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qb-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

.qb-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

#scroll-to-builder-btn {
  margin-top: 15px;
  align-self: flex-start;
}

.qb-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.filter-options-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qb-filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.qb-filter-btn:hover {
  border-color: rgba(229, 169, 59, 0.3);
  color: var(--text-main);
}

.qb-filter-btn.active {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.15);
}

.qb-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.03);
  flex-wrap: wrap;
  gap: 15px;
}

.qb-footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

#qb-submit-btn {
  border: none;
}

.qb-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 968px) {
  .qb-right {
    display: none;
  }
}

.hookah-silhouette-svg {
  width: 55px;
  height: 130px;
  opacity: 0.8;
}

/* ---------------------------------
   KARIŞIM SİHİRBAZI
   --------------------------------- */
.builder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 968px) {
  .builder-grid {
    grid-template-columns: 1fr;
  }
}

.builder-left, .builder-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h2 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-body {
  padding: 24px;
}

/* Flavor selectors list */
.flavor-selector-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.015);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.flavor-dropdown-container {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ratio-slider-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flavor-ratio-display {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.flavor-ratio-display span.val {
  color: var(--primary-light);
  font-size: 14px;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: var(--transition-smooth);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.remove-flavor-btn {
  background: rgba(255, 94, 126, 0.08);
  color: var(--flavor-sweet);
  border: 1px solid rgba(255, 94, 126, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
  margin-top: 20px;
}

.remove-flavor-btn:hover {
  background: var(--flavor-sweet);
  color: var(--bg-dark);
}

.add-flavor-trigger {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(229, 169, 59, 0.2);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-flavor-trigger:hover {
  background: rgba(229, 169, 59, 0.04);
  border-color: var(--primary-light);
  color: var(--text-main);
}

select.custom-select, input.custom-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  width: 100%;
}

select.custom-select:focus, input.custom-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.15);
}

/* ---------------------------------
   CIRCULAR BOWL VISUALIZER
   --------------------------------- */
.bowl-visualizer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  background: radial-gradient(circle at center, rgba(30, 30, 45, 0.2) 0%, transparent 70%);
}

.bowl-wrapper.circular {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coal {
  background: #15151c;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

.coal.glowing {
  background: radial-gradient(circle at center, #ff6a00 10%, #ff1a00 65%, #15151c 95%);
  animation: emberBrighten 3s infinite alternate;
  box-shadow: 
    0 0 18px rgba(255, 60, 0, 0.6),
    inset 0 0 6px rgba(255, 180, 0, 0.5);
}

@keyframes emberBrighten {
  0% { filter: brightness(0.95); }
  50% { filter: brightness(1.2) contrast(1.15); }
  100% { filter: brightness(0.9); }
}

/* Circular Phunnel Bowl shape (Top View) */
.shisha-bowl.circular {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #111115;
  border: 8px solid #252530;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  transition: background 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Center Spire (phunnel hole) */
.spire.circular-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #252530;
  border: 4px solid #111115;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 
    0 0 10px rgba(0, 0, 0, 0.5),
    inset 0 0 8px rgba(0, 0, 0, 0.9);
}

#bowl-center-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

/* Coals arranged in a triangle on top of the circular bowl */
.coals-circle-container {
  position: absolute;
  width: 170px;
  height: 170px;
  pointer-events: none;
  z-index: 12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coals-circle-container .coal {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

/* Position 3 coals on the bowl rim */
.coals-circle-container .coal.c1 {
  top: 4px;
  left: 50%;
  transform: translateX(-50%) rotate(15deg);
}

.coals-circle-container .coal.c2 {
  bottom: 18px;
  left: 10px;
  transform: rotate(-35deg);
}

.coals-circle-container .coal.c3 {
  bottom: 18px;
  right: 10px;
  transform: rotate(45deg);
}

/* Mix Summary Ratios alert text */
.sum-indicator {
  margin-top: 25px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sum-indicator.valid {
  background: rgba(229, 169, 59, 0.1);
  color: var(--primary);
  border: 1px solid rgba(229, 169, 59, 0.2);
}

.sum-indicator.invalid {
  background: rgba(255, 94, 126, 0.08);
  color: var(--flavor-sweet);
  border: 1px solid rgba(255, 94, 126, 0.15);
  animation: pulseWarning 1.5s infinite;
}

@keyframes pulseWarning {
  0% { opacity: 0.8; }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.8; }
}

/* Dynamic Flavor Profile Chart (Progress Bars) */
.profile-bar-row {
  margin-bottom: 12px;
}

.profile-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.profile-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.profile-bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.5s ease-out;
}

/* ---------------------------------
   RECIPES CONTROLS & FILTER TAGS
   --------------------------------- */
.recipes-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input-wrapper .custom-input {
  padding-left: 42px;
}

.filter-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-tag {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tag:hover {
  border-color: rgba(229, 169, 59, 0.35);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(229, 169, 59, 0.08);
  transform: translateY(-1px);
}

.filter-tag.active {
  background: rgba(229, 169, 59, 0.06);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(229, 169, 59, 0.15);
  font-weight: 700;
}

@media (max-width: 768px) {
  .recipes-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .search-input-wrapper {
    max-width: 100%;
  }
  
  .filter-group {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-tag {
    white-space: nowrap;
  }
}

/* ---------------------------------
   POPULAR RECIPES & PREMIUM GRID
   --------------------------------- */
.recipes-layout-grid {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 30px;
}

@media (max-width: 968px) {
  .recipes-layout-grid {
    grid-template-columns: 1fr;
  }
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.recipe-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.recipe-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
}

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

.recipe-card-image-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-glass);
}

.recipe-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.recipe-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.recipe-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.tag-curated {
  background: rgba(229, 169, 59, 0.12);
  color: var(--primary);
  border: 1px solid rgba(229, 169, 59, 0.2);
}

.tag-user {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recipe-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.recipe-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.recipe-mix-list {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.02);
}

.recipe-mix-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
}

.recipe-mix-item:last-child {
  margin-bottom: 0;
}

.recipe-mix-flavor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.flavor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.recipe-mix-percentage {
  font-weight: 700;
  color: var(--primary-light);
}

.recipe-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  color: var(--text-muted);
}

.recipe-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.recipe-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.recipe-likes:hover {
  color: var(--flavor-sweet);
}

/* Premium crown banner card */
.premium-card {
  border-color: var(--primary);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(180deg, rgba(229, 169, 59, 0.04) 0%, rgba(5, 5, 8, 0.4) 100%);
  min-height: 420px;
}

.premium-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-header-icon {
  font-size: 32px;
  margin-bottom: 5px;
}

.premium-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.premium-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-bullets li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bullet-check {
  color: var(--primary);
  font-weight: 700;
}

#premium-activate-btn {
  border: none;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

.premium-image-wrapper {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.premium-shisha-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 20px var(--primary-glow));
}

/* ---------------------------------
   TÜTÜN KÜTÜPHANESİ
   --------------------------------- */
.library-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

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

.brand-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 12px 18px;
  border-radius: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.brand-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.brand-btn.active {
  background: rgba(229, 169, 59, 0.08);
  color: var(--primary);
  border-color: rgba(229, 169, 59, 0.15);
}

.tobacco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.tobacco-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tobacco-brand-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 700;
}

.tobacco-flavor-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.tobacco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tobacco-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.tobacco-characteristics {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.char-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.char-label {
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
}

.char-value {
  font-weight: 700;
  color: var(--text-main);
}

/* ---------------------------------
   BRAND MARQUEE (TÜM MARKALAR)
   --------------------------------- */
.brands-marquee-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(255,255,255,0.01);
  padding: 24px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.02);
}

@media (max-width: 680px) {
  .brands-marquee-wrapper {
    justify-content: center;
    gap: 15px;
  }
}

.brand-logo-item {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.brand-logo-item:hover {
  color: var(--primary);
  transform: scale(1.05);
}

/* ---------------------------------
   HAZIRLAMA İPUÇLARI (Guide)
   --------------------------------- */
.guide-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card {
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.guide-header {
  padding: 18px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.guide-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.guide-header h3 {
  font-size: 15px;
  font-weight: 700;
  flex-grow: 1;
}

.guide-icon {
  font-size: 18px;
}

.guide-arrow {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.guide-card.open .guide-arrow {
  transform: rotate(180deg);
}

.guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(0,0,0,0.2);
}

.guide-card.open .guide-content {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.guide-content-inner {
  padding: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.guide-content-inner p {
  margin-bottom: 12px;
}

.guide-content-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.guide-content-inner li {
  margin-bottom: 6px;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(0,0,0,0.3);
}

/* Footer Section */
footer {
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 60px 0 40px 0;
  background: #040406;
  text-align: center;
}

.footer-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto 50px auto;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.stat-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 95%;
  width: 1720px;
  margin: 0 auto 40px auto;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer-social-wrapper {
    align-items: center;
  }
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  background: rgba(255,255,255,0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.15);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  max-width: 95%;
  width: 1720px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.legal-links a:hover {
  color: var(--primary);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(229, 169, 59, 0.08);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 169, 59, 0.25);
}

.recipe-tag-popular {
  background: #ff3b30;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.recipe-rating {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

@media (max-width: 968px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

.admin-mod-list {
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
}

.mod-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.mod-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mod-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.mod-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-delete-mod {
  background: rgba(255, 94, 126, 0.08);
  color: var(--flavor-sweet);
  border: 1px solid rgba(255, 94, 126, 0.15);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-delete-mod:hover {
  background: var(--flavor-sweet);
  color: var(--bg-dark);
}

/* User Profile details in Header */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.user-email-badge {
  color: var(--primary-light);
}

.user-role-badge {
  background: rgba(229, 169, 59, 0.12);
  color: var(--primary);
  border: 1px solid rgba(229, 169, 59, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-logout {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-logout:hover {
  color: var(--text-main);
  border-color: rgba(255,255,255,0.2);
}

/* Comments Modal list items */
.comment-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.comment-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding-right: 12px;
}

.comment-author-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

.comment-stars {
  font-size: 10px;
  color: var(--primary);
}

.comment-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.comment-date {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2px;
}

.btn-approve-mod {
  background: rgba(0, 245, 212, 0.08);
  color: var(--flavor-cool);
  border: 1px solid rgba(0, 245, 212, 0.15);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-approve-mod:hover {
  background: var(--flavor-cool);
  color: var(--bg-dark);
}

/* ---------------------------------
   PREMIUM CHECKOUT PAGE STYLES
   --------------------------------- */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.exclusive-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-dark);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
  width: fit-content;
}

.exclusive-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  background: linear-gradient(135deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}

.bullet-gold {
  color: var(--primary);
  font-weight: 800;
}

.checkout-form-label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-weight: 600;
}

.credit-card-preview {
  width: 100%;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #0f0f15 0%, #1e1a14 50%, #e5a93b 100%);
  border: 1px solid rgba(229, 169, 59, 0.25);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(229, 169, 59, 0.15);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(229, 169, 59, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.card-chip {
  display: inline-block;
  margin-top: 4px;
}

.card-logo {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

.card-number-display {
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 2.5px;
  color: #fff;
  margin: 24px 0 16px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.card-holder-display, .card-expiry-display {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 968px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ---------------------------------
   PAGINATION BUTTONS
   --------------------------------- */
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.page-btn:hover {
  border-color: rgba(229, 169, 59, 0.35);
  color: var(--text-main);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.08);
}

.page-btn.active {
  background: rgba(229, 169, 59, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(229, 169, 59, 0.15);
}

.btn-primary-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 84, 0, 0.45);
}

.store-card:hover {
  border-color: rgba(255, 84, 0, 0.3) !important;
  box-shadow: var(--shadow-neon), 0 0 25px rgba(255, 84, 0, 0.15) !important;
}

/* ---------------------------------
   LOCKED RECIPE CARDS (PREMIUM)
   --------------------------------- */
.recipe-card.recipe-card-locked {
  position: relative;
  cursor: pointer;
}

/* Blur the inner card elements */
.recipe-card.recipe-card-locked .recipe-card-image-wrapper,
.recipe-card.recipe-card-locked .recipe-card-content {
  filter: blur(8px);
  opacity: 0.35;
  pointer-events: none;
}

/* Overlay covering the locked card */
.recipe-card-locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: rgba(5, 5, 8, 0.55);
  transition: var(--transition-smooth);
}

.recipe-card.recipe-card-locked:hover .recipe-card-locked-overlay {
  background: rgba(5, 5, 8, 0.7);
}

.recipe-card-locked-overlay .lock-icon {
  font-size: 32px;
  margin-bottom: 6px;
  animation: pulseLock 2s infinite ease-in-out;
}

@keyframes pulseLock {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.recipe-card-locked-overlay .lock-text {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(229, 169, 59, 0.3);
}

/* Clickable profile styles in header */
.user-email-badge,
.user-role-badge {
  transition: var(--transition-smooth);
}

.user-email-badge:hover,
.user-role-badge:hover {
  color: var(--primary-light) !important;
  border-color: var(--primary) !important;
  text-shadow: 0 0 10px rgba(229, 169, 59, 0.4);
  transform: translateY(-1px);
}
