/*
Theme Name: AEX Technology
Theme URI: https://www.akesi.net/
Author: AEX Technology
Description: Lightweight custom theme for the AEX industrial B2B website.
Version: 1.1.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: aex-technology
*/

:root {
  --aex-red: #c8102e;
  --aex-red-dark: #990b22;
  --black: #111317;
  --gray-900: #25272c;
  --gray-700: #51545c;
  --gray-500: #7c8088;
  --gray-200: #e6e7eb;
  --gray-100: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 19, 23, 0.14);
  --radius: 8px;
  --radius-small: 4px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

body.admin-bar .site-header {
  top: 32px;
}

.aex-page-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.aex-page-shell > article {
  max-width: 820px;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  display: block;
  width: 92px;
  height: auto;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand-text small {
  color: var(--gray-700);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--gray-700);
  font-size: 14px;
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--aex-red);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 700;
  font-size: 14px;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--aex-red);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--aex-red-dark);
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 22px rgba(17, 19, 23, 0.08);
}

.btn-ghost {
  color: var(--aex-red);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(200, 16, 46, 0.22);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--aex-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  background: var(--gray-100);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 54%, rgba(255,255,255,0.42) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,19,23,0.08));
  z-index: 1;
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
  padding: 84px 0;
}

.page-hero-subtitle {
  max-width: 660px;
  color: var(--gray-700);
  font-size: 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0;
  min-height: min(680px, calc(100vh - 74px));
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 42px 30px;
  background: var(--gray-100);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,19,23,0.92) 0%, rgba(17,19,23,0.68) 48%, rgba(17,19,23,0.22) 100%),
    linear-gradient(180deg, rgba(17,19,23,0.12), rgba(17,19,23,0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  margin-left: 0;
  padding: 96px 44px 96px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--black);
}

.hero h1 {
  font-size: clamp(48px, 5.4vw, 74px);
  line-height: 0.98;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: var(--gray-900);
  font-size: 22px;
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  color: var(--gray-700);
  font-size: 17px;
}

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

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.quick-contact a {
  color: var(--aex-red);
  font-weight: 800;
}

.business-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.business-strip article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--gray-200);
}

.business-strip article:last-child {
  border-right: 0;
}

.business-strip span {
  color: var(--aex-red);
  font-weight: 800;
}

.business-strip h2 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.16;
}

.business-strip p,
.product-card p {
  color: var(--gray-700);
}

.business-strip a,
.resource-row a {
  color: var(--aex-red);
  font-weight: 800;
}

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

.product-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.product-card.featured {
  border-top: 4px solid var(--aex-red);
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.18;
}

.product-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gray-700);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats div {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  background: var(--gray-100);
  text-align: center;
}

.stats strong {
  font-size: clamp(26px, 4vw, 40px);
}

.stats span {
  color: var(--gray-700);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list article {
  padding: 26px;
  background: var(--gray-100);
  border-left: 4px solid var(--aex-red);
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-row a {
  min-height: 92px;
  padding: 24px;
  background: var(--gray-100);
  border-left: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

.section,
.split-section,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.split-section h2,
.contact-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split-section p,
.contact-copy p,
.card p {
  color: var(--gray-700);
}

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.card.featured {
  border-top: 4px solid var(--aex-red);
}

.card.muted {
  background: var(--gray-100);
}

.card h3 {
  font-size: 25px;
  line-height: 1.18;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.media-card {
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.media-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.application-grid,
.feature-grid,
.shape-grid,
.inquiry-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.application-grid,
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.application-grid article,
.feature-grid article {
  display: grid;
  align-items: center;
  min-height: 108px;
  padding: 24px;
  color: var(--black);
  font-size: 19px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

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

.shape-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

.shape-card h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.16;
}

.shape-card p {
  color: var(--gray-700);
}

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

.inquiry-grid span {
  min-height: 64px;
  padding: 18px 20px;
  color: var(--black);
  font-weight: 800;
  background: var(--gray-100);
  border-left: 4px solid var(--aex-red);
  border-radius: var(--radius-small);
}

.resources-band {
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--gray-100);
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

.resource-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.18;
}

.resource-card p {
  color: var(--gray-700);
}

.compact-strip div {
  min-height: 126px;
}

.business-entry-grid,
.product-line-grid {
  display: grid;
  gap: 18px;
}

.business-entry-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.business-entry,
.product-line-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

.product-line-card.muted {
  background: var(--white);
}

.business-entry h3,
.product-line-card h3 {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.16;
}

.business-entry p,
.product-line-card p,
.link-list {
  color: var(--gray-700);
}

.business-entry .btn,
.product-line-card .btn,
.resource-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.entry-links,
.link-list {
  display: grid;
  gap: 10px;
}

.entry-links a,
.link-list a,
.text-link {
  color: var(--aex-red);
  font-weight: 800;
}

.link-list {
  margin: 0;
  padding-left: 18px;
}

.line-label {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  color: var(--aex-red);
  font-size: 12px;
  font-weight: 800;
  background: rgba(200, 16, 46, 0.08);
  border-radius: var(--radius-small);
}

.product-lines {
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--gray-100);
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.capability-strip div {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  background: var(--gray-100);
  text-align: center;
}

.capability-strip strong {
  font-size: clamp(26px, 4vw, 40px);
}

.capability-strip span {
  color: var(--gray-700);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.list-panel {
  display: grid;
  gap: 16px;
}

.list-panel article {
  padding: 26px;
  background: var(--gray-100);
  border-left: 4px solid var(--aex-red);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.05fr 0.45fr;
  gap: 54px;
  margin-bottom: 40px;
  padding: 56px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 56px;
  padding: 42px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--aex-red);
  border-radius: var(--radius);
}

.cta-band h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--gray-700);
}

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

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-methods a {
  color: var(--aex-red);
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 13px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--black);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-small);
}

