/* 
 * Zero Waste Virtual Cookbook - Styling Framework
 * Curated Ocean Design System, Glassmorphism, and Fluid Animations
 */



/* Design Tokens & Theme Variables */
:root {
  --color-abyss-navy: #02070e;
  --color-navy: #040f1a;
  --color-marine: #081d2e;
  --color-turquoise: #2780a4;
  --color-mint: #b0d6ce;
  --color-gold: #54c5f8;
  --color-ice-blue: #e0f7f7;
  --color-coral: #ff6f59;
  
  /* Glassmorphism Defaults */
  --color-glass-bg: rgba(8, 29, 46, 0.45);
  --color-glass-border: rgba(99, 194, 197, 0.2);
  --color-glass-shadow: rgba(2, 7, 14, 0.5);
  
  /* Fonts */
  --font-poppins: 'Poppins', sans-serif;
  --font-source: 'Source Serif 4', Georgia, serif;
  
  /* Dynamic Background Color Variable controlled via JS scroll */
  --ocean-bg-color: #0d324d;
}

/* Global Reset & Scrollbars */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--ocean-bg-color);
  color: var(--color-ice-blue);
  font-family: var(--font-source);
  scroll-behavior: smooth;
  transition: background-color 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Sea-Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-abyss-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--color-turquoise);
  border-radius: 5px;
  border: 2px solid var(--color-abyss-navy);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-mint);
}

/* Typography Helpers */
.font-poppins { font-family: var(--font-poppins); }
.font-source { font-family: var(--font-source); }

.font-editorial {
  font-size: 1.15rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glassmorphic-panel {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px var(--color-glass-shadow);
  border-radius: 20px;
}

/* ------------------------------------------------------------- */
/* BILINGUAL LANGUAGE CONTROLLER PILL */
/* ------------------------------------------------------------- */
.lang-controller-pill {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  background: rgba(4, 15, 26, 0.7);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-ice-blue);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.lang-btn.active {
  background: var(--color-turquoise);
  color: var(--color-abyss-navy);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(39, 128, 164, 0.4);
}

.lang-btn:hover:not(.active) {
  opacity: 0.9;
  background: rgba(224, 247, 247, 0.1);
}

/* ------------------------------------------------------------- */
/* FLOATING SEA EFFECTS: BUBBLES, CAUSTICS, BACKGROUND FISH */
/* ------------------------------------------------------------- */
#bubbles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bubble-particle {
  position: absolute;
  bottom: -20px;
  background: rgba(224, 247, 247, 0.15);
  border: 1.5px solid rgba(224, 247, 247, 0.3);
  border-radius: 50%;
  pointer-events: none;
  animation: float-up-bubble linear forwards;
}

@keyframes float-up-bubble {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) translateX(40px) scale(1.1);
    opacity: 0;
  }
}

/* caustics underwater light-ray overlay */
#caustics-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: radial-gradient(circle at 50% -10%, rgba(84, 197, 248, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 10% 20%, rgba(99, 194, 197, 0.1) 0%, transparent 40%);
  mix-blend-mode: overlay;
  animation: caustics-sway 18s ease-in-out infinite alternate;
  opacity: 0.6;
  transition: opacity 1.2s ease;
}

@keyframes caustics-sway {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* ------------------------------------------------------------- */
/* SUBMARINE DEPTH GAUGE SIDEBAR */
/* ------------------------------------------------------------- */
.submarine-depth-sidebar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.depth-track-bar {
  position: relative;
  width: 4px;
  height: 250px;
  background: rgba(224, 247, 247, 0.1);
  border-radius: 2px;
}

.depth-marker-node {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--color-turquoise);
  border: 3px solid var(--color-abyss-navy);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-turquoise);
  transition: top 0.2s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.depth-marker-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--color-turquoise);
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.depth-gauge-display-bubble {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(2, 7, 14, 0.3);
}

.depth-label-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-mint);
  margin-bottom: 2px;
}

.depth-meter-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold);
  text-shadow: 0 0 5px rgba(84, 197, 248, 0.4);
}

/* ------------------------------------------------------------- */
/* LANDING COVER SECTION */
/* ------------------------------------------------------------- */
.landing-cover-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  overflow: hidden;
}

.landing-content-frame {
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  padding: 0 2rem;
}

/* Circular Logo Parallax Vibe */
.landing-logo-ring {
  position: relative;
  width: 324px;
  height: 324px;
  max-width: 90vw;
  max-height: 90vw;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 128, 164, 0.1) 0%, rgba(2, 7, 14, 0.4) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-slow 6s ease-in-out infinite;
}

.logo-inner-img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 3.6px solid var(--color-ice-blue);
  box-shadow: 0 10px 40px rgba(2, 7, 14, 0.8),
              inset 0 0 20px rgba(99, 194, 197, 0.3);
  transform: scale(1.05);
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.brand-text-header {
  font-family: var(--font-poppins);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1em;
}

