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

:root {
  --azul-escuro: #133556;
  --azul-turquesa: #25B6CB;
  --branco: #FFFFFF;
  --ink: var(--azul-escuro);
  --muted: #5f6f7c;
  --line: rgba(19, 53, 86, 0.16);
  --paper: #f4f8f9;
  --white: var(--branco);
  --cyan: var(--azul-turquesa);
  --navy: var(--azul-escuro);
  --orange: #f17422;
  --green: #45bd42;
  --purple: #7f2ca7;
  --gold: #f2a93b;
  --yellow: #e8b400;
  --scroll-progress: 0;
  --shadow: 0 28px 60px rgba(17, 20, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Tomorrow", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 74px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  background: rgba(247, 248, 246, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 112px;
  height: 54px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: rgba(17, 20, 23, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--navy);
}

.button,
.download-fizzy,
.header-action,
.filter-button,
.quote-button {
  --button-corner: 13px;
  --button-outline: var(--line);
  position: relative;
  isolation: isolate;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--button-corner)), calc(100% - var(--button-corner)) 100%, 0 100%);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button::after,
.download-fizzy::after,
.header-action::after,
.filter-button::after,
.quote-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: var(--button-corner);
  height: var(--button-corner);
  background: linear-gradient(
    135deg,
    transparent calc(50% - 0.8px),
    var(--button-outline) calc(50% - 0.8px),
    var(--button-outline) calc(50% + 0.8px),
    transparent calc(50% + 0.8px)
  );
  pointer-events: none;
}

.header-action {
  --button-outline: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(47, 184, 200, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, var(--white), var(--paper));
  background-size: 92px 100%, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 44px;
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: var(--ink);
  opacity: 0.16;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-logo {
  width: 118px;
  height: 94px;
  margin-bottom: 20px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  font-weight: 700;
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5.6vw, 5.4rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.16;
}

.hero-line {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.9vw, 1.72rem);
  font-weight: 600;
  line-height: 1.22;
}

.hero-text,
.section-heading p,
.about-copy p,
.catalog-section p,
.quote-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 600px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  box-shadow: inset 0 0 0 1px var(--button-border, transparent);
  transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.button:hover,
.header-action:hover,
.filter-button:hover,
.quote-button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  --button-border: var(--line);
  --button-outline: var(--line);
  color: rgba(19, 53, 86, 0.42);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.55);
  transform: none;
}

.button:disabled:hover {
  transform: none;
}

.button.primary {
  --button-border: var(--ink);
  --button-outline: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  --button-border: var(--ink);
  --button-outline: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button.ghost {
  --button-border: var(--line);
  --button-outline: var(--line);
  color: var(--navy);
  background: var(--white);
}

.download-fizzy {
  --fizzy-bg: var(--white);
  --fizzy-fg: var(--ink);
  --fizzy-border: rgba(17, 20, 23, 0.74);
  --button-outline: var(--fizzy-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  gap: 10px;
  overflow: visible;
  padding: 0 22px;
  color: var(--fizzy-fg);
  background: var(--fizzy-bg);
  box-shadow: inset 0 0 0 1px var(--fizzy-border), 0 0 0 0 rgba(47, 184, 200, 0);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    min-width 0.32s ease,
    width 0.32s ease;
}

.download-fizzy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.download-fizzy:hover {
  --button-outline: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px transparent, 0 18px 30px -18px rgba(17, 20, 23, 0.42);
  transform: translateY(-2px);
}

.download-fizzy:hover::before {
  opacity: 1;
}

.download-fizzy-light {
  --fizzy-bg: transparent;
  --fizzy-fg: var(--white);
  --fizzy-border: rgba(255, 255, 255, 0.52);
}

.catalog-section .download-fizzy-light::before {
  background: var(--white);
}

.catalog-section .download-fizzy-light:hover {
  color: var(--ink);
}

.download-icon,
.download-text,
.download-check {
  position: relative;
  z-index: 2;
}

.download-icon {
  color: var(--cyan);
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-2px);
  transition: color 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
}

.download-text {
  font-weight: 900;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.download-check {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.22rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.35);
}

.download-fizzy:hover .download-icon {
  color: currentColor;
  animation: downloadPulse 0.72s ease-in-out infinite alternate;
}

.button-spots {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.button-spots span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 999px;
  background: hsl(var(--hue, 190) 82% 58%);
  box-shadow: 0 0 12px rgba(47, 184, 200, 0.3);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3);
}

.download-fizzy:hover .button-spots span {
  animation: fizzyFloat 0.82s var(--delay, 0s) ease-out infinite alternate;
}

.download-fizzy.is-complete {
  --button-outline: var(--cyan);
  width: auto;
  min-width: 190px;
  padding-inline: 22px;
  color: transparent;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--cyan), 0 18px 30px -18px rgba(19, 53, 86, 0.32);
  transform: translateY(-2px);
}

