:root {
  --color-ink: #132238;
  --color-muted: #667085;
  --color-blue: #1D5EAB;
  --color-blue-dark: #164b8a;
  --color-orange: #EE882C;
  --color-green: #277c52;
  --color-line: #e5e9f0;
  --color-soft: #f5f8fb;
  --shadow-soft: 0 22px 55px rgba(19, 34, 56, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

main {
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.nav-link,
.quote-btn,
.primary-btn,
.secondary-btn {
  font-family: "Sora", "Poppins", sans-serif;
}

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

img {
  max-width: 100%;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  transform: translateY(-8px);
}

.site-loader__mark img {
  width: min(230px, 58vw);
}

.site-loader__mark span {
  color: var(--color-blue);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-loader__line {
  position: absolute;
  left: 50%;
  top: calc(50% + 86px);
  width: min(220px, 52vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f6;
  transform: translateX(-50%);
}

.site-loader__line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: var(--color-orange);
  animation: loaderLine 1.15s ease-in-out infinite;
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(240%);
  }
}

.top-header {
  position: relative;
  overflow: hidden;
  background: var(--color-blue);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-header::before {
  display: none;
}

.top-header__inner {
  position: relative;
  z-index: 1;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.top-header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-header__contact i {
  color: var(--color-orange);
  font-size: 0.94rem;
}

.top-header__contact a:hover {
  color: var(--color-orange);
}


.top-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-header__actions a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.2s ease;
}

.top-header__actions a,
.top-header__actions a:visited,
.top-header__actions a:focus {
  color: #ffffff;
}

.top-header__actions a:hover {
  color: var(--color-orange);
  transform: translateY(-1px);
}

.top-header__actions i {
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(19, 34, 56, 0.06);
}

.header-main {
  border-bottom: 1px solid rgba(19, 34, 56, 0.07);
}

.header-main__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
}

.navbar-brand img {
  width: min(172px, 42vw);
  height: auto;
}

.primary-nav {
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.primary-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: #2a3749;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--color-blue);
}

.header-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.language-switch {
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding: 0 9px;
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: #ffffff;
}

.language-switch a {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.language-switch a.active,
.language-switch a:hover {
  color: var(--color-blue);
}

.language-switch span {
  width: 1px;
  height: 12px;
  background: rgba(19, 34, 56, 0.14);
}

.navbar-toggler {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--color-ink);
  box-shadow: none;
  background: #ffffff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(29, 94, 171, 0.14);
}

.header-categories {
  position: relative;
  background: rgba(250, 252, 255, 0.88);
}

.header-categories .dropdown {
  position: relative;
}

.header-categories .dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 12px;
  display: none;
}

.category-nav {
  min-height: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 22px);
}

.category-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px;
  color: #1f2d40;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.category-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.category-link:hover,
.category-link.show {
  color: var(--color-blue);
  background: transparent;
}

.category-link:hover::before,
.category-link.show::before {
  transform: scaleX(1);
}

.category-link.dropdown-toggle::after {
  margin-left: 4px;
  border-top-color: currentColor;
  transform: translateY(1px);
}

.category-link--accent {
  min-height: 32px;
  margin-left: 4px;
  padding: 0 13px 0 14px;
  border: 1px solid rgba(29, 94, 171, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 600;
}

.category-link--accent::before {
  display: none;
}

.category-link--accent::after {
  content: "\ea6c";
  font-family: remixicon;
  width: auto;
  height: auto;
  margin-left: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-orange);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.category-link--accent:hover {
  border-color: rgba(29, 94, 171, 0.34);
  background: #ffffff;
  color: var(--color-blue-dark);
}

.category-link--accent:hover::after {
  transform: translateX(2px);
}

.dropdown-menu {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mega-menu {
  top: 100% !important;
  left: 50% !important;
  right: auto !important;
  width: min(1040px, calc(100vw - 56px));
  transform: translateX(-50%) !important;
  margin-top: 6px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  background: rgba(255, 255, 255, 0.98);
}

@media (min-width: 1200px) {
  .header-categories .dropdown:hover::after,
  .header-categories .dropdown:focus-within::after {
    display: block;
  }

  .header-categories .dropdown:hover > .mega-menu,
  .header-categories .dropdown:focus-within > .mega-menu {
    display: block;
  }

  .header-categories .dropdown:hover > .category-link {
    color: var(--color-blue);
  }

  .header-categories .dropdown:hover > .category-link::before {
    transform: scaleX(1);
  }
}

.mega-menu__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.07);
}

.mega-menu__head h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-blue);
  font-size: 0.86rem;
  font-weight: 500;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1.28fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 12px;
  align-items: stretch;
}