.brand-zero {
  color: var(--color-ice-blue);
}

.brand-waste {
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(84, 197, 248, 0.3);
}

.brand-subtitle {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  letter-spacing: 0.3em;
  color: var(--color-mint);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.brand-tagline-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Premium Button Ripple Effect */
.ripple-action-btn {
  background: var(--color-gold);
  color: var(--color-abyss-navy);
  border: none;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 25px rgba(84, 197, 248, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.ripple-action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(224, 247, 247, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.ripple-action-btn:hover::before {
  width: 300px;
  height: 300px;
}

.ripple-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(84, 197, 248, 0.6);
}

.btn-arrow-svg {
  transition: transform 0.3s ease;
}

.ripple-action-btn:hover .btn-arrow-svg {
  transform: translateX(5px);
}

/* Wave Layers on Landing cover bottom */
.landing-svg-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.svg-wave-element {
  position: relative;
  display: block;
  width: 200%;
  height: 120px;
  fill: var(--color-marine);
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave-layer-1 {
  animation: wave-sway-anim 16s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  fill: var(--color-turquoise);
  opacity: 0.3;
}

.wave-layer-2 {
  position: absolute;
  bottom: 0;
  animation: wave-sway-anim 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite reverse;
  fill: var(--color-marine);
  opacity: 0.5;
  height: 100px;
}

.wave-layer-3 {
  position: absolute;
  bottom: -2px;
  animation: wave-sway-anim 8s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  fill: var(--ocean-bg-color);
  opacity: 1;
  height: 80px;
  transition: fill 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes wave-sway-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------------------------------------- */
/* SEA STORY PREFACE SECTION */
/* ------------------------------------------------------------- */
.story-editorial-section {
  position: relative;
  padding: 8rem 0;
  z-index: 10;
}

.story-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media(min-width: 900px) {
  .story-panel-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.story-header-area {
  margin-bottom: 2.5rem;
}

.story-preface-meta {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-mint);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.story-section-title {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-ice-blue);
}

.story-narrative-card {
  padding: 3rem;
  border-radius: 24px;
}

.story-paragraphs-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-mentors-signature {
  margin-top: 2rem;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
  border-top: 1px solid rgba(224, 247, 247, 0.15);
  padding-top: 1.5rem;
}

.story-btn-wrapper {
  margin-top: 1rem;
}

.read-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 194, 197, 0.1);
  color: var(--color-ice-blue);
  border: 1px solid rgba(99, 194, 197, 0.25);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.read-story-btn svg {
  transition: transform 0.3s ease;
}

.read-story-btn:hover {
  background: var(--color-turquoise);
  color: var(--color-abyss-navy);
  border-color: var(--color-turquoise);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39, 128, 164, 0.4);
}

.read-story-btn:hover svg {
  transform: translateX(4px);
}

.story-visual-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  border-radius: 24px;
}

.blue-econ-panel-title {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blue-econ-text-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ------------------------------------------------------------- */
/* 10 RECIPE MEALS SECTION */
/* ------------------------------------------------------------- */
.recipes-meals-section {
  position: relative;
  padding: 4rem 0 2.5rem;
  z-index: 10;
}

.recipes-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.recipes-section-headline {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.25rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-ice-blue);
  margin-bottom: 1rem;
}

.recipes-section-decor-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto;
}

.recipes-cards-stack-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.recipe-card {
  padding: 2.5rem;
  border-radius: 28px;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.recipe-card:hover {
  border-color: rgba(99, 194, 197, 0.5);
  transform: translateY(-4px);
}

@media (min-width: 900px) {
  .recipes-cards-stack-list {
    padding-bottom: 28rem; /* Allows room for all 10 cards to stack fully before container ends */
  }

  .recipe-card {
    position: sticky;
    top: calc(105px + var(--stack-index) * 75px);
    z-index: calc(10 + var(--stack-index));
    transform-origin: top center;
    background: rgba(4, 15, 26, 0.95); /* Layer opacity protection to keep stacked texts legible */
    border: 1px solid rgba(99, 194, 197, 0.2);
    box-shadow: 0 -15px 30px rgba(2, 7, 14, 0.6);
  }

  .recipe-card:hover {
    border-color: rgba(99, 194, 197, 0.5);
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 -20px 40px rgba(39, 128, 164, 0.4);
  }
}

.recipe-card-header {
  border-bottom: 1px solid rgba(224, 247, 247, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.recipe-meta-depth {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.depth-bubble {
  background: var(--color-turquoise);
  color: var(--color-abyss-navy);
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(39, 128, 164, 0.3);
}

.recipe-chef {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-mint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.recipe-title {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--color-gold);
}

/* Card Body Layout Grid */
.recipe-card-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media(min-width: 900px) {
  .recipe-card-body-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* Image & Video Visual Section (Left) */
.recipe-visual-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recipe-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(224, 247, 247, 0.15);
  box-shadow: 0 5px 15px rgba(2, 7, 14, 0.2);
}

.recipe-img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fish-silhouette-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

.zero-waste-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(2, 7, 14, 0.8);
  border: 1px dashed var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(2, 7, 14, 0.4);
}

/* Watch Video Button */
.watch-video-btn {
  background: rgba(39, 128, 164, 0.25);
  color: var(--color-ice-blue);
  border: 1px solid rgba(99, 194, 197, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.watch-video-btn:hover {
  background: var(--color-turquoise);
  color: var(--color-abyss-navy);
  border-color: var(--color-turquoise);
  box-shadow: 0 4px 15px rgba(39, 128, 164, 0.4);
}

/* Card Action Button Deck */
.recipe-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

@media(min-width: 480px) {
  .recipe-card-actions {
    flex-direction: row;
  }
  .recipe-card-actions > * {
    flex: 1;
  }
}

.view-details-btn {
  background: rgba(176, 214, 206, 0.15);
  color: var(--color-mint);
  border: 1px solid rgba(176, 214, 206, 0.3);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.view-details-btn:hover {
  background: var(--color-mint);
  color: var(--color-abyss-navy);
  border-color: var(--color-mint);
  box-shadow: 0 4px 15px rgba(176, 214, 206, 0.4);
}

/* Tabs Navigation (Right) */
.recipe-info-section {
  display: flex;
  flex-direction: column;
}

.recipe-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 2px solid rgba(224, 247, 247, 0.1);
  padding-bottom: 8px;
  margin-bottom: 1.5rem;
}

.tab-nav-btn {
  background: none;
  border: none;
  color: var(--color-ice-blue);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.tab-nav-btn:hover {
  opacity: 0.9;
  background: rgba(224, 247, 247, 0.05);
}

.tab-nav-btn.active {
  color: var(--color-gold);
  background: rgba(84, 197, 248, 0.1);
  border: 1px solid rgba(84, 197, 248, 0.2);
  opacity: 1;
}

/* Tabs window content */
.recipe-tab-content-window {
  flex: 1;
  min-height: 200px;
}

.fade-in-anim {
  animation: fadeIn 0.4s ease forwards;
}

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

.tab-paragraph {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Zero Waste Tip Chef Box styling */
.zero-waste-tip-box {
  background: rgba(84, 197, 248, 0.05);
  border-left: 4px solid var(--color-gold);
  padding: 1.25rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.5rem;
}

.tip-badge {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tip-text {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
  font-style: italic;
}

/* Ingredients Checklist with Strikethrough effect */
.sub-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ingredient-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.ingredient-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(224, 247, 247, 0.1);
  border: 1px solid var(--color-glass-border);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ingredient-check-item:hover .custom-checkbox {
  border-color: var(--color-turquoise);
  background: rgba(39, 128, 164, 0.1);
}

.ingredient-checkbox:checked ~ .custom-checkbox {
  background: var(--color-turquoise);
  border-color: var(--color-turquoise);
}

.ingredient-checkbox:checked ~ .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-abyss-navy);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.ingredient-text {
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.ingredient-checkbox:checked ~ .ingredient-text {
  opacity: 0.4;
  text-decoration: line-through;
}

/* Recipe Steps */
.prep-steps-list {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prep-steps-list li {
  line-height: 1.6;
  font-size: 0.95rem;
  padding-left: 6px;
}

.prep-steps-list li::marker {
  font-family: var(--font-poppins);
  font-weight: 700;
  color: var(--color-gold);
}

/* Nutrition Gauge Chart Dashboard */
.nutrition-dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.nutrition-bar-item {
  width: 100%;
}

.nutrition-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.nutrition-label {
  opacity: 0.8;
}

.nutrition-value {
  font-weight: 700;
}

.nutrition-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(224, 247, 247, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.nutrition-progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Allergens Box & Badges */
.allergens-alert-box {
  display: flex;
  gap: 16px;
  background: rgba(255, 111, 89, 0.07);
  border: 1px solid rgba(255, 111, 89, 0.2);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.warning-icon-svg {
  color: var(--color-coral);
  flex-shrink: 0;
}

.allergens-alert-text p {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.85;
  margin-top: 2px;
}

.allergens-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.allergen-badge {
  background: var(--color-coral);
  color: var(--color-abyss-navy);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(255, 111, 89, 0.25);
}

/* ------------------------------------------------------------- */
/* FOOTER & ACCREDITATION */
/* ------------------------------------------------------------- */
.footer-editorial {
  position: relative;
  background: var(--color-abyss-navy);
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--color-glass-border);
  z-index: 10;
}

.footer-content-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(224, 247, 247, 0.05);
  border: 2px solid var(--color-glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
}

.footer-title {
  font-family: var(--font-poppins);
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: none; /* Keep the exact zero waSTe casing from HTML */
  margin-bottom: -0.3rem;
  letter-spacing: -0.01em;
  display: block;
}

.footer-sub {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.24em; /* Explicitly set to 0.24em as requested */
  color: var(--color-gold); /* Electric gold/blue matching mentors' signature color (#54c5f8) */
  margin-bottom: 2rem;
  text-transform: uppercase;
  padding-left: 0.24em; /* Balance letter-spacing to center perfectly */
  box-sizing: border-box;
  display: block;
}

.footer-accreditation {
  max-width: 600px;
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.5;
  margin-bottom: 3rem;
}

.copyright-text {
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.4;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.social-icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 29, 46, 0.4);
  border: 1px solid var(--color-glass-border);
  color: var(--color-ice-blue);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

.social-icon-btn svg {
  transition: transform 0.3s ease;
}

.social-icon-btn:hover {
  transform: translateY(-4px);
}

.social-icon-btn:hover svg {
  transform: scale(1.15);
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.55);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.55);
}

.social-icon-btn.tiktok:hover {
  background: #010101;
  color: #fff;
  border-color: #00f2fe;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4), 0 4px 20px rgba(254, 44, 85, 0.4);
  border-right-color: #fe2c55;
  border-bottom-color: #fe2c55;
  border-left-color: #00f2fe;
  border-top-color: #00f2fe;
}


/* ------------------------------------------------------------- */
/* FLOATING BACK-TO-SURFACE ACTION BUTTON */
/* ------------------------------------------------------------- */
#back-to-surface-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  color: var(--color-ice-blue);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px var(--color-glass-shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

#back-to-surface-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-surface-btn:hover {
  background: var(--color-gold);
  color: var(--color-abyss-navy);
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(84, 197, 248, 0.5);
  transform: translateY(-3px);
}

.top-arrow-svg {
  transition: transform 0.3s ease;
}

#back-to-surface-btn:hover .top-arrow-svg {
  transform: translateY(-3px);
}

/* ------------------------------------------------------------- */
/* HIGH-FIDELITY SIMULATED VIDEO PLAYER OVERLAY MODAL */
/* ------------------------------------------------------------- */
#video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 7, 14, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#video-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.video-modal-content-panel {
  width: 90%;
  max-width: 850px;
  background: #041221;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#video-modal-overlay.visible .video-modal-content-panel {
  transform: scale(1);
}

.video-modal-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(224, 247, 247, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-modal-title-box h4 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-gold);
}

.video-modal-title-box span {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-mint);
}

.video-modal-close-btn {
  background: rgba(224, 247, 247, 0.05);
  border: 1px solid var(--color-glass-border);
  color: var(--color-ice-blue);
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close-btn:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-abyss-navy);
}

/* High Fidelity Video Screen Canvas */
.video-canvas-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-graphic-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-mock-play-overlay-btn {
  position: absolute;
  z-index: 100;
  width: 70px;
  height: 70px;
  background: rgba(39, 128, 164, 0.85);
  border: 2px solid var(--color-ice-blue);
  color: var(--color-ice-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 20px var(--color-turquoise);
  transition: all 0.3s ease;
  opacity: 1;
}

.video-mock-play-overlay-btn:hover {
  transform: scale(1.1);
  background: var(--color-gold);
  color: var(--color-abyss-navy);
  border-color: var(--color-gold);
  box-shadow: 0 0 25px var(--color-gold);
}

.video-mock-screengrid {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.video-mock-chef-name {
  display: none !important;
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  text-transform: uppercase;
  color: var(--color-ice-blue);
  text-shadow: 0 4px 15px rgba(2, 7, 14, 0.8);
  margin-bottom: 0.5rem;
}

.video-mock-tagline {
  display: none !important;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(2, 7, 14, 0.8);
}

/* Video Control Deck Bar */
.video-control-deck-bar {
  background: rgba(2, 7, 14, 0.95);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-progress-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-time-indicator {
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
  white-space: nowrap;
}

.video-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(224, 247, 247, 0.15);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}

.video-progress-track:hover {
  height: 8px;
}

.video-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-turquoise);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.video-control-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-left-actions, .video-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-action-btn {
  background: rgba(224, 247, 247, 0.05);
  border: 1px solid var(--color-glass-border);
  color: var(--color-ice-blue);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-action-btn:hover {
  background: var(--color-turquoise);
  color: var(--color-abyss-navy);
  border-color: var(--color-turquoise);
}

.video-action-btn.playing {
  background: var(--color-gold);
  color: var(--color-abyss-navy);
  border-color: var(--color-gold);
}

.video-volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider-bar {
  -webkit-appearance: none;
  width: 80px;
  height: 4px;
  background: rgba(224, 247, 247, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-slider-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-turquoise);
  cursor: pointer;
  box-shadow: 0 0 5px var(--color-turquoise);
}

.volume-slider-bar::-webkit-slider-thumb:hover {
  background: var(--color-mint);
  box-shadow: 0 0 8px var(--color-mint);
}

/* ------------------------------------------------------------- */
/* EDUCATIONAL FISH SPECIES SHOWCASE */
/* ------------------------------------------------------------- */
.fish-showcase-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  display: none; /* Controlled by JS dynamically */
}

.fish-showcase-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media(min-width: 768px) {
  .fish-showcase-body {
    grid-template-columns: 240px 1fr;
  }
}

.fish-showcase-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(224, 247, 247, 0.15);
  background: rgba(2, 7, 14, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fish-showcase-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  box-sizing: border-box;
  transition: transform 0.5s ease;
}

.fish-showcase-image-frame:hover img {
  transform: scale(1.05);
}

/* Fallback SVG Swimming Vector styling */
.fish-svg-fallback-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: radial-gradient(circle at center, rgba(39, 128, 164, 0.15) 0%, rgba(2, 7, 14, 0.5) 100%);
}

.fish-outline-animated-svg {
  width: 85%;
  height: auto;
  animation: swim-float 5s ease-in-out infinite alternate;
}

.fish-placeholder-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-mint);
  opacity: 0.8;
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-align: center;
}

/* Fish stats, description & badges styling */
.fish-showcase-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fish-showcase-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fish-showcase-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-mint);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 2px;
}

