/* ═══════════════════════════════════════════════
   LAND 24 MASCHINEN — Autumn Theme
   ═══════════════════════════════════════════════ */

/* ─── Variables ───────────────────────────────── */
:root {
  --c-primary:   #C47B2B;
  --c-primary-d: #A0631E;
  --c-dark:      #3D1A06;
  --c-deeper:    #24100A;
  --c-gold:      #D4920A;
  --c-rust:      #9E3A18;
  --c-cream:     #FBF6ED;
  --c-card:      #FFFFFF;
  --c-border:    #EDD9BC;
  --c-text:      #2C1508;
  --c-muted:     #8C6A4E;
  --c-success:   #3D8B2F;
  --nav-h:       70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  background: var(--c-cream);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.6;
}

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

a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-d); }

h1,h2,h3,h4,h5,h6 { color: var(--c-dark); font-weight: 700; }

/* ─── Navbar ──────────────────────────────────── */
.site-nav {
  background: var(--c-dark);
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.site-nav .navbar-brand img { height: 38px; }

.site-nav .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem !important;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}
.site-nav .nav-link.nav-cta {
  background: var(--c-primary);
  color: #fff !important;
  border-radius: 20px;
  padding: .4rem 1.1rem !important;
  margin-left: .4rem;
}
.site-nav .nav-link.nav-cta:hover { background: var(--c-primary-d); }

.site-nav .dropdown-menu {
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  min-width: 200px;
  margin-top: .4rem;
}
.site-nav .dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  padding: .5rem 1rem;
  transition: background .15s;
}
.site-nav .dropdown-item:hover { background: rgba(255,255,255,.1); color: #fff; }

.site-nav .navbar-toggler {
  border-color: rgba(255,255,255,.3);
  padding: .35rem .6rem;
}
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* mobile nav full-screen overlay */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: var(--c-dark);
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    overflow-y: auto;
    padding: 1.5rem 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-nav .nav-link { font-size: 1.05rem; padding: .7rem 1rem !important; }
  .site-nav .dropdown-menu {
    background: rgba(255,255,255,.05);
    border: none;
    box-shadow: none;
  }
}