.mega-category {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  padding: 17px 16px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #ffffff;
  color: #1f2d40;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mega-category strong {
  position: relative;
  z-index: 1;
  align-self: stretch;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.28;
}

.mega-category strong::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 8px;
  background: var(--color-orange);
}

.mega-category small {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: block;
  max-width: 210px;
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.mega-category img {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 104px;
  height: 82px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.mega-category__label {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin-bottom: 8px;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 500;
}

.mega-category--featured {
  grid-row: span 3;
  background: #ffffff;
}

.mega-category--featured strong {
  font-size: 1.2rem;
}

.mega-category--featured small {
  max-width: 240px;
}

.mega-category--featured img {
  right: 22px;
  bottom: 12px;
  width: 250px;
  height: 190px;
}

.mega-category--with-image {
  padding-right: 122px;
}

.mega-category--with-image small {
  max-width: 150px;
}

.mega-category--wide {
  grid-column: 2 / 4;
  min-height: 0;
  justify-content: center;
}

.mega-category:hover {
  border-color: rgba(29, 94, 171, 0.2);
  background: #fcfcfc;
  transform: translateY(-1px);
}

.mega-category:hover img {
  transform: translateY(-2px) scale(1.02);
}

.mega-menu--compact {
  width: min(980px, calc(100vw - 56px));
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.13rem;
  transition: 0.2s ease;
}

.icon-btn:hover {
  background: rgba(29, 94, 171, 0.07);
  color: var(--color-blue);
}

.cart-dot {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-blue);
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.btn-premium,
.btn-premium-white,
.quote-btn,
.primary-btn,
.secondary-btn {
  position: relative;
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.btn-premium::before,
.btn-premium-white::before,
.quote-btn::before,
.primary-btn::before,
.secondary-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

.btn-premium,
.quote-btn,
.primary-btn {
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: #ffffff;
  box-shadow: none;
}

.btn-premium::before,
.quote-btn::before,
.primary-btn::before {
  display: none;
}

.btn-premium-white,
.secondary-btn {
  border: 1px solid rgba(19, 34, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  box-shadow: 0 14px 34px rgba(19, 34, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-premium-white::before,
.secondary-btn::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.48));
}

.btn-premium:hover,
.quote-btn:hover,
.primary-btn:hover {
  border-color: var(--color-blue-dark);
  background: var(--color-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-premium-white:hover,
.secondary-btn:hover {
  border-color: rgba(238, 136, 44, 0.42);
  color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(19, 34, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-premium:active,
.btn-premium-white:active,
.quote-btn:active,
.primary-btn:active,
.secondary-btn:active {
  transform: translateY(0);
}

.btn-premium i,
.btn-premium-white i,
.quote-btn i,
.primary-btn i,
.secondary-btn i {
  font-size: 1.08rem;
}

.quote-btn {
  padding: 0 20px;
}

.offcanvas {
  border: 0;
}

.offcanvas-logo {
  width: 166px;
}

.mobile-search,
.search-field {
  height: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--color-muted);
  background: #ffffff;
}

.mobile-search input,
.search-field input {
  border: 0;
  outline: 0;
  width: 100%;
  color: var(--color-ink);
}

.mobile-menu-group {
  margin-top: 24px;
  display: grid;
  gap: 4px;
}

.mobile-menu-group span {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-menu-group a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  color: #26364b;
  font-size: 0.96rem;
  font-weight: 500;
}

.mobile-menu-group a.active {
  color: var(--color-blue);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.home-hero .splide__track {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: clamp(520px, 62vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8f8f7;
}

.hero-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 3px;
  background: var(--color-blue);
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 8% 38%, rgba(29, 94, 171, 0.08), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 44px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-orange);
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 500px;
  margin: 0;
  color: #101828;
  font-size: clamp(2rem, 2.65vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.hero-slide h2 {
  max-width: 550px;
  font-size: clamp(1.9rem, 2.45vw, 2.95rem);
}

.hero-slide h1 span,
.hero-slide h2 span {
  color: var(--color-blue);
}

.hero-slide p {
  max-width: 470px;
  margin: 24px 0 0;
  color: #5b6678;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-slide__actions .primary-btn,
.hero-slide__actions .secondary-btn {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.9rem;
}

.hero-slide__product {
  position: absolute;
  right: clamp(8%, 12vw, 18%);
  bottom: 10%;
  z-index: 1;
  width: min(38vw, 520px);
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(19, 34, 56, 0.12));
}

.hero-slide--soft {
  background: linear-gradient(110deg, #ffffff 0%, #f6f8fb 100%);
}

.hero-slide--sand {
  background: linear-gradient(110deg, #ffffff 0%, #f8f6f2 100%);
}

.hero-slide--soft::before,
.hero-slide--sand::before {
  background:
    radial-gradient(circle at 8% 38%, rgba(29, 94, 171, 0.07), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0.1) 72%);
}

.hero-slide--blue::before {
  background: linear-gradient(90deg, rgba(13, 58, 112, 0.9) 0%, rgba(13, 58, 112, 0.72) 34%, rgba(13, 58, 112, 0.18) 70%, rgba(13, 58, 112, 0) 100%);
}

.hero-slide--safari-blue {
  background: #0f4481;
}

.hero-slide--safari-blue::before {
  background: linear-gradient(90deg, rgba(9, 43, 86, 0.38) 0%, rgba(13, 58, 112, 0.18) 38%, rgba(13, 58, 112, 0.04) 72%, rgba(13, 58, 112, 0) 100%);
}

.hero-slide--safari-blue .hero-slide__image {
  opacity: 1;
  filter: none;
}

.hero-slide--blue h1,
.hero-slide--blue h2 {
  color: #ffffff;
}

.hero-slide--blue h1 span,
.hero-slide--blue h2 span {
  color: var(--color-orange);
}

.hero-slide--blue p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-slide--blue .hero-eyebrow {
  color: #ffffff;
}

.hero-slide--blue .hero-eyebrow::before {
  background: var(--color-orange);
}

.hero-slide--blue .secondary-btn {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  box-shadow: none;
}

.hero-slide--blue .secondary-btn::before {
  display: none;
}

.hero-slide--blue .secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-slide--blue .primary-btn {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-blue-dark);
  box-shadow: none;
}

.hero-slide--blue .primary-btn:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-blue);
}

.home-hero .splide__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
  box-shadow: none;
  border: 1px solid rgba(19, 34, 56, 0.06);
  transition: 0.2s ease;
}

.home-hero .splide__arrow:hover {
  background: #ffffff;
  color: var(--color-blue);
}

.home-hero .splide__arrow svg {
  width: 14px;
  height: 14px;
}

.home-hero .splide__pagination {
  right: auto;
  left: 12px;
  width: auto;
  bottom: 28px;
  justify-content: flex-start;
  padding: 0;
}

@media (min-width: 1200px) {
  .home-hero .splide__pagination {
    left: calc((100vw - 1140px) / 2 + 12px);
  }
}

@media (min-width: 1400px) {
  .home-hero .splide__pagination {
    left: calc((100vw - 1320px) / 2 + 12px);
  }
}

.home-hero .splide__pagination__page {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.18);
  opacity: 1;
}

.home-hero .splide__pagination__page.is-active {
  transform: none;
  background: var(--color-blue);
}

.season-showcase {
  order: 4;
  width: 100%;
  padding: 8px 0 clamp(36px, 5vw, 62px);
  background: #ffffff;
}

.season-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  grid-template-rows: repeat(2, minmax(286px, 1fr));
  gap: 8px;
  width: 100%;
}

.season-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background: #0b3568;
}

.season-tile--large {
  grid-row: span 2;
  min-height: clamp(560px, 48vw, 650px);
}

.season-tile__products {
  position: absolute;
  right: clamp(46px, 6vw, 118px);
  bottom: clamp(54px, 7vw, 96px);
  z-index: -2;
  width: min(30%, 330px);
  height: min(46%, 300px);
  display: block;
  pointer-events: none;
}

.season-tile__products img {
  position: absolute;
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18));
  transition: transform 0.55s ease, filter 0.55s ease;
}