.fish-species-title {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
}

.fish-species-scientific {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ice-blue);
  font-style: italic;
  opacity: 0.9;
}

.fish-species-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: #e0f7f7;
  opacity: 0.95;
  margin: 0;
}

.fish-quick-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border-top: 1px dashed rgba(224, 247, 247, 0.15);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

@media(min-width: 480px) {
  .fish-quick-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

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

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ice-blue);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-mint);
}

/* Float / Swimming Keyframes animation */
@keyframes swim-float {
  0% {
    transform: translateY(0) rotate(-2deg) scaleX(1);
  }
  50% {
    transform: translateY(-4px) rotate(1deg) scaleX(1.02);
  }
  100% {
    transform: translateY(2px) rotate(-1deg) scaleX(0.98);
  }
}

/* ------------------------------------------------------------- */
/* PREMIUM LIQUID OCEAN LOGO WAVES EFFECTS */
/* ------------------------------------------------------------- */
.logo-wave-layer {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(84, 197, 248, 0.16) 0%, rgba(39, 128, 164, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
  transition: inset 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s ease;
}

.wave-layer-back {
  border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
  animation: wave-morph-back 14s linear infinite;
}

.wave-layer-mid {
  inset: -6px;
  border-radius: 53% 47% 59% 41% / 45% 55% 42% 58%;
  background: linear-gradient(135deg, rgba(84, 197, 248, 0.1) 0%, rgba(176, 214, 206, 0.08) 100%);
  animation: wave-morph-mid 10s linear infinite reverse;
}

.wave-layer-front {
  inset: -3px;
  border-radius: 47% 53% 44% 56% / 52% 48% 54% 46%;
  background: linear-gradient(135deg, rgba(99, 194, 197, 0.08) 0%, rgba(84, 197, 248, 0.06) 100%);
  animation: wave-morph-front 8s linear infinite;
}

/* Hover expansion ripples */
.landing-logo-ring:hover .logo-wave-layer {
  inset: -26px;
  background: linear-gradient(135deg, rgba(84, 197, 248, 0.25) 0%, rgba(39, 128, 164, 0.1) 100%);
}

.landing-logo-ring:hover .wave-layer-mid {
  inset: -18px;
}

.landing-logo-ring:hover .wave-layer-front {
  inset: -10px;
}

/* Morphing Waves Keyframes */
@keyframes wave-morph-back {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
  }
  50% {
    transform: rotate(180deg) scale(1.04);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
  }
}

