:root {
  --ink: #1f2a24;
  --forest: #2e623f;
  --forest-deep: #153b27;
  --forest-soft: #58785e;
  --brand-red: #ca302f;
  --cream: #fff4cf;
  --cream-soft: #fffaf0;
  --sage: #e9f2e8;
  --gold: #f4c225;
  --line: #dbe5d9;
  --white: #ffffff;
  --muted: #5e685f;
  --shadow: 0 20px 60px rgba(31, 67, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

[hidden] {
  display: none !important;
}

[data-vetiagro-legacy-hidden] {
  display: none !important;
}

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

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
}

.site-chrome-sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}

.topbar {
  position: relative;
  z-index: 30;
  background: var(--forest-deep);
  border-bottom: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  margin-left: 14px;
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 25;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(40, 95, 67, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
}

.brand-logo,
.footer-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

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

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
}

.wordmark-name {
  color: var(--forest);
  font-size: 1.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.wordmark-subtitle {
  margin-top: 5px;
  color: var(--forest-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 0.91rem;
  font-weight: 650;
}

.desktop-nav > a,
.nav-products > a {
  position: relative;
  padding: 30px 0 28px;
  cursor: pointer;
}

.desktop-nav > a::before,
.nav-products > a::before {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::before,
.desktop-nav > a.active::before,
.nav-products.active > a::before,
.nav-products:hover > a::before,
.nav-products:focus-within > a::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-products {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.nav-products-arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--forest);
  font-size: 0.78rem;
  transition: transform 180ms ease;
}

.nav-products:hover .nav-products-arrow,
.nav-products:focus-within .nav-products-arrow {
  transform: rotate(180deg);
}

.nav-products-menu {
  position: absolute;
  z-index: 45;
  top: calc(100% - 10px);
  left: 50%;
  display: grid;
  width: 260px;
  gap: 6px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 170ms ease,
    visibility 170ms ease,
    transform 170ms ease;
}

.nav-products:hover .nav-products-menu,
.nav-products:focus-within .nav-products-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-products-menu a {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--forest-deep);
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nav-products-menu a:hover,
.nav-products-menu a:focus-visible {
  color: var(--forest);
  background: var(--sage);
  transform: translateX(3px);
}

.nav-products-menu a > span {
  color: var(--brand-red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  min-height: 45px;
  padding: 0 19px;
  border: 1px solid var(--brand-red);
  border-radius: 10px;
  color: var(--brand-red);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-contact:hover {
  color: var(--white);
  background: var(--brand-red);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffcf3 66%, #fff8e4 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  right: 6%;
  width: 580px;
  height: 580px;
  background: rgba(244, 194, 37, 0.15);
  filter: blur(2px);
}

.hero-glow-two {
  right: -120px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  background: rgba(234, 241, 232, 0.78);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding: 16px 0 24px;
  animation: rise-in 640ms ease both;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--brand-red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: #111b16;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 600px;
  font-size: clamp(3.55rem, 5.1vw, 5.25rem);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--forest);
  font-weight: inherit;
}

.hero-lede {
  max-width: 570px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow:
    0 10px 30px rgba(40, 95, 67, 0.18),
    inset 0 -3px 0 rgba(244, 194, 37, 0.62);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 15px 35px rgba(40, 95, 67, 0.23);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.anniversary {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: var(--forest-soft);
}

.anniversary > span {
  width: 64px;
  height: 2px;
  background: var(--gold);
}

.anniversary strong {
  font-size: 0.93rem;
}

.anniversary small {
  color: #899186;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  animation: soft-in 780ms 80ms ease both;
}

.mascot-stage {
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(46, 98, 63, 0.13);
  border-radius: 38px 112px 38px 112px;
  background:
    radial-gradient(circle at 75% 34%, rgba(244, 194, 37, 0.3), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f8f4df 50%, #e8f2e7 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.mascot-stage::before {
  position: absolute;
  z-index: -1;
  top: 38px;
  right: -64px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(202, 48, 47, 0.14);
  border-radius: 50%;
  content: "";
}

.mascot-stage::after {
  position: absolute;
  z-index: -1;
  right: 68px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  content: "";
  background: rgba(46, 98, 63, 0.1);
}

.mascot-orbit {
  position: absolute;
  z-index: 0;
  border: 1px dashed rgba(46, 98, 63, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.mascot-orbit-one {
  top: 86px;
  right: 55px;
  width: 330px;
  height: 330px;
}

.mascot-orbit-two {
  right: 116px;
  bottom: 46px;
  width: 170px;
  height: 170px;
}

.veti-mascot {
  position: absolute;
  z-index: 2;
  bottom: -1%;
  left: -5%;
  display: block;
  width: auto;
  max-width: none;
  height: 102%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(26, 64, 41, 0.16));
  pointer-events: none;
  transform-origin: 50% 82%;
}

.veti-mascot-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.veti-mascot-base {
  z-index: 1;
}


.veti-mascot-blink {
  z-index: 3;
  opacity: 0;
  transition: opacity 42ms linear;
  will-change: opacity;
}

.veti-animated-mascot.is-visible {
  animation: veti-idle-float 5.8s ease-in-out infinite;
}


.veti-animated-mascot.is-blinking .veti-mascot-blink {
  opacity: 1;
}


@keyframes veti-idle-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -5px, 0) rotate(0.35deg); }
}

@media (prefers-reduced-motion: reduce) {
  .veti-animated-mascot.is-visible {
    animation: none !important;
  }

  .veti-mascot-blink {
    display: none;
  }
}

.veti-intro {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 28px;
  width: 205px;
  padding: 17px 18px;
  border: 1px solid rgba(46, 98, 63, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(28, 67, 43, 0.1);
  backdrop-filter: blur(12px);
}

.veti-intro span {
  display: block;
  color: var(--brand-red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.veti-intro strong {
  display: block;
  margin: 2px 0 5px;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.veti-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.hero-image-frame {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 104px 26px 104px 26px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(20, 44, 30, 0) 58%,
    rgba(20, 44, 30, 0.2) 100%
  );
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  animation: ambient-zoom 12s ease-in-out infinite alternate;
}

.hero-badge {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--forest-deep);
  background: #fff4c5;
  box-shadow: 0 12px 35px rgba(23, 59, 42, 0.16);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-badge span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin: -3px 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.trust-strip {
  color: var(--white);
  background: var(--forest-deep);
  border-top: 4px solid var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  align-items: stretch;
}

.trust-grid > div {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 18px;
  padding: 30px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-intro {
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 7px !important;
}

.trust-intro span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
}

.trust-intro p,
.trust-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.81rem;
  line-height: 1.55;
}

.trust-feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.trust-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(216, 185, 78, 0.55);
  border-radius: 50%;
  color: var(--gold);
}

.section {
  padding: 88px 0;
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.55rem, 4.4vw, 4.45rem);
  line-height: 1.06;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 100px;
}

.about-copy {
  padding-top: 36px;
}

.about-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-copy .text-link {
  margin-top: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid article {
  min-height: 175px;
  padding: 35px 40px;
  border-right: 1px solid var(--line);
}

.stats-grid article:first-child {
  padding-left: 0;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid article > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.stats-grid strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.stats-grid span {
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.products {
  background: var(--cream-soft);
  scroll-margin-top: 98px;
}

.products-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
  gap: 80px;
}

.products-copy {
  display: grid;
  gap: 14px;
  max-width: 420px;
  padding-top: 36px;
}

.products-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.product-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-assurances article {
  display: grid;
  min-height: 138px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.product-assurances article:first-child {
  padding-left: 0;
}

.product-assurances article:last-child {
  border-right: 0;
}

.product-assurances span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(46, 98, 63, 0.2);
  border-radius: 50%;
  color: var(--brand-red);
  background: var(--white);
  font-size: 0.65rem;
  font-weight: 850;
}

.product-assurances strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest-deep);
  font-size: 0.92rem;
}

.product-assurances p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 52px;
}

.category-heading .eyebrow {
  margin: 0;
}

.category-heading h3 {
  max-width: 520px;
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
}

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

.product-card {
  position: relative;
  cursor: default;
  scroll-margin-top: 126px;
  min-height: 440px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition:
    border 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  content: "";
  background: var(--gold);
}

.product-card:nth-child(even)::before {
  background: var(--brand-red);
}

.product-card:hover {
  border-color: #aac5ae;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-top > span {
  color: var(--forest-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.product-card-top a {
  display: grid;
  cursor: pointer;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-card-top a:hover {
  color: var(--white);
  background: var(--forest);
  transform: rotate(8deg);
}

.product-card h3 {
  margin: 66px 0 18px;
  color: var(--forest-deep);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.product-card > p {
  min-height: 80px;
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536158;
  font-size: 0.8rem;
}

.product-card li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}


.catalog-main-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.catalog-main-cta .button {
  min-width: min(100%, 280px);
}

.promotions {
  scroll-margin-top: 98px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 194, 37, 0.13), transparent 25%),
    var(--white);
}

.promotions-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.promotions-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  margin-top: 40px;
}

.promotion-featured {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 58px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 194, 37, 0.23), transparent 29%),
    linear-gradient(135deg, var(--forest), var(--forest-deep));
}