.season-tile__products img:nth-child(1) {
  right: 2%;
  bottom: 4%;
  z-index: 3;
}

.season-tile__products img:nth-child(2) {
  right: 28%;
  bottom: 0;
  z-index: 2;
  opacity: 0.78;
  transform: scale(0.82) translateX(-10%);
}

.season-tile__products img:nth-child(3) {
  right: -8%;
  bottom: 24%;
  z-index: 1;
  opacity: 0.72;
  transform: scale(0.76) translateX(12%);
}

.season-tile:not(.season-tile--large) .season-tile__products {
  right: 22px;
  bottom: 18px;
  width: min(52%, 330px);
  height: 88%;
}

.season-tile:not(.season-tile--large) .season-tile__products img {
  width: 100%;
  height: 100%;
}

.season-tile:not(.season-tile--large) .season-tile__products img:nth-child(2) {
  right: -18%;
  bottom: -6%;
  opacity: 0.45;
  transform: scale(0.82);
}

.season-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 25, 52, 0.72) 0%, rgba(4, 25, 52, 0.3) 48%, rgba(4, 25, 52, 0.06) 100%),
    linear-gradient(180deg, rgba(4, 25, 52, 0.04) 0%, rgba(4, 25, 52, 0.2) 100%);
}

.season-tile__content {
  position: relative;
  z-index: 1;
  width: min(430px, 88%);
  display: grid;
  gap: 13px;
  padding: clamp(28px, 4vw, 58px);
}