@keyframes wave-morph-mid {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 53% 47% 59% 41% / 45% 55% 42% 58%;
  }
  50% {
    transform: rotate(180deg) scale(1.02);
    border-radius: 48% 52% 46% 54% / 54% 46% 52% 48%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 53% 47% 59% 41% / 45% 55% 42% 58%;
  }
}

@keyframes wave-morph-front {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 47% 53% 44% 56% / 52% 48% 54% 46%;
  }
  50% {
    transform: rotate(180deg) scale(1.01);
    border-radius: 52% 48% 56% 44% / 46% 54% 48% 52%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 47% 53% 44% 56% / 52% 48% 54% 46%;
  }
}

/* ------------------------------------------------------------- */
/* PREMIUM TISJA SKETCH PRELOADER STYLES */
/* ------------------------------------------------------------- */
#tisja-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f7f6f2; /* Premium warm ivory sketchbook paper background */
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  overflow: hidden;
}

#tisja-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.sketch-container {
  position: relative;
  width: min(340px, 80vw);
  height: min(425px, 100vw); /* Aspect ratio 4:5 optimized */
  margin-bottom: 2rem;
  background: transparent;
  border-radius: 16px;
  padding: 10px;
  box-sizing: border-box;
}

.sketch-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.sketch-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Retain original caricature watercolor accents (pink ears/noses, green greens) */
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05));
  mix-blend-mode: normal;
  transition: opacity 0.3s ease;
  opacity: 0; /* Keep hidden until load starts to avoid flash */
}