/* ─── Hero ────────────────────────────────────── */
.hero {
  min-height: 72vh;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin: 1.25rem;
  box-shadow:
    0 24px 70px rgba(0,0,0,.50),
    0  6px 18px rgba(0,0,0,.28);
  background: url('../images/hero-tractor.jpg') center 58% / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* left-to-right text overlay */
    linear-gradient(108deg,
      rgba(6,2,0,.90)  0%,
      rgba(6,2,0,.62) 42%,
      rgba(6,2,0,.10) 100%),
    /* corner vignette — shadow at each corner */
    radial-gradient(ellipse 52% 58% at   0%   0%, rgba(0,0,0,.72) 0%, transparent 100%),
    radial-gradient(ellipse 52% 58% at 100%   0%, rgba(0,0,0,.50) 0%, transparent 100%),
    radial-gradient(ellipse 52% 58% at   0% 100%, rgba(0,0,0,.72) 0%, transparent 100%),
    radial-gradient(ellipse 52% 58% at 100% 100%, rgba(0,0,0,.50) 0%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(196,123,43,.2);
  border: 1px solid rgba(196,123,43,.4);
  color: #F0B85A;
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero h1 span { color: #F0A83A; }

.hero p {
  color: rgba(255,255,255,.72);
  font-size: clamp(.95rem, 2vw, 1.18rem);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num { color: #F0A83A; font-size: 1.6rem; font-weight: 700; }
.hero-stat-lbl { color: rgba(255,255,255,.55); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

/* ─── Buttons ─────────────────────────────────── */
.btn-autumn {
  background: var(--c-primary);
  border: 2px solid var(--c-primary);
  color: #fff;
  border-radius: 26px;
  padding: .65rem 1.6rem;
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-autumn:hover { background: var(--c-primary-d); border-color: var(--c-primary-d); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,123,43,.35); }

.btn-autumn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  border-radius: 26px;
  padding: .65rem 1.6rem;
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-autumn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

.btn-wa {
  background: #25D366;
  border: none;
  color: #fff;
  border-radius: 26px;
  padding: .65rem 1.6rem;
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-wa:hover { background: #1ebe59; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

/* ─── Trust bar ───────────────────────────────── */
.trust-bar {
  background: var(--c-deeper);
  padding: 1rem 0;
  border-bottom: 2px solid rgba(196,123,43,.3);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  justify-content: center;
  padding: .35rem 0;
}
.trust-item i { color: var(--c-gold); font-size: 1.1rem; }

/* ─── Section ─────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }

.section-label {
  display: inline-block;
  background: rgba(196,123,43,.12);
  color: var(--c-primary);
  border-radius: 20px;
  padding: .25rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: .6rem;
}

.section-subtitle {
  color: var(--c-muted);
  font-size: 1rem;
  max-width: 540px;
}

/* ─── Category cards ──────────────────────────── */
.cat-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  background: var(--c-dark);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(61,26,6,.25); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; opacity: .75; }
.cat-card:hover img { transform: scale(1.06); opacity: .65; }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,16,10,.85) 0%, rgba(36,16,10,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.cat-card-title { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 .25rem; }
.cat-card-count { color: rgba(255,255,255,.6); font-size: .78rem; }
.cat-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-dark), #5C2A10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: 3rem;
}

/* ─── Category group (homepage) ──────────────── */
.cat-group { margin-bottom: 3.5rem; }
.cat-group:last-child { margin-bottom: 0; }

.cat-group-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--c-primary);
}
.cat-group-title {
  font-size: 1.2rem; font-weight: 700; color: var(--c-dark);
  margin: 0; display: flex; align-items: center; gap: .55rem;
}
.cat-group-title .fas.fa-tag { color: var(--c-primary); font-size: 1rem; }
.cat-group-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  min-width: 22px; height: 22px; border-radius: 20px; padding: 0 .4rem;
}
.cat-group-link {
  font-size: .82rem; font-weight: 600; color: var(--c-primary);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: .35rem;
  transition: gap .15s;
}
.cat-group-link:hover { text-decoration: underline; gap: .55rem; }

/* ─── Product cards ───────────────────────────── */
.prod-card {
  background: var(--c-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .22s, box-shadow .22s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(61,26,6,.13); }

.prod-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5ede0;
  position: relative;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.prod-card:hover .prod-card-img img { transform: scale(1.05); }
.prod-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-border); font-size: 2.5rem;
}

.prod-card-body { padding: 1rem 1.1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.prod-card-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-primary); margin-bottom: .3rem; }
.prod-card-title { font-size: .97rem; font-weight: 600; color: var(--c-dark); margin-bottom: .5rem; line-height: 1.35; flex: 1; }
.prod-card-price { font-size: 1.15rem; font-weight: 700; color: var(--c-primary); margin-bottom: .8rem; }
.prod-card-price .original { font-size: .85rem; color: var(--c-muted); text-decoration: line-through; margin-left: .35rem; font-weight: 400; }
.prod-card-btn {
  display: block;
  text-align: center;
  background: var(--c-primary);
  color: #fff;
  border-radius: 20px;
  padding: .5rem;
  font-size: .85rem;
  font-weight: 600;
  transition: background .18s;
}
.prod-card-btn:hover { background: var(--c-primary-d); color: #fff; }

/* ─── CTA banner ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-dark) 0%, #6B2E10 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(196,123,43,.12) 0%, transparent 70%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .6rem; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Page hero (subpages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, #5C2A10 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(196,123,43,.1) 0%, transparent 65%);
}
.page-hero-content { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: .4rem; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.55); font-size: .85rem; }
.breadcrumb-item a:hover { color: rgba(255,255,255,.85); }
.breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: .85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── Product Gallery Slider ─────────────────── */
.product-slider { width: 100%; }

.slider-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5ede0;
  border: 1px solid var(--c-border);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  user-select: none;
}

.slider-slide { display: none; width: 100%; height: 100%; }
.slider-slide.active { display: block; }
.slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Prev / Next arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.82);
  border: none; border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--c-dark);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: background .15s, transform .15s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-prev { left: .7rem; }
.slider-next { right: .7rem; }

/* Zoom button */
.slider-zoom-btn {
  position: absolute; top: .7rem; right: .7rem; z-index: 5;
  background: rgba(0,0,0,.48);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: background .15s, transform .15s;
  backdrop-filter: blur(4px);
}
.slider-zoom-btn:hover { background: rgba(0,0,0,.72); transform: scale(1.12); }

/* Slide counter */
.slider-counter {
  position: absolute; bottom: .7rem; right: .7rem; z-index: 5;
  background: rgba(0,0,0,.42);
  color: #fff; font-size: .72rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 20px;
  backdrop-filter: blur(4px); pointer-events: none;
}

/* Thumbnail strip */
.slider-thumbs {
  display: flex; gap: .45rem; margin-top: .6rem;
  overflow-x: auto; padding-bottom: .3rem;
  scrollbar-width: thin; scrollbar-color: var(--c-primary) transparent;
}
.slider-thumbs::-webkit-scrollbar { height: 4px; }
.slider-thumbs::-webkit-scrollbar-track { background: transparent; }
.slider-thumbs::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 4px; }