.season-tile small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.season-tile small::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange);
}

.season-tile strong {
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.03;
}

.season-tile:not(.season-tile--large) strong {
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.season-tile em {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.65;
}

.season-tile__action {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.season-tile:hover .season-tile__products img:nth-child(1) {
  transform: translateY(-4px) scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

.season-tile:hover .season-tile__products img:nth-child(2) {
  transform: scale(0.84) translateX(-10%) translateY(-3px);
}

.season-tile:hover .season-tile__products img:nth-child(3) {
  transform: scale(0.78) translateX(12%) translateY(-2px);
}

.season-tile:hover .season-tile__action {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-blue);
}

.quick-categories {
  scroll-margin-top: 132px;
  padding: clamp(44px, 5vw, 72px) 0 clamp(58px, 7vw, 86px);
  background: #ffffff;
}

.quick-categories__head {
  margin-bottom: 26px;
  text-align: center;
}

.quick-categories__head h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.category-slider {
  position: relative;
  padding: 0 46px;
}

.category-slider .splide__track {
  overflow: hidden;
  padding: 10px 0 12px;
}

.category-slider .splide__slide {
  height: auto;
}

.quick-category-card {
  position: relative;
  display: grid;
  grid-template-rows: 270px minmax(52px, auto);
  gap: 15px;
  height: 100%;
  color: #101828;
  text-align: center;
}

.quick-category-card__visual {
  position: relative;
  height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px 28px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%),
    #fbfbfb;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.quick-category-card__visual::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  opacity: 0.92;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.quick-category-card__visual::after {
  content: "\ea6c";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(238, 136, 44, 0.28);
  background: #ffffff;
  color: var(--color-orange);
  font-family: remixicon;
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-category-card__visual img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.quick-category-card__body {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 52px;
  text-align: center;
}

.quick-category-card strong {
  max-width: 92%;
  font-family: "Sora", "Poppins", sans-serif;
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.28;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.quick-category-card small {
  display: block;
  margin-top: 7px;
  color: #9aa3b2;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
}

.quick-category-card small span {
  color: inherit;
  font-weight: inherit;
}

.category-slider .splide__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  background: #ffffff;
  color: var(--color-ink);
  opacity: 1;
  box-shadow: none;
  transition: 0.2s ease;
}

.category-slider .splide__arrow:hover {
  border-color: rgba(29, 94, 171, 0.22);
  color: var(--color-blue);
}

.category-slider .splide__arrow svg {
  width: 13px;
  height: 13px;
}

.category-slider .splide__arrow--prev {
  left: 0;
}

.category-slider .splide__arrow--next {
  right: 0;
}

.quick-category-card:hover .quick-category-card__visual {
  border-color: rgba(29, 94, 171, 0.28);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(29, 94, 171, 0.035) 100%),
    #ffffff;
  transform: translateY(-1px);
}

.quick-category-card:hover .quick-category-card__visual::before {
  opacity: 1;
  transform: scaleX(1);
}

.quick-category-card:hover .quick-category-card__visual::after {
  opacity: 1;
  transform: translateX(0);
}

.quick-category-card:hover strong {
  color: var(--color-blue);
}

.quick-category-card:hover img {
  transform: translateY(-2px);
}

.featured-products {
  padding: 0 0 clamp(34px, 5vw, 56px);
  background: #ffffff;
}

.featured-products__shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(580px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #0e3f79 0%, var(--color-blue) 46%, #0b3568 100%);
  color: #ffffff;
}

.featured-products__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 108% 20%, rgba(255, 255, 255, 0.2), transparent 36%),
    radial-gradient(ellipse at 92% 84%, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(ellipse at 76% 50%, rgba(238, 136, 44, 0.12), transparent 34%);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 68% 100%, 62% 74%, 70% 50%, 62% 22%);
  opacity: 0.7;
  pointer-events: none;
}