/* Hand-drawn squigglevision wiggles using active SVG filter overlays, keeping original colors */
.wiggle-state-1 {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05)) url(#wiggle-1) !important;
}
.wiggle-state-2 {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05)) url(#wiggle-2) !important;
}
.wiggle-state-3 {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05)) url(#wiggle-3) !important;
}

/* Fallback SVG styling for light background */
.sketch-fallback-svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-turquoise) !important;
  filter: drop-shadow(0 4px 10px rgba(39, 128, 164, 0.15));
}

/* Uncovering drawing mask matching paper color */
.sketch-drawing-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #f7f6f2; /* Covers and slowly reveals */
  transition: width 2.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
  box-shadow: -8px 0 15px 12px #f7f6f2; /* Blurred boundary edge */
}

/* Bouncing hand pencil indicator */
.sketch-pencil-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
  font-size: 24px;
  line-height: 1;
  transform: translate(-14px, -14px) rotate(0deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.preloader-text-group {
  width: 100%;
  margin-top: 1rem;
}

.preloader-quote {
  font-family: var(--font-editorial);
  font-size: clamp(1.4rem, 4.5vw, 2.1rem);
  font-weight: normal;
  color: #1c2a38; /* Ink navy/charcoal for premium paper contrast */
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  animation: preloader-fade-in-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
  text-shadow: none;
}

.sketch-progress-track {
  width: 240px;
  height: 4px;
  background: rgba(28, 42, 56, 0.08); /* Graphite pencil track */
  border-radius: 4px;
  margin: 0 auto 1.2rem auto;
  overflow: hidden;
  position: relative;
}

.sketch-progress-pencil-bar {
  height: 100%;
  width: 0%;
  background: #2780a4; /* Turquoise ink line */
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(39, 128, 164, 0.3);
  transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader-subtext {
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #4a5d6e; /* Slate subtext */
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
  animation: preloader-pulse 1.5s infinite ease-in-out;
}

@keyframes preloader-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

/* Clickable Homepage Recipe Card Elements Link Support */
.recipe-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.recipe-title-link:hover .recipe-title {
  color: var(--color-gold) !important; /* Electric blue hover glow */
  text-shadow: 0 0 10px rgba(84, 197, 248, 0.4);
}

.recipe-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.recipe-image-link:hover .recipe-img-placeholder {
  transform: scale(1.025);
  box-shadow: 0 8px 30px rgba(84, 197, 248, 0.25);
  border-color: rgba(84, 197, 248, 0.35);
}

/* ------------------------------------------------------------- */
/* FULL-WIDTH EDITORIAL SECTIONS */
/* ------------------------------------------------------------- */
.full-width-editorial {
  max-width: 1000px !important;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.blue-economy-editorial-section {
  position: relative;
  padding: 3rem 0 6rem 0;
  z-index: 10;
}

.blue-economy-editorial-section .story-narrative-card {
  border-left: 4px solid var(--color-turquoise);
  background: rgba(8, 29, 46, 0.25);
}

/* ------------------------------------------------------------- */
/* STUDENT STORIES CAROUSEL */
/* ------------------------------------------------------------- */
.student-stories-carousel-section {
  position: relative;
  padding: 3rem 0;
  z-index: 10;
}

.carousel-outer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem; /* Allow space for glow borders */
}

.carousel-control-btn {
  background: rgba(84, 197, 248, 0.08);
  border: 1px solid rgba(84, 197, 248, 0.25);
  color: var(--color-ice-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.carousel-control-btn:hover {
  background: rgba(84, 197, 248, 0.25);
  border-color: var(--color-turquoise);
  transform: scale(1.1);
  color: var(--color-mint);
  box-shadow: 0 0 15px rgba(84, 197, 248, 0.4);
}

.carousel-control-btn:active {
  transform: scale(0.95);
}

.carousel-dots-indicator {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(224, 247, 247, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-dot:hover {
  background: rgba(224, 247, 247, 0.45);
}

.carousel-dot.active {
  background: var(--color-turquoise);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(84, 197, 248, 0.5);
}

@media (max-width: 768px) {
  .carousel-outer-wrapper {
    gap: 0.5rem;
  }
  .carousel-control-btn {
    width: 40px;
    height: 40px;
  }
}

/* ------------------------------------------------------------- */
/* BLUE ECONOMY INTERACTIVE EDUCATIONAL DASHBOARD */
/* ------------------------------------------------------------- */
.edu-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(224, 247, 247, 0.1);
  padding-bottom: 1.2rem;
  flex-wrap: wrap;
}

.edu-tab-btn {
  background: rgba(8, 29, 46, 0.4);
  border: 1px solid rgba(224, 247, 247, 0.15);
  color: var(--color-ice-blue);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-poppins);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.edu-tab-btn:hover {
  border-color: var(--color-turquoise);
  color: var(--color-turquoise);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(84, 197, 248, 0.25);
}

.edu-tab-btn.active {
  background: var(--color-turquoise);
  border-color: var(--color-turquoise);
  color: var(--color-abyss-navy);
  box-shadow: 0 0 15px rgba(84, 197, 248, 0.4);
}

.edu-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.edu-tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.edu-aspects-list li {
  position: relative;
  padding-left: 1.25rem;
}

.edu-aspects-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-mint);
  font-weight: 800;
}

/* Floating Glassmorphic Navigation Dock */
.floating-glassmorphic-dock {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 50px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(4, 15, 26, 0.7);
  border: 1px solid rgba(84, 197, 248, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(2, 7, 14, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-glassmorphic-dock.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(224, 247, 247, 0.75);
  text-decoration: none;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}

.floating-nav-item .nav-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.floating-nav-item:hover {
  color: var(--color-ice-blue);
  background: rgba(84, 197, 248, 0.1);
}

.floating-nav-item:hover .nav-item-icon {
  transform: scale(1.1);
}

.floating-nav-item.active {
  color: var(--color-abyss-navy);
  background: var(--color-turquoise);
  box-shadow: 0 4px 15px rgba(84, 197, 248, 0.4);
}

.floating-nav-item.active .nav-item-icon {
  color: var(--color-abyss-navy);
  opacity: 1;
}

/* Macbook / Tablet / Mobile Responsive adjustments */
@media (max-width: 768px) {
  .floating-glassmorphic-dock {
    bottom: 1.5rem;
    padding: 8px;
    gap: 8px;
    width: auto;
    max-width: 95vw;
    border-radius: 40px;
    justify-content: center;
  }
  
  .floating-nav-item {
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  
  .floating-nav-item .nav-item-icon svg {
    width: 25px !important;
    height: 25px !important;
  }
  
  .floating-nav-item .nav-item-text {
    display: none; /* Icon-only on mobile screen widths */
  }
  
  .lang-controller-pill {
    top: 1rem !important;
    right: 1rem !important;
  }
}

/* Centralized Macbook layout optimization for subpages (Recipe, Story, Blue Economy detail pages) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .recipe-details-wrapper .container,
  .story-details-wrapper .container {
    max-width: 1200px;
  }
}

/* Local Community Sinergy & Pillars Grid Styles */
.county-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.county-pillar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.county-pillar-item .pillar-icon {
  color: var(--color-turquoise);
  padding: 8px;
  background: rgba(84, 197, 248, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.county-pillar-item h4 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ice-blue);
  margin-bottom: 0.25rem;
}

.county-pillar-item p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.4;
  margin: 0;
}

.county-seal-decor {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.3;
}

.county-seal-decor span {
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================= */
/* PREPARING TEAM PANEL & COOKED DISH IMAGES */
/* ============================================================= */
.detail-media-screen {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: background-image 0.5s ease-in-out;
}

#preparing-team-panel {
  margin-top: 1.5rem;
  padding: 1.75rem;
}

.team-panel-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .team-panel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.team-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(39, 128, 164, 0.08);
  border: 1px solid rgba(84, 197, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-fallback-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  color: var(--color-ice-blue);
  opacity: 0.6;
  text-align: center;
}

.team-photo-fallback-container svg {
  color: var(--color-mint);
  animation: floatTeamIcon 3s ease-in-out infinite;
}

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

.team-photo-fallback-container span {
  font-size: 0.75rem;
  font-family: var(--font-poppins);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.team-info-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.team-chef {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-ice-blue);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-chef .chef-icon {
  font-size: 1.2rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-mint);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(224, 247, 247, 0.85);
  border-top: 1px solid rgba(224, 247, 247, 0.15);
  padding-top: 0.75rem;
}

@media (max-width: 500px) {
  .team-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.team-details strong {
  color: var(--color-ice-blue);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team-details li {
  position: relative;
  padding-left: 12px;
  line-height: 1.3;
}

.team-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-turquoise);
}

/* ============================================================= */
/* PARTNERS SECTION */
/* ============================================================= */
.partners-editorial {
  background: transparent;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(84, 197, 248, 0.15);
}

.partners-title {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-ice-blue);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(84, 197, 248, 0.2);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 160px;
  max-width: 220px;
}

.partner-logo {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(84, 197, 248, 0.15)) brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(84, 197, 248, 0.35)) brightness(1.1);
}

.partner-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(84, 197, 248, 0.2);
  background: rgba(84, 197, 248, 0.05);
  backdrop-filter: blur(8px);
  color: var(--color-ice-blue);
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem;
  text-transform: uppercase;
  box-sizing: border-box;
  box-shadow: inset 0 0 10px rgba(84, 197, 248, 0.1);
}

/* ============================================================= */
/* MOBILE RESPONSIVE POLISH & ALIGNMENT OVERRIDES (max-width: 768px) */
/* ============================================================= */
@media (max-width: 768px) {
  /* 1. Reduce hero logo by at least 10% */
  .landing-logo-ring {
    width: 260px !important;
    height: 260px !important;
    margin-bottom: 1.8rem;
  }

  /* 2. Decrease margin of first section and general big section margins by 20px */
  .story-editorial-section {
    padding: 3rem 0 !important; /* Significant, elegant spacing reduction */
  }

  .recipes-meals-section {
    padding: 2rem 0 2.5rem !important; /* Reduces large margins by at least 20px */
  }

  .student-stories-carousel-section {
    padding: 2rem 0 !important;
  }

  .partners-editorial {
    padding: 2rem 0 !important;
  }

  .footer-editorial {
    padding: 3rem 0 1.5rem !important;
  }

  /* 3. Children's letters carousel: stretch to same width as others, chevrons above */
  .carousel-outer-wrapper {
    position: relative;
    padding-top: 4.5rem !important; /* Make room for the controls above the slider block */
    display: block !important;
    width: 100% !important;
  }

  .carousel-viewport {
    width: 100% !important;
    max-width: 100% !important;
  }

  .carousel-control-btn {
    position: absolute !important;
    top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 15 !important;
  }

  .carousel-control-btn.prev-btn {
    left: calc(50% - 55px) !important; /* Side-by-side, centered above the block */
  }

  .carousel-control-btn.next-btn {
    right: calc(50% - 55px) !important;
  }

  /* 4. Partner logos grid: 2 logos per row */
  .partners-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Exactly 2 per row! */
    gap: 1.5rem 1rem !important;
    justify-items: center !important;
    align-items: center !important;
    max-width: 100% !important;
  }

  .partner-item {
    width: 100% !important;
    min-width: 0 !important; /* Resets large desktop min-widths */
    max-width: 100% !important;
  }
  
  .partner-logo {
    height: 40px !important; /* Slightly smaller for 2-column mobile layout */
    max-height: 40px !important;
  }
}

