/* ============================================================
   STEFFI SPEECHLESS - Design System & Styles
   Tropical Artist | E-commerce | Body Painting
   ============================================================ */

/* ===== GOOGLE FONTS (loaded in HTML) =====
   Playfair Display: headings (elegant serif)
   Nunito: body (warm, friendly)
   Caveat: accents (handwritten artistic)
   ========================================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Colors - Tropical Nature Palette */
  --primary: #2D8C4E;
  --primary-light: #4AAF6E;
  --primary-dark: #1D6B38;
  --secondary: #F4A300;
  --secondary-light: #FFB833;
  --secondary-dark: #CC8800;
  --accent: #E85D4A;
  --accent-light: #F07D6E;
  --accent-dark: #C94435;
  --teal: #00A5B5;
  --teal-light: #33BCC8;
  --teal-dark: #008A97;
  --purple: #8B6DB0;

  /* Neutrals */
  --bg: #FFFAF3;
  --bg-alt: #F2F7EC;
  --bg-warm: #FFF3E6;
  --bg-card: #FFFFFF;
  --text: #2C3E2D;
  --text-light: #6B8F6D;
  --text-muted: #9BAF9D;
  --border: #E0EDDF;
  --border-light: #F0F5EE;
  --shadow: rgba(45, 140, 78, 0.08);
  --shadow-md: rgba(45, 140, 78, 0.12);
  --shadow-lg: rgba(45, 140, 78, 0.16);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.text-accent {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: 1.4em;
}

.text-muted {
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--warm {
  background-color: var(--bg-warm);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  font-family: var(--font-accent);
  color: var(--secondary);
  font-size: 1.3rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Flex */
.flex {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--wrap {
  flex-wrap: wrap;
}

/* ===== DECORATIVE ELEMENTS ===== */
.watercolor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.watercolor-blob--green {
  background: var(--primary);
}

.watercolor-blob--yellow {
  background: var(--secondary);
}

.watercolor-blob--coral {
  background: var(--accent);
}

.watercolor-blob--teal {
  background: var(--teal);
}

.brushstroke-divider {
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 20 Q150 5 300 20 Q450 35 600 20 Q750 5 900 20 Q1050 35 1200 20' fill='none' stroke='%232D8C4E' stroke-width='2' opacity='0.3'/%3E%3C/svg%3E") center/contain no-repeat;
  margin: var(--space-xl) 0;
}

.leaf-decoration {
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: var(--space-md) 0;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px var(--shadow);
  padding: var(--space-sm) 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--primary);
  text-decoration: none;
  transition: transform var(--transition-spring);
}

.navbar__logo:hover {
  transform: scale(1.03);
  color: var(--primary);
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 70%;
}

.navbar__cart {
  position: relative;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
  transition: color var(--transition-fast);
  background: none;
  border: none;
  padding: var(--space-xs);
}

.navbar__cart:hover {
  color: var(--primary);
}

.navbar__cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-spring);
}

.navbar__cart-count.visible {
  transform: scale(1);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 140, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(244, 163, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0, 165, 181, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 90%, rgba(232, 93, 74, 0.04) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero__label {
  font-family: var(--font-accent);
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero__title span {
  color: var(--primary);
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 650px;
  z-index: 0;
}

.hero__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  transform: rotate(-3deg);
}

.hero__image-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-lg);
  transition: transform var(--transition-slow);
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}

.hero__image-item:nth-child(2) {
  margin-top: var(--space-3xl);
}

.hero__image-item:hover {
  transform: scale(1.03);
}

.hero__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero page variants */
.hero--page {
  min-height: 50vh;
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
}

.hero--page .hero__content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero--page .hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(45, 140, 78, 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 140, 78, 0.35);
  color: white;
}

.btn--secondary {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.btn--secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
  padding: 14px 20px;
}

.btn--ghost:hover {
  color: var(--primary);
  background: rgba(45, 140, 78, 0.06);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  color: white;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-md);
  border-color: var(--border);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__img img {
  transform: scale(1.08);
}

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.card:hover .card__img-overlay {
  opacity: 1;
}