.featured-products__copy,
.featured-products__slider {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-orange);
}

.featured-products__copy h2 {
  max-width: 470px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
}

.featured-products__copy p {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.featured-products__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.featured-products__link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-blue);
}

.featured-products__slider {
  min-width: 0;
  padding: 0 0 46px;
}

.featured-products__slider .splide__track {
  overflow: hidden;
  padding: 2px 0 4px;
}

.featured-products__slider .splide__slide {
  height: auto;
}

.featured-products__slider .splide__arrow {
  top: auto;
  bottom: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-blue);
  opacity: 1;
  box-shadow: none;
  transform: none;
  transition: 0.2s ease;
}

.featured-products__slider .splide__arrow:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-blue);
}

.featured-products__slider .splide__arrow svg {
  width: 12px;
  height: 12px;
}

.featured-products__slider .splide__arrow--prev {
  left: auto;
  right: 46px;
}

.featured-products__slider .splide__arrow--next {
  right: 0;
}

.featured-product-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-ink);
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease;
}

.featured-product-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.featured-product-card__tag {
  justify-self: start;
  margin-bottom: 8px;
  color: var(--color-orange);
  font-size: 0.68rem;
  font-weight: 600;
}

.featured-product-card img {
  align-self: center;
  width: 100%;
  height: 132px;
  object-fit: contain;
  margin: 2px 0 14px;
}

.featured-product-card strong {
  display: block;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.28;
  text-transform: uppercase;
}

.featured-product-card__code {
  display: block;
  margin-top: 7px;
  color: #98a2b3;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.featured-product-card__price {
  width: 100%;
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  color: var(--color-ink);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.featured-product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #344054;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.featured-product-card__favorite:hover {
  border-color: rgba(238, 136, 44, 0.36);
  background: #ffffff;
  color: var(--color-orange);
  transform: translateY(-1px);
}

