/* =============================================
   FORTUNA VET — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0d1f2d;
  --navy-light: #132536;
  --navy-card:  #1a2f40;
  --green:      #1a9e70;
  --green-light:#2dbe8a;
  --green-muted:#0f6b4b;
  --grey-bg:    #f2f6f9;
  --grey-light: #e8edf2;
  --grey-mid:   #9aabb8;
  --white:      #ffffff;
  --text-dark:  #0d1f2d;
  --text-body:  #3d5466;
  --text-muted: #6e8898;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 2px 16px rgba(13,31,45,0.08);
  --shadow-hover: 0 8px 32px rgba(13,31,45,0.14);

  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   UTILITY
   ============================================= */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--green-light);
  color: var(--green-light);
  background: rgba(45,190,138,0.08);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--green);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--navy);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(13,31,45,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

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

.navbar__logo-mark {
  width: 38px;
  height: 38px;
  background: rgba(45,190,138,0.15);
  border: 1px solid rgba(45,190,138,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-mark svg {
  width: 20px;
  height: 20px;
  color: var(--green-light);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar__logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.navbar__nav a:hover { color: var(--white); }

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

.navbar__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.navbar__icon-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.navbar__icon-btn svg { width: 17px; height: 17px; }

.navbar__lang-btn {
  background: transparent;
  border: 1.5px solid rgba(16, 185, 129, 0.55);
  border-radius: 7px;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 6px 13px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__lang-btn:hover {
  border-color: #10b981;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  z-index: 999;
}
.mobile-menu.open { display: block; }

/* Navbar is ALWAYS LTR regardless of AR/EN page direction */
.navbar, .navbar__inner, .navbar__nav, .navbar__actions, .mobile-menu {
  direction: ltr !important;
  text-align: left !important;
}
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

/* =============================================
   HERO
   ============================================= */

.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,190,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,190,138,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26,158,112,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0 60px;
}

.hero__badge {
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero__title .white { color: var(--white); display: block; }
.hero__title .green { color: var(--green-light); display: block; }

.hero__sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 0;
}

.hero__stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}

.hero__stat {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  background: var(--white);
  padding: 100px 0;
}

.about__card {
  background: var(--grey-bg);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}


.about__label { margin-bottom: 20px; }

.about__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--navy);
}
.about__title .green { color: var(--green); }

.about__body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.about__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(26,158,112,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.about__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.about__image-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.about__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-card);
}
.about__image-placeholder svg {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.15);
}