.download-fizzy.is-complete::before {
  opacity: 0;
}

.download-fizzy.is-complete .download-text {
  opacity: 0;
  transform: translateY(12px);
}

.download-fizzy.is-complete .download-icon {
  opacity: 0;
  animation: downloadAcross 0.75s 0.1s ease-in-out infinite;
}

.download-fizzy.is-complete .download-check {
  animation: fizzyTick 0.35s 0.45s ease-out forwards;
}

.catalog-section .download-fizzy-light.is-complete {
  background: var(--white);
}

.download-fizzy.is-complete .button-spots span {
  animation: fizzyBurst 0.9s var(--delay, 0s) cubic-bezier(0.22, 0.68, 0.18, 1) forwards;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-showcase::before {
  content: "Linha\A Beldis";
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 1;
  color: rgba(19, 53, 86, 0.07);
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
  white-space: pre;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -4vw;
  z-index: 0;
  width: min(46vw, 500px);
  aspect-ratio: 1;
  background: url("assets/logo-selo.png") center / contain no-repeat;
  opacity: 0.05;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 30px 26px rgba(17, 20, 23, 0.16));
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero-product-main {
  right: 180px;
  bottom: -6px;
  z-index: 4;
  width: min(42vw, 360px);
  transform: translateX(calc(var(--scroll-progress) * -26px)) translateY(calc(var(--scroll-progress) * 10px));
}

.hero-product-side {
  right: 0;
  bottom: 20px;
  z-index: 3;
  width: min(34vw, 292px);
  transform: translateX(calc(var(--scroll-progress) * 38px)) translateY(calc(var(--scroll-progress) * -8px));
}

.hero-product-back {
  right: 370px;
  bottom: 34px;
  z-index: 2;
  width: min(32vw, 300px);
  opacity: 0.96;
  transform: translateX(calc(var(--scroll-progress) * -52px)) rotate(calc(var(--scroll-progress) * -1.2deg));
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 20, 23, 0.1);
  border-bottom: 1px solid rgba(17, 20, 23, 0.1);
  background: var(--ink);
}

.quick-strip div {
  padding: 26px clamp(18px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--white);
  font-size: 1.05rem;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.64);
}

.about-section,
.products-section,
.catalog-section,
.quote-section,
.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 7vw, 92px);
  background: var(--white);
}

.about-copy {
  display: grid;
  gap: 1px;
  align-content: start;
  border-top: 1px solid var(--line);
}

.about-copy p {
  margin-bottom: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.products-section {
  background: var(--paper);
}

.filters {
  position: sticky;
  top: 75px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 10px 0;
  background: rgba(247, 248, 246, 0.88);
  backdrop-filter: blur(14px);
}

.filter-button {
  --button-outline: var(--line);
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.filter-button.active {
  --button-outline: var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.product-card[hidden] {
  display: none;
}

.product-media,
.placeholder-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(17, 20, 23, 0.035), transparent 44%),
    var(--white);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.has-color-note img {
  padding-bottom: 30px;
}

.color-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(19, 53, 86, 0.94);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.color-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(19, 53, 86, 0.18);
}

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

.color-gray {
  background: #a7adb2;
}

.color-black {
  background: #111417;
}

.product-variants {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px;
}

.product-variants img {
  min-width: 0;
  padding: 0;
}

.product-variants-three img {
  width: 36%;
}

.product-variants-two img {
  width: 47%;
}

.product-card-body {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 16px;
}

.tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding-bottom: 6px;
  color: var(--card-accent, var(--navy));
  border-bottom: 2px solid var(--card-accent, var(--navy));
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card-body h3 {
  font-size: 1.14rem;
}

.product-card-body p {
  min-height: 96px;
  color: var(--muted);
  font-size: 0.95rem;
}

dl {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
}

dl div {
  padding-top: 7px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-button {
  --button-outline: var(--ink);
  width: 100%;
  margin-top: auto;
  padding: 0 12px;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  font-size: 0.92rem;
}

.quote-button.selected {
  --button-outline: var(--card-accent, var(--cyan));
  color: var(--ink);
  background: var(--card-accent, var(--cyan));
  box-shadow: inset 0 0 0 1px var(--card-accent, var(--cyan));
}

.accent-cyan {
  --card-accent: var(--cyan);
}

.accent-purple {
  --card-accent: var(--purple);
}

.accent-green {
  --card-accent: var(--green);
}

.accent-orange {
  --card-accent: var(--orange);
}

.accent-gold {
  --card-accent: var(--gold);
}

.accent-clean {
  --card-accent: var(--yellow);
}

.catalog-section,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.catalog-section {
  color: var(--white);
  background: var(--navy);
}

.catalog-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.catalog-section .button.primary {
  color: var(--ink);
  background: var(--white);
}

.quote-section {
  background: var(--white);
}

#quote-list {
  margin-bottom: 0;
}

.quote-empty {
  margin-bottom: 0;
}

.quote-table-wrap {
  width: min(760px, 100%);
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.quote-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.9rem;
}

.quote-table th,
.quote-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.quote-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-table tr:last-child td {
  border-bottom: 0;
}

.quote-table td:last-child,
.quote-table th:last-child {
  width: 210px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.quote-clear-button {
  min-width: 190px;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 53, 86, 0.68);
  backdrop-filter: blur(12px);
}

.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100svh - 32px));
  overflow: auto;
  padding: clamp(18px, 4vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(37, 182, 203, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 76px 100%, auto;
  box-shadow: 0 34px 90px rgba(19, 53, 86, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.quote-modal-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(
    135deg,
    transparent calc(50% - 1px),
    var(--line) calc(50% - 1px),
    var(--line) calc(50% + 1px),
    transparent calc(50% + 1px)
  );
  pointer-events: none;
}

.quote-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.quote-modal-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.modal-close {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%);
}

.quote-modal-copy {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--muted);
}