.featured-product-card__favorite:focus-visible {
  outline: 3px solid rgba(238, 136, 44, 0.22);
  outline-offset: 2px;
}

.featured-product-card__favorite.is-active {
  border-color: rgba(238, 136, 44, 0.42);
  background: var(--color-orange);
  color: #ffffff;
}

.featured-product-card__price small {
  color: #7b8493;
  font-family: "Poppins", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
}

.featured-product-card__price--quote {
  color: var(--color-ink);
  justify-content: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-product-card--accent {
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% -18%, rgba(29, 94, 171, 0.34), transparent 44%),
    linear-gradient(180deg, #0a2544 0%, #06182d 62%, #041121 100%);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.site-footer__top,
.site-footer__main,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.footer-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.footer-service {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  column-gap: 12px;
  padding: 18px 0;
  border-right: 0;
}

.footer-service i {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.footer-service span {
  align-self: end;
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-service small {
  align-self: start;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer__main {
  padding: clamp(54px, 7vw, 92px) 0 clamp(52px, 6vw, 82px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.65fr) minmax(140px, 0.62fr) minmax(280px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo img {
  width: min(190px, 52vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 420px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  transition: 0.2s ease;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
  display: none;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-contact__item {
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
}

a.footer-contact__item {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a.footer-contact__item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
  transform: none;
}

.footer-contact__item i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.footer-contact__item span {
  min-width: 0;
  display: grid;
  gap: 2px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-contact__item small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-quote {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-blue-dark);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-quote:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-blue);
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.footer-bottom__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.footer-bottom__inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-bottom__inner a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease;
}

.footer-bottom__inner a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.55rem;
  box-shadow: 0 14px 32px rgba(19, 34, 56, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1fb85a;
  color: #ffffff;
}

.production-flow {
  order: 5;
  padding: clamp(32px, 5vw, 58px) 0 clamp(62px, 8vw, 104px);
  background: #ffffff;
}

.production-flow__head {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-orange);
}

.production-flow__head h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.16;
}

.production-flow__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.production-flow__visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 14px;
  background: #f8fafc;
}

.production-flow__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.96);
}

.production-flow__visual::after {
  display: none;
}

.production-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.production-step {
  position: relative;
  min-height: 208px;
  padding: 24px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.production-step:hover {
  border-color: rgba(29, 94, 171, 0.22);
  transform: translateY(-2px);
}

.production-step i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(29, 94, 171, 0.08);
  color: var(--color-blue);
  font-size: 1.18rem;
}

.production-step h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
}

.production-step p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 0.86rem;
  line-height: 1.58;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 0.96) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(237, 246, 255, 0.9) 100%);
  padding: 48px 0 58px;
}

.hero-shell {
  min-height: calc(100vh - 181px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--color-orange);
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 5.1vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
  font-weight: 700;
}