.about__image-caption {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(13,31,45,0.95), transparent);
  width: 100%;
}
.about__image-caption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.about__image-caption span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.about__animals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about__animal {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about__animal:hover {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(45,190,138,0.08);
}

.about__animal-emoji { font-size: 22px; margin-bottom: 6px; }
.about__animal-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.about__animal-sub {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */

.why {
  background: var(--grey-bg);
  padding: 100px 0;
}

.why__header {
  text-align: center;
  margin-bottom: 56px;
}

.why__label { margin-bottom: 16px; }

.why__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.why__title .green { color: var(--green); }

.why__sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.why__card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.why__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,158,112,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why__card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.why__card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.why__card-body {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
}

.why__cta-bar {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.why__cta-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why__cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.why__cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* =============================================
   PRODUCTS PREVIEW
   ============================================= */

.products-preview {
  background: var(--white);
  padding: 100px 0;
}

.products-preview__header {
  text-align: center;
  margin-bottom: 52px;
}

.products-preview__label { margin-bottom: 16px; }

.products-preview__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

.products-preview__sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.products-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.products-preview__row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-cat-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-cat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-cat-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a2a3a;
  position: relative;
  overflow: hidden;
}

.product-cat-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-cat-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.badge-popular   { background: rgba(26,158,112,0.9);  color: #fff; }
.badge-certified { background: rgba(45,190,138,0.9);  color: #fff; }
.badge-new       { background: rgba(59,130,246,0.9);  color: #fff; }
.badge-top       { background: rgba(245,158,11,0.9);  color: #fff; }

.product-cat-card__body {
  padding: 18px 18px 16px;
}

.product-cat-card__accent {
  width: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 10px;
}

.product-cat-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.product-cat-card__desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-cat-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.product-cat-card__btn:hover { background: var(--navy-light); }

.products-preview__footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26,158,112,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact__header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.contact__label { margin-bottom: 16px; }

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.contact__card--whatsapp {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.contact__card--whatsapp::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.contact__card--email {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.contact__card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.contact__card-body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, transform 0.15s;
}
.contact__card-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.contact__card-btn svg { width: 18px; height: 18px; }

/* =============================================
   AVAILABILITY / HOURS
   ============================================= */

.availability {
  background: var(--grey-bg);
  padding: 100px 0;
}

.availability__inner {
  max-width: 680px;
  margin: 0 auto;
}

.availability__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.availability__label { margin-bottom: 20px; }

.availability__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.availability__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.availability__divider {
  height: 1px;
  background: var(--grey-light);
  margin-bottom: 32px;
}

.availability__hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.availability__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
}
.availability__row:last-child { border-bottom: none; }

.availability__day {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.availability__time {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.availability__time svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.availability__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26,158,112,0.08);
  border: 1px solid rgba(26,158,112,0.2);
  padding: 7px 16px;
  border-radius: 100px;
}

.availability__dot {
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
}


.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: rgba(45,190,138,0.12);
  border: 1px solid rgba(45,190,138,0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-mark svg { width: 18px; height: 18px; color: var(--green-light); }

.footer__logo-text span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-text span:last-child {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 1px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 220px;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--green-light);
  flex-shrink: 0;
}
.footer__contact-item span,
.footer__contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer__contact-item a:hover {
  color: rgba(255,255,255,0.85);
}
a.footer__contact-item {
  text-decoration: none;
  color: inherit;
}
a.footer__contact-item:hover span {
  color: var(--green, #10b981);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-btn:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.footer__social-btn svg { width: 16px; height: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .about__card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .about__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about__image-card { margin-bottom: 0; }
  .about__animals { grid-template-columns: repeat(3, 1fr); }

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

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

  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__stats-inner { flex-direction: column; gap: 24px; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 24px; max-width: 100%; }
  .hero__stat:last-child { border-bottom: none; padding-bottom: 0; }

  .about__card { padding: 28px; gap: 32px; }
  .about__features { grid-template-columns: 1fr; }
  .about__right { grid-template-columns: 1fr; }

  .why__grid { grid-template-columns: 1fr; }
  .why__cta-bar { flex-direction: column; text-align: center; padding: 28px 24px; }
  .why__cta-buttons { justify-content: center; }

  .products-preview__grid,
  .products-preview__row2 { grid-template-columns: 1fr 1fr; }

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

  .availability__card { padding: 36px 24px; }

  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .products-preview__grid,
  .products-preview__row2 { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn-primary,
  .hero__cta .btn-outline { text-align: center; justify-content: center; }
}
/* =============================================
   LANG DROPDOWN
   ============================================= */

.navbar__lang-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.navbar__lang-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.navbar__lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(16,185,129,0.45);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}
.navbar__lang-trigger:hover {
  background: rgba(16,185,129,0.12);
  border-color: var(--green-light);
}

.navbar__lang-trigger svg {
  transition: transform 0.2s;
}
.navbar__lang-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.navbar__lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  min-width: 120px;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.navbar__lang-menu.open { display: block; }

.navbar__lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.navbar__lang-option:hover {
  background: rgba(16,185,129,0.15);
  color: var(--white);
}

/* Mobile lang picker */
.mobile-menu__lang {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4px;
}
.mobile-menu__lang-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.mobile-menu__lang-options {
  display: flex;
  gap: 10px;
}
.mobile-menu__lang-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 14px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mobile-menu__lang-opt:hover,
.mobile-menu__lang-opt.active {
  background: rgba(16,185,129,0.18);
  border-color: var(--green-light);
  color: var(--white);
}