:root {
  --bg: #090b10;
  --surface: #111624;
  --surface-strong: #161d2c;
  --text: #f4f6fb;
  --muted: #9aa6b2;
  --accent: #f8b800;
  --accent-strong: #d99d10;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(248, 184, 0, 0.16),
      transparent 25%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.05),
      transparent 18%
    ),
    linear-gradient(180deg, #0f1420 0%, #090b10 100%);
}

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

body,
button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  padding: 3rem 1rem 1rem;
  background: linear-gradient(135deg, rgba(248, 184, 0, 0.16), transparent 60%);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.intro {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1120px;
  background: rgba(9, 11, 16, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-top: -1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.site-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Keep the native select for compatibility with the translation system,
   but hide it from the visual interface. */
.language-switcher select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

/* =========================================================
   CUSTOM LANGUAGE DROPDOWN
   ========================================================= */

.language-dropdown {
  position: relative;
}

.language-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;

  min-width: 135px;
  padding: 0.65rem 0.95rem 0.65rem 1rem;

  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;

  background: linear-gradient(
    135deg,
    rgba(248, 184, 0, 0.1),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid var(--border);
  border-radius: 999px;

  cursor: pointer;
  outline: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.language-trigger:hover {
  background: linear-gradient(
    135deg,
    rgba(248, 184, 0, 0.16),
    rgba(255, 255, 255, 0.06)
  );

  border-color: rgba(248, 184, 0, 0.4);
}

.language-trigger:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(248, 184, 0, 0.15);
}

.language-trigger i {
  color: var(--accent);
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.language-dropdown.open .language-trigger i {
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 100;

  width: 100%;
  min-width: 135px;
  padding: 0.4rem;

  background: linear-gradient(
    145deg,
    rgba(22, 29, 44, 0.98),
    rgba(9, 11, 16, 0.98)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(248, 184, 0, 0.05);

  backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* =========================================================
   LANGUAGE OPTIONS
   ========================================================= */

.language-option {
  display: flex;
  align-items: center;

  width: 100%;
  padding: 0.7rem 0.8rem;

  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;

  background: transparent;
  border: 0;
  border-radius: 10px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--accent);
  background: rgba(248, 184, 0, 0.1);
  transform: translateX(3px);
  outline: none;
}

.language-option.active {
  color: #111827;
  background: var(--accent);
  font-weight: 700;
}

.language-option.active:hover,
.language-option.active:focus-visible {
  color: #111827;
  background: var(--accent-strong);
  transform: translateX(0);
}

/* =========================================================
   RTL SUPPORT
   ========================================================= */

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

html[dir="rtl"] .language-option {
  text-align: right;
}

html[dir="rtl"] .language-option:hover,
html[dir="rtl"] .language-option:focus-visible {
  transform: translateX(-3px);
}

html[dir="rtl"] .language-option.active:hover,
html[dir="rtl"] .language-option.active:focus-visible {
  transform: translateX(0);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {
  .language-trigger,
  .language-menu {
    min-width: 125px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem;
  background:
    linear-gradient(135deg, rgba(9, 11, 16, 0.9), rgba(9, 11, 16, 0.78)),
    url("images/hero-bg.jpg") center/cover no-repeat;
  border-top: 1px solid var(--border);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(248, 184, 0, 0.14),
    transparent 32%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
}

.hero-copy p {
  margin: 1.15rem auto 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(248, 184, 0, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.metric-card strong {
  display: block;
  font-size: 1.15rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-block {
  padding: 4rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.section-inner p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}

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

.about-card {
  background: linear-gradient(
    135deg,
    rgba(248, 184, 0, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-mark {
  font-size: 2.4rem;
  color: var(--accent);
  margin: 0 0 0.3rem;
}

.feature-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 1.3rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.feature-card,
.product-card,
.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 184, 0, 0.32);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.product-card h3 {
  margin: 1rem 0 0.6rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 2rem;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(248, 184, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(248, 184, 0, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    flex-direction: column;
    border-radius: 24px;
    padding: 0.8rem;
  }

  .hero-section {
    padding: 4rem 1rem 3rem;
  }

  .hero-copy h2 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }

  .section-block {
    padding: 3rem 1rem;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 18px 40px rgba(248, 184, 0, 0.15);
  }
}

/* Apply animations */
.site-header {
  animation: fadeIn 0.8s ease-out;
}

.site-nav {
  animation: slideInFromLeft 0.6s ease-out 0.2s both;
}

.hero-copy span {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-copy h2 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-copy p {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-metrics {
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.section-inner h2 {
  animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.product-card:nth-child(1) {
  animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.product-card:nth-child(2) {
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.about-grid > div:first-child {
  animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.about-card {
  animation: slideInFromRight 0.8s ease-out 0.4s both;
}

/* Enhanced hover effects */
.feature-card:hover {
  animation: glow 2s ease-in-out infinite;
}

.product-card:hover {
  animation: glow 2s ease-in-out infinite;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

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

.social-links a {
  transition: all 0.3s ease;
}

.social-links a:hover {
  animation: glow 1s ease-in-out;
}

@media (max-width: 720px) {
  .hero-copy span,
  .hero-copy h2,
  .hero-copy p,
  .hero-actions,
  .hero-metrics {
    animation-delay: 0s !important;
  }
}
/* Scroll Animation Classes */
.scroll-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 184, 0, 0.2), transparent);
  backdrop-filter: blur(10px);
  z-index: 9999;
  pointer-events: none;
  animation: transitionOut 0.6s ease-out forwards;
}

@keyframes transitionOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
}

.loading-spinner.active {
  display: block;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(248, 184, 0, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.language-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: rgba(248, 184, 0, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(248, 184, 0, 0.15);
  border-color: var(--accent);
}

.lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* =========================================================
   FINAL ACCESSIBILITY & RESPONSIVE POLISH
   ========================================================= */

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.page-ready .loading-spinner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 720px) {
  .site-header {
    padding: 2.25rem 1rem 1rem;
  }
  .site-nav {
    width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
    gap: 0.65rem;
  }
  .site-nav ul {
    width: 100%;
    gap: 0.65rem 1rem;
  }
  .site-nav a {
    font-size: 0.92rem;
  }
  .language-switcher {
    width: 100%;
    justify-content: center;
  }
  .language-trigger {
    min-width: 140px;
  }
  .hero-section {
    padding: 4rem 1rem 3rem;
  }
}

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

/* =========================================================
   PHASE 1 - CUSTOMER EXPERIENCE
   ========================================================= */

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #06150b;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.whatsapp-float i {
  font-size: 1.25rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.7rem;
  z-index: 79;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(17, 22, 36, 0.92);
  color: var(--accent);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(12px);
}

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

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 10001;
  max-width: min(90vw, 420px);
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(248, 184, 0, 0.25);
  border-radius: 999px;
  background: rgba(17, 22, 36, 0.96);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 16px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  text-align: center;
}

.site-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.page-transition-in {
  opacity: 0;
  animation: none;
  background: linear-gradient(
    135deg,
    rgba(9, 11, 16, 0.96),
    rgba(248, 184, 0, 0.12)
  );
  transition: opacity 0.28s ease;
}

.page-transition-in.visible {
  opacity: 1;
}

.product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(17, 22, 36, 0.72);
  backdrop-filter: blur(14px);
}

.product-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.product-search-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
}

.product-search-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.product-search-wrap input:focus {
  border-color: var(--accent);
}

.product-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}

.product-filter:hover,
.product-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111827;
}

.product-card {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.product-card.product-hidden {
  display: none;
}

.product-empty {
  margin: 2rem 0;
  padding: 2rem;
  border: 1px dashed var(--border);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 22px;
    padding: 0.75rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0.5rem;
  }

  .site-nav.mobile-open ul {
    display: flex;
  }

  .site-nav ul li a {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav ul li a:hover {
    background: rgba(248, 184, 0, 0.08);
  }

  .language-switcher {
    width: auto;
    margin-left: auto;
  }

  .language-trigger {
    min-width: 120px;
  }

  .product-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .product-filter-wrap {
    justify-content: center;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.8rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: 4.6rem;
  }
}