/* ------------------------------------------------------------- */
/* PREMIUM PWA INSTALL BANNER */
/* ------------------------------------------------------------- */
.pwa-install-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 90%;
  max-width: 500px;
  background: rgba(4, 15, 26, 0.95);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(2, 7, 14, 0.8), 0 0 20px rgba(39, 128, 164, 0.2);
  z-index: 9999;
  padding: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pwa-install-banner.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-banner-flex-layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pwa-banner-brand-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(224, 247, 247, 0.05);
  border: 1.5px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pwa-banner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwa-banner-content {
  flex-grow: 1;
  min-width: 0;
}

.pwa-banner-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ice-blue);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.pwa-banner-description {
  font-size: 0.8rem;
  color: rgba(224, 247, 247, 0.7);
  line-height: 1.4;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.pwa-banner-description svg.ios-share-svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-mint);
  margin: 0 2px;
}

.pwa-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pwa-banner-action-btn {
  background: var(--color-mint);
  color: var(--color-abyss-navy);
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pwa-banner-action-btn:hover {
  background: var(--color-turquoise);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(39, 128, 164, 0.3);
}

.pwa-banner-close-btn {
  background: transparent;
  color: rgba(224, 247, 247, 0.5);
  border: 1px solid rgba(224, 247, 247, 0.15);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pwa-banner-close-btn:hover {
  color: var(--color-ice-blue);
  background: rgba(224, 247, 247, 0.05);
  border-color: rgba(224, 247, 247, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .pwa-install-banner {
    bottom: 1rem;
    width: 92%;
    padding: 1rem;
  }
  
  .pwa-banner-flex-layout {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .pwa-banner-content {
    width: calc(100% - 64px);
  }
  
  .pwa-banner-actions {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(224, 247, 247, 0.05);
    padding-top: 0.5rem;
  }
  
  .pwa-banner-action-btn,
  .pwa-banner-close-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
  }
}