.promotion-featured::after {
  position: absolute;
  right: -75px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.promotion-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(244, 194, 37, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.promotion-featured h3 {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 31px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.promotion-featured p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.promotion-featured .button {
  position: relative;
  z-index: 1;
}

.promotion-benefits {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream-soft);
}

.promotion-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}

.promotion-benefits article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-red);
  background: var(--white);
  font-size: 0.66rem;
  font-weight: 850;
}

.promotion-benefits strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-size: 0.92rem;
}

.promotion-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.promotion-whatsapp {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  color: var(--white);
  background: var(--brand-red);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    filter 180ms ease,
    padding 180ms ease;
}

.promotion-whatsapp:hover {
  padding-right: 24px;
  filter: brightness(1.06);
}

.promotion-note {
  margin: 17px 0 0;
  color: #7b867d;
  font-size: 0.7rem;
  line-height: 1.5;
}

.delivery {
  padding-bottom: 0;
  background: var(--white);
}

.delivery-card {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 100px;
  overflow: hidden;
  padding: 74px 90px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 28%, rgba(216, 185, 78, 0.2), transparent 31%),
    linear-gradient(135deg, #214f38, #173b2a);
}

.delivery-card::before {
  position: absolute;
  top: -130px;
  right: 160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.delivery-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.delivery-copy .eyebrow {
  color: var(--gold);
}

.delivery-copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4.4vw, 4.4rem);
  line-height: 1.04;
}