.hero-copy p {
  max-width: 560px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-btn {
  padding: 0 24px;
}

.secondary-btn {
  padding: 0 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
  margin-top: 34px;
}

.hero-stats div {
  border-left: 3px solid var(--color-orange);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(19, 34, 56, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--color-blue);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-slider {
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.slide-card {
  position: relative;
  min-height: clamp(420px, 54vw, 650px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 58px);
}

.slide-card--blue {
  background: linear-gradient(140deg, #dceeff 0%, #ffffff 58%);
}

.slide-card--yellow {
  background: linear-gradient(140deg, #fff2bf 0%, #ffffff 60%);
}

.slide-card--sand {
  background: linear-gradient(140deg, #f3e4d2 0%, #ffffff 60%);
}

.slide-card img {
  width: min(92%, 560px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(19, 34, 56, 0.18));
}

.slide-info {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.slide-info span {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.slide-info strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.floating-badge {
  position: absolute;
  top: 28px;
  right: -18px;
  border-radius: var(--radius);
  background: #10253f;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(16, 37, 63, 0.26);
  font-weight: 600;
  line-height: 1.2;
}

.floating-badge i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #241600;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.splide__pagination {
  bottom: 12px;
}

.splide__pagination__page {
  width: 22px;
  height: 5px;
  border-radius: 0;
  background: #a9b7c7;
}

.splide__pagination__page.is-active {
  transform: none;
  background: var(--color-blue);
}

.splide__arrow {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 12px 30px rgba(19, 34, 56, 0.14);
}

.modal-backdrop.show {
  opacity: 0.34;
}

.search-modal {
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 14px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(19, 34, 56, 0.16);
}

.search-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.search-modal__top span {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 600;
}

.search-modal__top h3 {
  margin: 5px 0 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.search-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f6f7f9;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  transition: 0.2s ease;
}

.search-close:hover {
  background: #eef2f6;
  color: var(--color-blue);
}

.search-modal .search-field {
  height: 60px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  padding: 0 8px 0 20px;
  background: #fafafa;
}

.search-modal .search-field i {
  color: var(--color-blue);
  font-size: 1.24rem;
}

.search-modal .search-field input {
  height: 100%;
  background: transparent;
  font-size: 0.98rem;
}

.search-modal .search-field button {
  min-width: 82px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--color-blue);
  color: #ffffff;
  font-weight: 500;
}

.search-modal__body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 24px;
}

.search-panel__title {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.search-tags a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #28384d;
  font-size: 0.84rem;
  transition: 0.2s ease;
}

.search-tags a:hover {
  border-color: rgba(29, 94, 171, 0.22);
  color: var(--color-blue);
}

.search-category-list {
  display: grid;
  gap: 8px;
}

.search-category-list a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  color: #1f2d40;
  font-weight: 500;
  transition: 0.2s ease;
}

.search-category-list a:hover {
  border-color: rgba(29, 94, 171, 0.22);
  background: #fcfcfc;
  color: var(--color-blue);
}

.search-category-list img {
  width: 54px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  background: #f7f7f7;
}

@media (max-width: 1199.98px) {
  .header-main__inner {
    min-height: 72px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-slide {
    min-height: 640px;
  }

  .hero-slide__image {
    object-position: 64% center;
  }

  .hero-slide__product {
    right: 4%;
    width: min(44vw, 420px);
  }

  .season-showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .season-tile,
  .season-tile--large {
    min-height: 360px;
    grid-row: auto;
  }

  .season-tile__products {
    right: 36px;
    bottom: 34px;
    width: min(28%, 260px);
    height: 48%;
  }

  .season-tile:not(.season-tile--large) .season-tile__products {
    right: 24px;
    bottom: 18px;
    width: min(48%, 340px);
    height: 84%;
  }

  .category-slider {
    padding: 0 42px;
  }

  .featured-products__shell {
    grid-template-columns: 1fr;
  }

  .featured-products__slider {
    padding-bottom: 46px;
  }

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

  .footer-service:nth-child(2n) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 620px;
  }

  .production-flow__layout {
    grid-template-columns: 1fr;
  }

  .production-flow__visual,
  .production-flow__visual img {
    min-height: 360px;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .floating-badge {
    right: 16px;
  }
}

@media (max-width: 767.98px) {
  .top-header__inner {
    min-height: 32px;
    gap: 10px;
  }

  .top-header__contact {
    gap: 10px;
    min-width: 0;
  }

  .top-header__contact a {
    font-size: 0.7rem;
  }

  .top-header__contact a:first-child {
    display: none;
  }

  .top-header__actions a[aria-label="YouTube"],
  .top-header__actions a[aria-label="Twitter"] {
    display: none;
  }

  .language-switch {
    height: 28px;
    padding: 0 8px;
  }

  .hero-slide {
    min-height: 460px;
    align-items: flex-start;
    background: #ffffff;
  }

  .hero-slide::after {
    display: none;
  }

  .hero-slide::before {
    background: radial-gradient(circle at 0% 20%, rgba(29, 94, 171, 0.08), transparent 42%);
  }

  .hero-slide__content {
    padding-top: 44px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 100%;
    font-size: clamp(2.18rem, 11vw, 3.65rem);
  }

  .hero-slide p {
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide__actions a {
    width: 100%;
  }

  .hero-slide__actions {
    justify-content: center;
  }

  .hero-slide__image {
    display: none;
  }

  .hero-slide--blue h1,
  .hero-slide--blue h2 {
    color: #101828;
  }

  .hero-slide--blue h1 span,
  .hero-slide--blue h2 span {
    color: var(--color-blue);
  }

  .hero-slide--blue p {
    color: #5b6678;
  }

  .hero-slide--blue .hero-eyebrow {
    color: var(--color-blue);
  }

  .hero-slide--blue .primary-btn {
    border-color: var(--color-blue);
    background: var(--color-blue);
    color: #ffffff;
  }

  .hero-slide--blue .secondary-btn {
    border-color: rgba(19, 34, 56, 0.12);
    background: #ffffff;
    color: var(--color-ink);
  }

  .hero-slide__product {
    right: 50%;
    bottom: 36px;
    width: min(72vw, 330px);
    max-height: 34%;
    transform: translateX(50%);
  }

  .home-hero .splide__arrows {
    display: none;
  }

  .home-hero .splide__pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
  }

  .season-showcase {
    padding: 6px 0 34px;
  }

  .season-showcase__grid {
    gap: 6px;
  }

  .season-tile,
  .season-tile--large {
    min-height: 300px;
  }

  .season-tile__products,
  .season-tile:not(.season-tile--large) .season-tile__products {
    right: 10px;
    bottom: 10px;
    width: 28%;
    height: 48%;
    opacity: 0.72;
  }

  .season-tile:not(.season-tile--large) .season-tile__products {
    width: 48%;
    height: 70%;
  }

  .season-tile__content {
    width: 100%;
    gap: 10px;
    padding: 28px 44% 28px 22px;
  }

  .season-tile strong,
  .season-tile:not(.season-tile--large) strong {
    font-size: 1.7rem;
  }

  .season-tile em {
    max-width: 300px;
    font-size: 0.9rem;
  }

  .season-tile__action {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .category-slider {
    padding: 0 34px;
  }

  .quick-category-card {
    grid-template-rows: 214px minmax(52px, auto);
  }

  .quick-category-card__visual {
    height: 214px;
    min-height: 0;
    padding: 18px;
  }

  .quick-category-card__visual img {
    height: 172px;
  }

  .featured-products {
    padding-bottom: 36px;
  }

  .featured-products__shell {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .featured-products__slider {
    padding-bottom: 46px;
  }

  .featured-product-card {
    min-height: 238px;
  }

  .featured-product-card img {
    height: 136px;
  }

  .footer-service-grid {
    grid-template-columns: 1fr;
  }

  .footer-service {
    min-height: 88px;
    padding: 18px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__main {
    padding: 38px 0;
  }

  .footer-logo img {
    width: 172px;
  }

  .footer-brand p {
    margin-top: 18px;
  }

  .footer-links a {
    width: 100%;
  }

  .footer-bottom__inner {
    min-height: 82px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-bottom__inner div {
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.38rem;
  }

  .production-flow {
    padding: 36px 0 58px;
  }

  .production-steps {
    grid-template-columns: 1fr;
  }

  .production-flow__visual,
  .production-flow__visual img {
    min-height: 320px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .search-modal {
    padding: 20px;
    border-radius: 12px;
  }

  .search-modal__body {
    grid-template-columns: 1fr;
  }

  .search-modal .search-field {
    height: auto;
    min-height: 56px;
    border-radius: 12px;
    flex-wrap: wrap;
    padding: 10px 12px;
  }

  .search-modal .search-field button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .slide-card {
    min-height: 390px;
    padding: 24px;
  }

  .slide-card img {
    width: 100%;
    max-height: 315px;
  }

  .floating-badge {
    top: 12px;
    right: 12px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .floating-badge i {
    width: 32px;
    height: 32px;
  }
}