.slider-thumb {
  width: 72px; height: 58px;
  object-fit: cover; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer;
  flex-shrink: 0; opacity: .68;
  transition: border-color .15s, opacity .15s;
}
.slider-thumb:hover,
.slider-thumb.active { border-color: var(--c-primary); opacity: 1; }

/* ─── Lightbox ─────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[aria-hidden="true"] { display: none; }

.lightbox-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
}

.lightbox-img-wrap {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: 90vw; max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  user-select: none; pointer-events: none;
  display: block;
}

.lightbox-close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  backdrop-filter: blur(4px); transition: background .15s;
}
.lightbox-close:hover { background: rgba(255,255,255,.38); }

.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  backdrop-filter: blur(4px); transition: background .15s, transform .15s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.38); transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* hide lightbox arrows when only 1 image */
.lightbox-arrow.hidden { display: none; }

.product-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--c-border);
}
.product-title { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; color: var(--c-dark); line-height: 1.25; }
.product-price { font-size: 1.8rem; font-weight: 700; color: var(--c-primary); }
.product-price .price-old { font-size: 1rem; color: var(--c-muted); text-decoration: line-through; font-weight: 400; margin-left: .5rem; }
.product-desc { color: #555; line-height: 1.7; font-size: .95rem; }

.product-ctas { display: flex; flex-direction: column; gap: .75rem; }
.btn-inquire {
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-inquire:hover { background: var(--c-primary-d); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,123,43,.3); }
.btn-whatsapp-product {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  text-decoration: none;
}
.btn-whatsapp-product:hover { background: #1ebe59; color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* ─── Contact form ────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 20px rgba(61,26,6,.07);
}
.contact-card .form-label { font-weight: 500; font-size: .875rem; color: var(--c-dark); }
.contact-card .form-control, .contact-card .form-select {
  border-color: var(--c-border);
  border-radius: 8px;
  background: var(--c-cream);
  color: var(--c-text);
  font-size: .92rem;
}
.contact-card .form-control:focus, .contact-card .form-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 .2rem rgba(196,123,43,.15);
  background: #fff;
}

.contact-info-card {
  background: var(--c-dark);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}
.contact-info-card h4 { color: #fff; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}
.contact-info-item i { color: var(--c-gold); font-size: 1.1rem; margin-top: .15rem; flex-shrink: 0; }
.contact-info-item a { color: rgba(255,255,255,.8); }
.contact-info-item a:hover { color: #fff; }

/* ─── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--c-deeper);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 0;
}
.site-footer h6 {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .85; }
.footer-desc { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-bottom: .5rem;
}
.footer-contact-item i { color: var(--c-gold); width: 16px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: rgba(255,255,255,.95); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 2.5rem;
  padding: 1.1rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ─── Floating Contact Popup ─────────────────── */
.float-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: var(--c-primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,123,43,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.float-trigger:hover { background: var(--c-primary-d); transform: scale(1.08); box-shadow: 0 6px 28px rgba(196,123,43,.6); }
.float-trigger .ft-close { display: none; }
.float-trigger.is-open .ft-open  { display: none; }
.float-trigger.is-open .ft-close { display: inline; }

.float-card {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 320px;
  max-width: calc(100vw - 2rem);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  z-index: 1049;
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .22s;
}
.float-card.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.float-card-head {
  background: var(--c-dark);
  padding: 1rem 1.1rem;
}
.float-card-head h6 { color: #fff; font-size: .9rem; margin: 0 0 .1rem; }
.float-card-head p  { color: rgba(255,255,255,.55); font-size: .75rem; margin: 0; }

.float-card-body { padding: 1rem 1.1rem 1.2rem; }
.float-card-body .form-control {
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: .86rem;
  padding: .5rem .75rem;
  background: var(--c-cream);
}
.float-card-body .form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 .18rem rgba(196,123,43,.18);
  background: #fff;
}
.float-submit {
  width: 100%;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .18s;
}
.float-submit:hover:not(:disabled) { background: var(--c-primary-d); }
.float-submit:disabled { opacity: .6; cursor: not-allowed; }

.float-product-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: .45rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.35;
}
.float-product-label .fas { color: var(--c-primary); flex-shrink: 0; font-size: .8rem; }

@media (max-width: 400px) {
  .float-card    { right: .75rem; width: calc(100vw - 1.5rem); }
  .float-trigger { right: .75rem; }
}

/* ─── Alert / status ──────────────────────────── */
.alert { border-radius: 10px; border: none; font-size: .92rem; }

/* ─── Utility ─────────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--c-primary); border-radius: 2px; margin: .75rem 0 1.5rem; }

/* ─── Responsive helpers ──────────────────────── */
@media (max-width: 575.98px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 0; padding: 2.75rem 0; margin: .6rem; border-radius: 14px; }
  .hero-stats { gap: 1.25rem; }
  .cta-banner { padding: 3rem 1rem; }
}