.delivery-copy h2 em {
  color: #f6e8ae;
}

.delivery-copy > p {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.delivery-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 33px;
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.delivery-channel {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.delivery-seal {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid rgba(216, 185, 78, 0.55);
  border-radius: 50%;
  text-align: center;
}

.delivery-seal::after {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  content: "";
}

.delivery-seal span,
.delivery-seal small {
  position: relative;
  z-index: 2;
  color: #f6e8ae;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.delivery-seal strong {
  position: relative;
  z-index: 2;
  margin: 4px 0;
  font-family: Georgia, serif;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 130px;
}

.contact-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.contact-heading h2 {
  max-width: 540px;
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  line-height: 1.02;
}

.contact-heading > p {
  max-width: 490px;
  margin: 26px 0 31px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details article > span {
  color: var(--forest-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.contact-details small {
  display: block;
  margin-bottom: 13px;
  color: var(--forest);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0 0 11px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.75;
}

.contact-details article a:not(.contact-value) {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-value {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

footer {
  color: var(--white);
  background: #102b1e;
  border-top: 5px solid var(--brand-red);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  align-items: center;
  gap: 55px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer-logo {
  padding: 8px;
  border-radius: 12px;
  background: var(--white);
}

.footer-logo img {
  display: block;
  width: 210px;
  height: auto;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.social-icon svg {
  width: 14px;
  height: 14px;
}

.social-links a:hover .social-icon.facebook {
  border-color: #1877f2;
  background: #1877f2;
}

.social-links a:hover .social-icon.instagram {
  border-color: #e1306c;
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737);
}

.social-links a:hover .social-icon.tiktok {
  border-color: rgba(255, 255, 255, 0.48);
  background: #111111;
}

.social-arrow {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.veti-bot {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
}

.veti-bot-launcher {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 11px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 38px rgba(18, 78, 47, 0.32);
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.veti-bot-launcher:hover {
  box-shadow: 0 16px 40px rgba(18, 78, 47, 0.38);
  transform: translateY(-3px);
}

.veti-bot-avatar {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(244, 194, 37, 0.72);
  border-radius: 50%;
  background: #fff9e8;
}

.veti-bot-avatar img {
  position: absolute;
  bottom: -4%;
  left: -42%;
  width: auto;
  max-width: none;
  height: 116%;
}

.veti-bot-launcher-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.veti-bot-launcher-copy strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.veti-bot-launcher-copy small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
}

.veti-bot-panel {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: flex;
  width: min(382px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(46, 98, 63, 0.18);
  border-radius: 22px;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(18, 55, 35, 0.24);
  animation: bot-pop 220ms ease both;
}

.veti-bot-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 194, 37, 0.25), transparent 38%),
    var(--forest-deep);
}

.veti-bot-header .veti-bot-avatar {
  width: 49px;
  height: 49px;
}

.veti-bot-header strong {
  display: block;
  font-size: 0.95rem;
}

.veti-bot-header small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
}

.veti-bot-header small span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69d391;
  box-shadow: 0 0 0 3px rgba(105, 211, 145, 0.15);
}

.veti-bot-header > button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.veti-bot-body {
  overflow-y: auto;
  padding: 17px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)),
    radial-gradient(circle at 100% 0%, var(--cream), transparent 48%);
}

.veti-message {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 11px;
  padding: 11px 13px;
  border-radius: 15px;
  font-size: 0.8rem;
  line-height: 1.52;
}

.veti-message p {
  margin: 0;
}

.veti-message-bot {
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  color: #435148;
  background: var(--white);
}

.veti-message-user {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  color: var(--white);
  background: var(--forest);
}

.veti-message > a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--white);
  background: var(--brand-red);
  font-size: 0.73rem;
  font-weight: 800;
}

.veti-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 11px;
}

