/* ==========================================================================
   S.A.O - Premium Design System (2030 Era)
   Redesigned for Scrolling Animations & Consolidated Layout
   ========================================================================== */

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

:root {
  /* Premium Dark Theme Base Colors */
  --navy-base: #050b14;
  --navy: #0a1628;
  --navy-light: #0f2140;
  --gold: #d4a853;
  --gold-light: #f5d78e;
  --amber: #f5a623;
  --white: #ffffff;
  --cream: #fff8e7;
  
  /* Text styling */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Glassmorphism */
  --glass-bg: rgba(10, 22, 40, 0.55);
  --glass-bg-hover: rgba(10, 22, 40, 0.75);
  --glass-border: rgba(212, 168, 83, 0.12);
  --glass-border-hover: rgba(212, 168, 83, 0.35);
  --glass-blur: blur(20px);
  --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.45);
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--amber) 100%);
  --gold-text-grad: linear-gradient(135deg, #f5d78e 0%, #d4a853 50%, #f5a623 100%);
  --navy-gradient: linear-gradient(180deg, var(--navy-base) 0%, var(--navy) 100%);
  --glow-gradient: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);

  /* Fonts */
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;
  
  /* Transitions */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.5s var(--ease-premium);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme='light'] {
  --navy-base: #fcf9f2;
  --navy: #fffcf5;
  --navy-light: #f3edd7;
  
  /* Deep bronze/gold colors to ensure high contrast and AAA readability in light mode */
  --gold: #8f6217;
  --gold-light: #b08235;
  --amber: #c5810b;
  
  --text-primary: #0a1628;
  --text-secondary: rgba(10, 22, 40, 0.8);
  --text-muted: rgba(10, 22, 40, 0.55);
  
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-hover: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(143, 98, 23, 0.2);
  --glass-border-hover: rgba(143, 98, 23, 0.4);
  --glass-shadow: 0 10px 40px 0 rgba(143, 98, 23, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  timeline-scope: --sec-hero, --sec-about, --sec-plastic, --sec-microwave, --sec-foil, --sec-stretch, --sec-cups, --sec-straws, --sec-wood, --sec-paper, --sec-foam, --sec-features, --sec-contact;
}

body {
  font-family: var(--font-ar);
  background-color: var(--navy-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy-base);
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-base);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

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

/* --- Utilities --- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-text {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}

/* --- Button Styling --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-premium);
  border: none;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #050b14;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-premium);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.6);
  filter: brightness(1.15);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 168, 83, 0.15);
}

/* --- Floating Categories Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform var(--transition-normal), background var(--transition-normal);
  padding: 1.5rem 0;
}

header.scrolled {
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Scroll-up and Scroll-down Hide behavior */
header.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1001;
}

.logo-svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Categories horizontal slider */
.categories-nav {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 70%;
  padding: 0.2rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--gold-gradient);
  color: #050b14;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1001;
}

.theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-premium), color var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--gold);
  transform: rotate(30deg) scale(1.15);
}

/* --- Hero Section --- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-gradient);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(5, 11, 20, 0.65) 0%, rgba(5, 11, 20, 0.92) 100%),
              url('../images/hero-bg-products.png') no-repeat center center;
  background-size: cover;
}

[data-theme='light'] .hero-bg {
  background: linear-gradient(to bottom, rgba(252, 249, 242, 0.8) 0%, rgba(252, 249, 242, 0.95) 100%),
              url('../images/hero-bg-products.png') no-repeat center center;
  background-size: cover;
}

.hero-logo-large {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 800;
  margin-bottom: 0.2rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: 6px;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-tagline {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.hero-subtagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--gold);
}

/* --- About Us Section --- */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-base) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-subtitle {
  font-family: var(--font-en);
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

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

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-en);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Premium Scrollytelling Sections --- */
.showcase-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: var(--glow-gradient);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Giant Display Outline Text */
.bg-scroll-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: 12px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
  transition: -webkit-text-stroke var(--transition-normal), text-stroke var(--transition-normal);
}

[data-theme='light'] .bg-scroll-text {
  -webkit-text-stroke: 1.5px rgba(10, 22, 40, 0.04);
  text-stroke: 1.5px rgba(10, 22, 40, 0.04);
}