.lead-form textarea {
  resize: vertical;
}

.fluent-form-shell {
  display: block;
}

.fluent-form-shell > .fluentform {
  width: 100%;
}

.fluent-form-shell #fluentform_1 fieldset {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fluent-form-shell #fluentform_1 .ff-el-group {
  margin: 0;
}

.fluent-form-shell #fluentform_1 .aex-field-full,
.fluent-form-shell #fluentform_1 .aex-submit-full {
  grid-column: 1 / -1;
}

.fluent-form-shell #fluentform_1 .ff-el-input--label label {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
}

.fluent-form-shell #fluentform_1 .ff-el-form-control {
  min-height: 46px;
  padding: 12px 13px;
  color: var(--black);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-small);
}

.fluent-form-shell #fluentform_1 textarea.ff-el-form-control {
  min-height: 132px;
  resize: vertical;
}

.fluent-form-shell #fluentform_1 .ff-btn-submit {
  min-height: 46px;
  padding: 12px 22px;
  color: var(--white);
  font-weight: 800;
  background: var(--aex-red);
  border: 1px solid var(--aex-red);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.fluent-form-shell #fluentform_1 .ff-btn-submit:hover,
.fluent-form-shell #fluentform_1 .ff-btn-submit:focus {
  background: var(--aex-red-dark);
  border-color: var(--aex-red-dark);
}

.fluent-form-shell #fluentform_1 .ff-el-is-error .ff-el-form-control {
  border-color: var(--aex-red);
}

.fluent-form-shell #fluentform_1 .error.text-danger {
  color: var(--aex-red);
  font-size: 12px;
}

.fluent-form-shell .ff-message-success {
  padding: 18px;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-small);
  box-shadow: none;
}

.full {
  grid-column: 1 / -1;
}

.qr-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  color: var(--gray-700);
  font-size: 13px;
}

.qr-panel div {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.qr-panel img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.qr-panel span {
  color: var(--black);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 42px max(18px, calc((100vw - var(--max)) / 2)) 96px;
  color: var(--gray-700);
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.footer-brand,
.footer-contact,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-brand span:first-child {
  color: var(--black);
  font-weight: 800;
}

.footer-brand small {
  color: var(--gray-700);
}

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

.footer-links a,
.footer-contact a {
  color: var(--gray-700);
}

.footer-contact a {
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  background: #147a42;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 122, 66, 0.25);
}

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  margin-top: 36px;
  font-size: 28px;
}

.form-privacy {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
}

.form-privacy a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
    padding: 78px 0 42px;
  }

  .hero-visual {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto 42px;
    padding: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
  }

  .hero-image {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .card-grid,
  .media-grid,
  .business-strip,
  .product-grid,
  .stats,
  .resource-row,
  .capability-strip,
  .application-grid,
  .feature-grid,
  .shape-grid,
  .inquiry-grid,
  .resource-grid,
  .business-entry-grid,
  .product-line-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .business-strip {
    margin-top: 0;
    box-shadow: none;
  }

  .business-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .business-strip article:last-child {
    border-bottom: 0;
  }

  .section,
  .split-section,
  .product-lines,
  .resources-band {
    padding: 78px 0;
  }

  .product-lines,
  .resources-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-section {
    gap: 30px;
    padding: 34px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

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

@media (max-width: 620px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 76px;
  }

  .brand-text small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    font-size: 13px;
  }

  .nav a {
    padding: 7px 9px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-small);
    white-space: nowrap;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 58px 0 28px;
  }

  .hero-visual {
    width: calc(100% - 32px);
    margin-bottom: 34px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .page-hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 62px 0;
  }

  h1 {
    font-size: 50px;
  }

  .page-hero-subtitle {
    font-size: 17px;
  }

  .section,
  .split-section,
  .contact-section {
    width: calc(100% - 28px);
  }

  .card {
    padding: 24px;
  }

  .product-card,
  .business-entry,
  .product-line-card,
  .resource-card {
    padding: 24px;
  }

  .application-grid article {
    min-height: 92px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .fluent-form-shell #fluentform_1 fieldset {
    grid-template-columns: 1fr;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 112px;
  }
}