.quote-cnpj-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.quote-cnpj-field span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-cnpj-field input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.quote-cnpj-field input:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(37, 182, 203, 0.24);
  outline-offset: 2px;
}

.quote-company-preview {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid rgba(37, 182, 203, 0.38);
  background: rgba(37, 182, 203, 0.08);
}

.quote-company-preview[hidden] {
  display: none;
}

.quote-company-preview strong,
.quote-company-preview span {
  display: block;
}

.quote-company-preview strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.quote-company-preview span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-modal-products {
  display: grid;
  gap: 10px;
}

.quote-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.5fr) 132px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.quote-product-row-head {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-product-row strong,
.quote-product-row span,
.quote-product-color {
  display: block;
}

.quote-product-row strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.quote-product-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-product-row-head span {
  margin-top: 0;
  color: var(--white);
}

.quote-product-color {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.quote-product-row input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.quote-product-row input:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(37, 182, 203, 0.24);
  outline-offset: 2px;
}

.quote-modal-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #b22626;
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.quote-modal-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

body.modal-open {
  overflow: hidden;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--paper);
}

address {
  display: grid;
  gap: 12px;
  align-content: start;
  font-style: normal;
}

address a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer a {
  color: var(--cyan);
}

@keyframes fizzyFloat {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }

  to {
    opacity: 0.72;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) scale(1);
  }
}

@keyframes fizzyBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }

  20% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x, 0px)), calc(-50% + var(--burst-y, 0px))) scale(0.18);
  }
}

@keyframes fizzyTick {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes downloadPulse {
  from {
    transform: translateY(-4px);
  }

  to {
    transform: translateY(2px);
  }
}

@keyframes downloadAcross {
  from {
    opacity: 1;
    transform: translateX(-18px);
  }

  to {
    opacity: 0;
    transform: translateX(18px);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  }

  .hero-showcase {
    min-height: 480px;
  }

  .hero-showcase::after {
    top: -22px;
    right: -4vw;
    width: min(48vw, 390px);
  }

  .hero-product-main {
    right: 132px;
    width: min(44vw, 310px);
  }

  .hero-product-side {
    bottom: 18px;
    width: min(34vw, 238px);
  }

  .hero-product-back {
    right: 280px;
    bottom: 32px;
    width: min(30vw, 230px);
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .about-section,
  .catalog-section,
  .quote-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .hero-showcase::before {
    top: 18px;
    font-size: clamp(3.6rem, 15vw, 6.2rem);
  }

  .hero-showcase::after {
    top: -12px;
    right: 4vw;
    width: min(58vw, 330px);
  }

  .quick-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    width: 96px;
    height: 48px;
  }

  .header-action {
    padding-inline: 12px;
  }

  .hero-logo {
    width: 96px;
    height: 76px;
  }

  .hero-actions,
  .quote-actions {
    display: grid;
  }

  .button,
  .download-fizzy {
    width: 100%;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .hero-showcase::before {
    top: 30px;
    right: -6px;
    font-size: 4.2rem;
  }

  .hero-showcase::after {
    top: -4px;
    right: 14px;
    width: 210px;
    opacity: 0.05;
  }

  .hero-product-main {
    right: 74px;
    bottom: -2px;
    width: 220px;
  }

  .hero-product-side {
    right: -8px;
    bottom: 16px;
    width: 170px;
  }

  .hero-product-back {
    right: 188px;
    bottom: 38px;
    width: 150px;
  }

  .quick-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .filters {
    top: 69px;
  }

  .product-media,
  .placeholder-media {
    height: 280px;
  }

  .product-card-body {
    min-height: auto;
  }

  .product-card-body p {
    min-height: auto;
  }

  .quote-modal {
    padding: 12px;
  }

  .quote-product-row {
    grid-template-columns: 1fr;
  }

  .quote-product-row-head {
    display: none;
  }

  .quote-modal-actions {
    display: grid;
  }

  .site-footer {
    flex-direction: column;
  }
}
