@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #111716;
  --ink-soft: #26302e;
  --paper: #ffffff;
  --mist: #f3f6f4;
  --line: #dfe6e2;
  --lime: #cfff36;
  --lime-deep: #aee000;
  --whatsapp: #25d366;
  --muted: #6c7774;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(17, 23, 22, 0.11);
  --container: 1240px;
}



/* Complete logo and flag area */
.header .brand--with-flag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  flex-shrink: 0;
  text-decoration: none;
}

/* Both logos under each other */
.header .brand__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Main logo */
.header .brand__logos .main-logo {
  display: block;
  width: 110px;
  height: 48px;
  object-fit: contain;
}

/* Second logo */
.header .brand__logos .sub-logo {
  display: block;
  width: 100px;
  height: 48px;
  object-fit: contain;
}

/* USA flag on right side */
.header .brand--with-flag .usa-flag {
  display: block;
  width: 70px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .header .brand--with-flag {
    gap: 7px;
    padding: 4px 0;
  }

  .header .brand__logos {
    gap: 2px;
  }

  .header .brand__logos .main-logo {
    width: 82px;
    height: 36px;
  }

  .header .brand__logos .sub-logo {
    width: 76px;
    height: 36px;
  }

  .header .brand--with-flag .usa-flag {
    width: 48px;
    height: 31px;
  }
}

.brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-decoration:none;
}

.main-logo{
    width:180px;
    height:auto;
    display:block;
}

.sub-logo{
    width:130px;
    height:auto;
    margin-top:6px;
    display:block;
}