/* Single Product Flying Container & Image Card Layout */
.image-fly-container {
  width: 100%;
  max-width: 460px;
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 3;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

/* Layered Card Deck */
.product-photo-deck {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual Product Card Frame */
.product-photo-card {
  position: absolute;
  width: clamp(200px, 55vw, 290px);
  height: clamp(200px, 55vw, 290px);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid rgba(212, 168, 83, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s var(--ease-premium), box-shadow 0.6s var(--ease-premium), border-color 0.3s;
  pointer-events: auto;
}

.product-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.product-photo-card:hover {
  border-color: rgba(212, 168, 83, 0.65);
  box-shadow: 0 25px 50px rgba(212, 168, 83, 0.3);
  z-index: 15 !important;
}

.product-photo-card:hover img {
  transform: scale(1.08);
}

/* Solo Image Card (categories with 1 image) */
.solo-card {
  position: relative;
  transform: rotate(-1deg);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* Base layering offsets for card decks before scroll action */
.deck-3 .card-1 {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 3;
}
.deck-3 .card-2 {
  transform: translate3d(-15px, 15px, 0) scale(0.95) rotate(-3deg);
  z-index: 2;
  opacity: 0.9;
}
.deck-3 .card-3 {
  transform: translate3d(15px, -15px, 0) scale(0.9) rotate(3deg);
  z-index: 1;
  opacity: 0.75;
}

.deck-4 .card-1 {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 4;
}
.deck-4 .card-2 {
  transform: translate3d(-15px, 15px, 0) scale(0.96) rotate(-3deg);
  z-index: 3;
  opacity: 0.92;
}
.deck-4 .card-3 {
  transform: translate3d(15px, -15px, 0) scale(0.92) rotate(3deg);
  z-index: 2;
  opacity: 0.82;
}
.deck-4 .card-4 {
  transform: translate3d(-25px, -25px, 0) scale(0.88) rotate(-6deg);
  z-index: 1;
  opacity: 0.65;
}

/* Text Showcase with overlay parallax offset - completely cardless and clean */
.text-showcase {
  position: relative;
  z-index: 4;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 450px;
  transition: transform var(--transition-normal);
}

/* Offset text elements to float over/next to the flying image on desktop */
.showcase-grid > .text-showcase.reveal-left {
  margin-right: -120px;
}

.showcase-grid > .text-showcase.reveal-right {
  margin-left: -120px;
}

@media (max-width: 1024px) {
  .showcase-grid > .text-showcase.reveal-left,
  .showcase-grid > .text-showcase.reveal-right {
    margin-left: 0;
    margin-right: 0;
    padding: 2rem;
  }
}

/* Text Showcase styling */
.text-showcase h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.text-showcase .category-subtitle-en {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: block;
}

.text-showcase p.desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: justify;
}

/* Product list pills */
.product-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.prod-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s var(--ease-premium);
}

.prod-badge:hover {
  background: rgba(212, 168, 83, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.03);
}

/* Illustrative/Mockup cards for categories without images */
.illustration-card {
  width: 100%;
  max-width: 440px;
  height: 380px;
  margin: 0 auto;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.illustration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(245, 166, 35, 0.03) 100%);
  z-index: 1;
}

.illustration-icon {
  font-size: 5.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 5px 15px rgba(212, 168, 83, 0.4));
  animation: float 5s ease-in-out infinite;
}

.illustration-decor {
  border: 1.5px dashed var(--gold);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.illustration-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  z-index: 2;
}

/* --- Features Bento Grid --- */
.features-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--navy-base) 0%, var(--navy) 100%);
}

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

.bento-card {
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 250px;
  height: 250px;
  background: var(--glow-gradient);
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.bento-card:hover::before {
  opacity: 0.8;
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

.bento-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Contact Us Section --- */
.contact-section {
  padding: 8rem 0;
  background: var(--navy-base);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.contact-card-info svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card-info div p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact-card-info div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-light);
  text-transform: uppercase;
}

.whatsapp-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 3rem;
}

.whatsapp-icon {
  color: #25d366;
  filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4));
  margin-bottom: 1.5rem;
}

.whatsapp-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.whatsapp-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 400px;
}

/* --- Footer --- */
footer {
  background: #03070d;
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 5px; /* RTL spacing shift */
}

.footer-links a {
  transition: all var(--transition-fast);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-en);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* --- Mobile Menu & Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .about-grid, .showcase-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.col-span-2 {
    grid-column: span 1;
  }
  
  .image-showcase {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .categories-nav {
    max-width: 100%;
    order: 3;
    width: 100%;
    margin-top: 0.8rem;
    justify-content: flex-start;
  }
  
  .nav-container {
    flex-wrap: wrap;
  }
  
  header {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* --- Theme Specific overrides and fixes --- */

/* Logo SVG blend modes: Screen for dark theme, Multiply for light theme */
.logo-svg circle,
.hero-logo-large circle {
  mix-blend-mode: screen;
}

[data-theme='light'] .logo-svg circle,
[data-theme='light'] .hero-logo-large circle {
  mix-blend-mode: multiply;
}

/* Theme Toggle sun/moon icons hide/show */
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}

[data-theme='light'] .theme-toggle .icon-sun {
  display: block;
}
[data-theme='light'] .theme-toggle .icon-moon {
  display: none;
}