.card__body {
  padding: var(--space-lg);
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.card__tag--green {
  background: rgba(45, 140, 78, 0.1);
  color: var(--primary);
}

.card__tag--yellow {
  background: rgba(244, 163, 0, 0.1);
  color: var(--secondary-dark);
}

.card__tag--coral {
  background: rgba(232, 93, 74, 0.1);
  color: var(--accent);
}

.card__tag--teal {
  background: rgba(0, 165, 181, 0.1);
  color: var(--teal-dark);
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

/* Service Card */
.service-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition-spring);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card__icon--green {
  background: rgba(45, 140, 78, 0.1);
}

.service-card__icon--yellow {
  background: rgba(244, 163, 0, 0.1);
}

.service-card__icon--coral {
  background: rgba(232, 93, 74, 0.1);
}

.service-card__icon--teal {
  background: rgba(0, 165, 181, 0.1);
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.service-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-md);
}

.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

.product-card__actions {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
  display: flex;
  gap: var(--space-sm);
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__technique {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.product-card__title {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.product-card__size {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.gallery-filter {
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(44, 62, 45, 0.8) 0%,
    rgba(44, 62, 45, 0.2) 40%,
    transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  color: white;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: white;
  margin-bottom: var(--space-xs);
}

.gallery-item__meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Masonry variant */
.gallery-grid--masonry .gallery-item:nth-child(3n+1) {
  aspect-ratio: 3/4;
}

.gallery-grid--masonry .gallery-item:nth-child(3n+2) {
  aspect-ratio: 1/1;
}

.gallery-grid--masonry .gallery-item:nth-child(3n) {
  aspect-ratio: 4/3;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card__text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== ABOUT / BIO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__image-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__image-decoration--top {
  top: -15px;
  right: -15px;
}

.about__image-decoration--bottom {
  bottom: -15px;
  left: -15px;
}

/* ===== FAQ / ACCORDION ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item__question {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.faq-item.active .faq-item__icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 140, 78, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(45, 140, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-info__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.cart-sidebar__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-sidebar__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: var(--space-xs);
  transition: color var(--transition-fast);
}

.cart-sidebar__close:hover {
  color: var(--text);
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item__img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.cart-item__price {
  color: var(--primary);
  font-weight: 700;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--accent);
}

.cart-sidebar__empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  color: var(--text-muted);
}

.cart-sidebar__empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.cart-sidebar__footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.cart-sidebar__total-label {
  font-size: 1.05rem;
  font-weight: 700;
}

.cart-sidebar__total-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.lightbox__close:hover {
  transform: scale(1.2);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox__nav--prev {
  left: var(--space-xl);
}

.lightbox__nav--next {
  right: var(--space-xl);
}

.lightbox__caption {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
}

.lightbox__caption-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.lightbox__caption-meta {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: white;
  margin-bottom: var(--space-md);
  display: block;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--secondary);
  padding-left: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
  color: var(--secondary);
}

/* ===== STEP CARDS ===== */
.step-card {
  text-align: center;
  padding: var(--space-xl);
}

.step-card__number {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.step-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== HERO BREADCRUMBS ===== */
.hero__breadcrumbs {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.hero__breadcrumbs a {
  color: var(--text-muted);
}

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

.hero__breadcrumbs span {
  color: var(--text-light);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs__sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumbs__current {
  color: var(--text);
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(244, 163, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 93, 74, 0.15) 0%, transparent 50%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: var(--space-md);
}

.cta-banner__text {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--secondary {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline__dot {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  z-index: 1;
}

.timeline__content {
  flex: 1;
  padding-top: var(--space-sm);
}

.timeline__year {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: var(--space-xs);
}

.timeline__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== PRICE CARD ===== */
.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 2px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-base);
}

.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-md);
}

.price-card--featured {
  border-color: var(--primary);
  position: relative;
}

.price-card--featured::before {
  content: 'Popolare';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
}

.price-card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.price-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-card__features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.price-card__feature {
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-card__feature::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-delayed {
  animation: float-delayed 5s ease-in-out 1s infinite;
}

/* Paint drip decoration */
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: top; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__visual {
    display: none;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-grid--reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px var(--space-xl) var(--space-xl);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .navbar__links.open {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__links .navbar__link {
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: left;
    color: var(--text);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .navbar__links .navbar__link:hover,
  .navbar__links .navbar__link.active {
    background: var(--bg-alt);
    color: var(--primary);
  }

  .navbar__links .navbar__link.active {
    font-weight: 800;
  }

  .navbar__links .navbar__link::after {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    z-index: 1001;
  }

  .navbar__cart {
    z-index: 1001;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-sm);
  }

  /* Gallery overlay always visible on touch */
  .gallery-item__overlay {
    opacity: 1;
    background: linear-gradient(to top,
      rgba(44, 62, 45, 0.75) 0%,
      transparent 60%);
    padding: var(--space-md);
  }

  .gallery-item__title {
    font-size: 0.95rem;
  }

  .gallery-item__meta {
    font-size: 0.75rem;
  }

  /* Product card: show add-to-cart on mobile */
  .product-card__actions {
    position: static;
    transform: none;
    opacity: 1;
    padding: var(--space-sm) var(--space-md);
    justify-content: center;
  }

  .product-card__img {
    aspect-ratio: 4/5;
  }

  .product-card__body {
    padding: var(--space-md);
  }

  .product-card__title {
    font-size: 0.9rem;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .product-card__technique {
    font-size: 0.7rem;
  }

  .product-card__size {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }

  /* Gallery filters horizontal scroll */
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .btn {
    padding: 12px 24px;
  }

  .btn--lg {
    padding: 14px 32px;
  }

  /* Lightbox mobile */
  .lightbox__nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .lightbox__close {
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .lightbox__caption {
    padding: var(--space-md) var(--space-lg);
  }

  .lightbox__caption-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }

  .gallery-filter {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .product-card__actions .btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* ===== UTILITY CLASSES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ===== LANGUAGE SWITCHER ===== */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--space-sm);
}

.navbar__lang-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.03em;
}

.navbar__lang-item:hover {
  color: var(--primary);
  background: rgba(45, 140, 78, 0.08);
}

.navbar__lang-item.active {
  color: white;
  background: var(--primary);
}

@media (max-width: 768px) {
  .navbar__lang {
    gap: 4px;
    margin-left: auto;
    margin-right: var(--space-sm);
    background: var(--bg-alt);
    padding: 3px;
    border-radius: var(--radius-xl);
  }

  .navbar__lang-item {
    font-size: 0.75rem;
    padding: 5px 9px;
    border-radius: var(--radius-xl);
  }

  .navbar__logo {
    font-size: 1.3rem;
  }

  .navbar__logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .navbar__logo {
    font-size: 0;
  }

  .navbar__logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  position: relative;
}

.placeholder-img--tropical {
  background: linear-gradient(135deg, #a8e6cf 0%, #88d8b0 30%, #f9e79f 60%, #f7dc6f 100%);
}

.placeholder-img--warm {
  background: linear-gradient(135deg, #f9e79f 0%, #f5cba7 40%, #fadbd8 100%);
}

.placeholder-img--cool {
  background: linear-gradient(135deg, #aed6f1 0%, #a3e4d7 40%, #d5f5e3 100%);
}

.placeholder-img--coral {
  background: linear-gradient(135deg, #fadbd8 0%, #f5b7b1 40%, #f9e79f 100%);
}

.placeholder-img--purple {
  background: linear-gradient(135deg, #d7bde2 0%, #bb8fce 40%, #aed6f1 100%);
}

.placeholder-img--nature {
  background: linear-gradient(135deg, #82e0aa 0%, #58d68d 30%, #f9e79f 70%, #f7dc6f 100%);
}