/* Mobile */
@media (max-width:768px){

    .main-logo{
        width:140px;
    }

    .sub-logo{
        width:100px;
        margin-top:4px;
    }

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.98;
  margin: 0;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--mist {
  background: var(--mist);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading__copy {
  max-width: 650px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

.section-heading p {
  max-width: 530px;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #53605d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--lime-deep);
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--lime);
}

.btn {
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 15px 35px rgba(207, 255, 54, 0.2);
}

.btn--lime:hover {
  background: #ddff71;
}

.btn--dark {
  color: #fff;
  background: var(--ink);
}

.btn--dark:hover {
  background: #2b3533;
}

.btn--outline {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn--whatsapp {
  color: #fff;
  background: #159347;
}

.btn--whatsapp:hover {
  background: #0d7b39;
  box-shadow: 0 14px 30px rgba(21, 147, 71, 0.25);
}

.btn--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.74rem;
}

.btn--icon {
  width: 44px;
  padding: 0;
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn--full {
  width: 100%;
}

.announcement {
  position: relative;
  z-index: 101;
  color: #d7dedc;
  background: #0b0f0e;
  font-size: 0.74rem;
}

.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement__inner > span {
  color: var(--lime);
  font-weight: 600;
}

.announcement__inner > div {
  display: flex;
  gap: 22px;
}

.announcement a:hover {
  color: var(--lime);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 230, 226, 0.75);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 10px 35px rgba(17, 23, 22, 0.08);
}

.header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.brand {
  flex: 0 0 170px;
}

.brand img {
  width: 170px;
  height: 55px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav > a {
  position: relative;
  padding: 30px 0;
}

.nav > a:not(.nav__whatsapp)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 3px;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav > a:hover::after,
.nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .nav__whatsapp {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: #159347;
}

.nav .nav__whatsapp:hover {
  background: #0f7c3c;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: var(--ink);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 700px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 15, 14, 0.98) 0%, rgba(10, 15, 14, 0.92) 42%, rgba(10, 15, 14, 0.3) 75%, rgba(10, 15, 14, 0.48) 100%),
    url("images/hero-collage.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: 45%;
  top: -250px;
  border-radius: 50%;
  background: rgba(207, 255, 54, 0.26);
  filter: blur(110px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
}

.hero__content {
  padding: 80px 0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(4rem, 8vw, 7.7rem);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--lime);
}

.hero__lead {
  max-width: 590px;
  margin-top: 26px;
  color: #cbd3d0;
  font-size: 1.08rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  padding: 22px 20px 0 0;
}

.hero__stat strong {
  display: block;
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__stat span {
  display: block;
  margin-top: 8px;
  color: #b8c1be;
  font-size: 0.76rem;
}

.benefits {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--paper);
  background: var(--ink);
}

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

.benefit {
  min-height: 130px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit:last-child {
  border-right: 0;
}

.benefit__icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(207, 255, 54, 0.45);
  display: grid;
  place-items: center;
  color: var(--lime);
  font-weight: 800;
}

.benefit strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.benefit span {
  color: #9facaa;
  font-size: 0.76rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 430px;
  padding: 45px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.category-card--men {
  background-image: linear-gradient(180deg, transparent 30%, rgba(10, 15, 14, 0.9) 100%), url("images/products/product-13.png");
}

.category-card--women {
  background-image: linear-gradient(180deg, transparent 30%, rgba(10, 15, 14, 0.9) 100%), url("images/products/product-16.png");
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 255, 54, 0.06), transparent);
  transition: background 0.3s ease;
}

.category-card:hover::before {
  background: linear-gradient(135deg, rgba(207, 255, 54, 0.2), transparent);
}

.category-card__content {
  position: relative;
  z-index: 2;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
}

.category-card p {
  max-width: 390px;
  margin-bottom: 22px;
  color: #d4dcda;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-card__image {
  position: relative;
  height: 325px;
  padding: 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 38%, transparent 70%),
    #f1f4f2;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 20px;
  color: #fff;
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__quick {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 40px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(65px);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__quick {
  transform: translateY(0);
}

.product-card__body {
  padding: 20px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 46px;
  margin-top: 9px;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.product-card h3 a:hover {
  color: #6e8f00;
}

.product-card__sizes {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-card__actions {
  margin-top: 18px;
  display: flex;
  gap: 9px;
}

.product-card__actions .btn--dark {
  flex: 1;
}

.custom-banner {
  position: relative;
  padding: 85px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 15, 14, 0.98), rgba(10, 15, 14, 0.68)),
    url("images/products/product-06.png") right 16% center / 520px auto no-repeat,
    #0d1211;
  overflow: hidden;
}

.custom-banner::after {
  content: "CUSTOM";
  position: absolute;
  right: -30px;
  bottom: -55px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
}

.custom-banner__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.custom-banner h2 {
  margin: 12px 0 20px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  text-transform: uppercase;
}

.custom-banner h2 span {
  color: var(--lime);
}

.custom-banner p {
  max-width: 570px;
  color: #c3ccca;
}

.custom-banner .btn {
  margin-top: 30px;
}

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

.step {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.step h3 {
  margin: 25px 0 12px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.step p {
  color: var(--muted);
  font-size: 0.91rem;
}

.page-hero {
  padding: 98px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 15, 14, 0.97), rgba(10, 15, 14, 0.65)),
    url("images/hero-collage.jpg") center / cover;
}

.page-hero__inner {
  max-width: 750px;
}

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 610px;
  margin-top: 20px;
  color: #c9d1cf;
}

.breadcrumbs {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
}

.breadcrumbs__inner {
  display: flex;
  gap: 8px;
}

.breadcrumbs a:hover {
  color: #5f7c00;
}

.shop-toolbar {
  margin-bottom: 35px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.shop-search {
  width: min(100%, 350px);
  position: relative;
}

.shop-search input {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
}

.shop-search input:focus {
  border-color: #7f9e14;
  box-shadow: 0 0 0 3px rgba(207, 255, 54, 0.28);
}

.shop-results-note {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
}

.empty-state h3 {
  font-size: 2rem;
  text-transform: uppercase;
}

.empty-state p {
  margin-top: 8px;
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 70px;
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: 115px;
}

.product-detail__image {
  min-height: 620px;
  padding: 45px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 35%, transparent 72%),
    #eef2ef;
}

.product-detail__image img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.product-detail__trust {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
  color: #4f5d59;
  font-size: 0.78rem;
}

.product-detail__info {
  padding-top: 18px;
}

.product-detail__info h1 {
  margin-top: 14px;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  text-transform: uppercase;
}

.product-detail__sub {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.color-dot {
  width: 16px;
  height: 16px;
  border: 1px solid #bbc4c1;
  border-radius: 50%;
  background: var(--swatch);
}

.dot-separator {
  width: 4px;
  height: 4px;
  margin: 0 5px;
  border-radius: 50%;
  background: #aeb8b5;
}

.price-note {
  margin-top: 25px;
  color: #527000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.description-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  color: #53605d;
}

.description-list p {
  padding-left: 21px;
  position: relative;
}

.description-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 3px;
  background: var(--lime-deep);
}

.order-box {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f9f8;
}

.order-box h2 {
  margin-bottom: 22px;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span,
.size-picker legend {
  color: #34403d;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d1d9d5;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.field input,
.field select {
  height: 49px;
  padding: 0 13px;
}

.field textarea {
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #809d1e;
  box-shadow: 0 0 0 3px rgba(207, 255, 54, 0.28);
}

.field-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.size-picker {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.size-picker legend {
  margin-bottom: 9px;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.size-option {
  min-height: 61px;
  border: 1px solid #cfd7d3;
  border-radius: 5px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-option span {
  font-size: 0.8rem;
  font-weight: 800;
}

.size-option small {
  color: var(--muted);
  font-size: 0.61rem;
}

.size-option:has(input:checked) {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.size-option.disabled {
  color: #9ea7a4;
  background: #e9edeb;
  cursor: not-allowed;
  text-decoration: line-through;
}

.custom-check {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #d2dbd7;
  border-radius: 7px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  cursor: pointer;
}

.custom-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #6c9000;
}

.custom-check span {
  display: grid;
}

.custom-check strong {
  font-size: 0.85rem;
}

.custom-check small {
  color: var(--muted);
  font-size: 0.73rem;
}

.customization-notes {
  display: none;
  margin-bottom: 18px;
}

.customization-notes.show {
  display: grid;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(10, 15, 14, 0.85)),
    url("images/products/product-06.png") center / cover;
  box-shadow: var(--shadow);
}

.about-visual__card {
  position: absolute;
  right: -25px;
  bottom: 35px;
  width: 230px;
  padding: 25px;
  border-radius: 10px;
  background: var(--lime);
}

.about-visual__card strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-visual__card span {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
}

.about-copy h2 {
  margin: 12px 0 22px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  text-transform: uppercase;
}

.about-copy > p {
  color: var(--muted);
}

.about-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-point {
  padding: 20px;
  border-left: 4px solid var(--lime-deep);
  background: var(--mist);
}

.about-point strong {
  display: block;
  font-size: 0.9rem;
}

.about-point span {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: start;
}

.contact-panel {
  padding: 38px;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
}

.contact-panel h2 {
  font-size: 3rem;
  text-transform: uppercase;
}

.contact-panel > p {
  margin-top: 14px;
  color: #afbbb7;
}

.contact-list {
  margin-top: 35px;
  display: grid;
}

.contact-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item span {
  display: block;
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 3rem;
  text-transform: uppercase;
}

.contact-form .field-grid,
.contact-form .field {
  margin-top: 16px;
}

.contact-form .btn {
  margin-top: 20px;
}

.footer {
  padding: 75px 0 25px;
  color: #d2dad7;
  background: #0a0e0d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.85fr 1fr;
  gap: 50px;
}

.footer__brand img {
  width: 190px;
  height: 70px;
  padding: 7px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
}

.footer__brand p {
  max-width: 340px;
  margin-top: 20px;
  color: #8f9b97;
  font-size: 0.84rem;
}

.footer h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.footer__grid > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer a,
.footer span {
  color: #8f9b97;
  font-size: 0.79rem;
}

.footer a:hover {
  color: var(--lime);
}

.footer .social-soon {
  margin-top: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(207, 255, 54, 0.25);
  color: var(--lime);
}

.footer__bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 52px;
  padding: 7px 17px 7px 7px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #159347;
  box-shadow: 0 12px 35px rgba(21, 147, 71, 0.34);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #159347;
  background: #fff;
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