.veti-social-link {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.veti-social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.veti-social-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.veti-social-link.facebook {
  background: #1877f2;
}

.veti-social-link.instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737);
}

.veti-social-link.tiktok {
  background: #111111;
}

.veti-social-link.whatsapp {
  background: #1f9e55;
}

.veti-options-label {
  margin: 17px 0 10px;
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.veti-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.veti-options button {
  min-height: 43px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--forest-deep);
  background: var(--white);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
  transition:
    border 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.veti-options button:hover,
.veti-options button.is-selected {
  border-color: rgba(46, 98, 63, 0.34);
  color: var(--forest);
  background: var(--sage);
}

.veti-bot-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  color: #7b867d;
  background: var(--cream-soft);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  text-align: center;
}

@keyframes bot-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-in {
  from {
    opacity: 0;
    transform: scale(0.99);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ambient-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 48px, 960px);
  }

  .desktop-nav {
    gap: 24px;
  }

  .header-inner {
    gap: 24px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
  }

  .mascot-stage {
    min-height: 500px;
  }

  .veti-mascot {
    left: -32%;
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 470px;
  }

  .trust-grid > div {
    padding-right: 25px;
    padding-left: 25px;
  }

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

  .product-assurances article {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-assurances article:first-child {
    padding-left: 0;
  }

  .product-card {
    min-height: 380px;
  }

  .product-card h3 {
    margin-top: 45px;
  }

  .promotions-heading {
    gap: 50px;
  }

  .promotion-featured {
    padding: 48px;
  }

  .delivery-card {
    padding: 64px;
  }

  .contact-grid {
    gap: 80px;
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar a {
    margin-left: 8px;
  }

  .header-inner {
    min-height: 88px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo img {
    width: 165px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu > summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu > summary span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--forest);
  }

  .mobile-menu nav {
    position: absolute;
    top: 53px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 48px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 13px 14px;
    border-radius: 9px;
    color: var(--forest-deep);
    font-weight: 700;
  }

  .mobile-menu nav a:hover {
    background: var(--sage);
  }

  .mobile-menu nav a.active {
    color: var(--forest);
    background: var(--sage);
  }

  .hero-grid,
  .about-grid,
  .products-heading,
  .promotions-heading,
  .promotions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .mascot-stage {
    min-height: 540px;
  }

  .veti-mascot {
    left: 1%;
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 510px;
  }

  .hero-image-frame {
    border-radius: 70px 22px 70px 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 100px;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .products-heading {
    gap: 26px;
  }

  .products-copy {
    max-width: 650px;
    padding-top: 0;
  }

  .product-assurances {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .product-assurances article,
  .product-assurances article:first-child {
    min-height: 110px;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-assurances article:last-child {
    border-bottom: 0;
  }

  .category-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 42px;
  }

  .category-heading h3 {
    text-align: left;
  }

  .promotions-heading {
    align-items: start;
    gap: 24px;
  }

  .promotions-heading > p {
    max-width: 650px;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .stats-grid article,
  .stats-grid article:first-child {
    min-height: 128px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .delivery-card {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .delivery-seal {
    width: 150px;
    height: 150px;
  }

  .contact-heading {
    position: static;
  }

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

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 32px, 520px);
  }

  .topbar {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .topbar-inner {
    gap: 7px;
  }

  .topbar a {
    display: none;
  }

  .brand-logo img {
    width: 138px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 14px;
  }

  .hero-grid {
    gap: 30px;
  }

  .anniversary {
    margin-top: 26px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-actions,
  .delivery-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 400px;
  }

  .mascot-stage {
    min-height: 345px;
    border-radius: 24px 48px 24px 48px;
  }

  /* Composición móvil: Veti se mantiene completamente visible, pero
     separada de la tarjeta para que el texto nunca tape su rostro. */
  .veti-mascot {
    bottom: 4%;
    left: 2%;
    height: 80%;
  }

  .veti-intro {
    top: 14px;
    left: 14px;
    width: 124px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .veti-intro span {
    font-size: 0.58rem;
  }

  .veti-intro strong {
    font-size: 1.34rem;
  }

  .veti-intro p {
    font-size: 0.59rem;
    line-height: 1.34;
  }

  .mascot-orbit-one {
    top: 46px;
    right: -28px;
    width: 230px;
    height: 230px;
  }

  .mascot-orbit-two {
    right: 34px;
    bottom: 22px;
    width: 116px;
    height: 116px;
  }

  .hero-image-frame img {
    object-position: 56% center;
  }

  .hero-badge {
    right: 10px;
    bottom: 8px;
    width: 78px;
    height: 78px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .contact-heading h2,
  .delivery-copy h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .stats-grid {
    margin-top: 42px;
  }

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

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

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

  .promotion-featured {
    min-height: auto;
    padding: 42px 24px;
    border-radius: 20px;
  }

  .promotion-featured h3 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .promotion-benefits {
    border-radius: 20px;
  }

  .promotion-benefits article,
  .promotion-whatsapp {
    padding-right: 20px;
    padding-left: 20px;
  }

  .delivery {
    padding-bottom: 0;
  }

  .delivery-card {
    width: 100%;
    padding: 58px 24px;
    border-radius: 0;
  }

  .contact-details article {
    grid-template-columns: 35px 1fr;
  }

  .contact-value {
    font-size: 1.1rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 24px 0;
  }

  .footer-bottom a {
    margin: 8px 0 0;
  }

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

  .veti-bot {
    right: 14px;
    bottom: 14px;
  }

  .veti-bot-launcher-copy {
    display: none;
  }

  .veti-bot-launcher {
    min-height: 64px;
    padding: 6px;
  }

  .veti-bot-launcher .veti-bot-avatar {
    width: 52px;
    height: 52px;
  }

  .veti-bot-panel {
    bottom: 76px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 104px);
    border-radius: 18px;
  }

  .veti-options {
    gap: 7px;
  }
}

@media (max-width: 380px) {
  .mascot-stage {
    min-height: 325px;
  }

  .veti-mascot {
    left: 10%;
    height: 82%;
  }

  .veti-intro {
    width: 118px;
    padding: 9px 10px;
  }

  .hero-badge {
    width: 74px;
    height: 74px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-chrome-sticky {
    top: 46px;
  }
}

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

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

/* Redes sociales destacadas dentro de Promociones */
.promotion-socials {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.promotion-social {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 2px solid rgba(244, 194, 37, 0.78);
  border-radius: 13px;
  color: var(--forest-deep);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promotion-social:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.promotion-social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: rgba(27, 78, 54, 0.08);
  transition: color 180ms ease, background 180ms ease;
}

.promotion-social-icon svg {
  width: 14px;
  height: 14px;
}

.promotion-social.facebook:hover .promotion-social-icon {
  color: #fff;
  background: #1877f2;
}

.promotion-social.instagram:hover .promotion-social-icon {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737);
}

.promotion-social.tiktok:hover .promotion-social-icon {
  color: #fff;
  background: #111;
}

.promotion-channel {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
  font-weight: 750;
  transition: color 180ms ease, border-color 180ms ease;
}

.promotion-channel:hover {
  color: var(--white);
  border-color: var(--gold);
}

@media (max-width: 560px) {
  .promotion-socials {
    display: grid;
    grid-template-columns: 1fr;
  }

  .promotion-social {
    width: 100%;
    justify-content: space-between;
  }

  .promotion-social-icon + span {
    margin-right: auto;
  }
}
