/* ============================================================
   SAZA PERU - global.css (base compartida en TODAS las plantillas)
   Extracto VERBATIM del style.css original (sin reescritura).
   ============================================================ */

/* ========================================
   SAZA PERU - Static Theme CSS
   Based on Shopify Dawn Theme
   ======================================== */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700;900&display=swap');

/* === CSS Variables / Design Tokens === */
:root {
  --font-body-family: 'Lato', sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: 'Lato', sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 700;
  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;

  --page-width: 1200px;
  --page-width-margin: 2rem;

  --color-base-background: 248, 248, 239;
  --color-base-text: 45, 45, 45;
  --color-base-accent: 130, 113, 64;
  --color-base-accent-dark: 74, 53, 37;
  --color-base-button: 130, 113, 64;
  --color-base-button-text: 255, 255, 255;
  --color-base-border: 232, 226, 213;

  --color-announcement-bg: #dcd4ac;
  --color-announcement-text: #827140;

  --color-header-bg: #F8F8EF;
  --color-header-text: #2D2D2D;
  --color-footer-bg: #F5EFE6;
  --color-footer-text: #2D2D2D;

  --color-section-alt: #F8F8EF;
  --color-section-accent: #F5EFE6;

  --color-button: rgb(var(--color-base-button));
  --color-button-text: rgb(var(--color-base-button-text));

  --buttons-radius: 0px;
  --buttons-border-width: 1px;
  --buttons-border-opacity: 1.0;
  --buttons-shadow-opacity: 0;

  --card-corner-radius: 0px;
  --card-border-width: 0px;

  --media-radius: 0px;

  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;
  --grid-desktop-vertical-spacing: 36px;
  --grid-desktop-horizontal-spacing: 36px;
  --grid-mobile-vertical-spacing: 18px;
  --grid-mobile-horizontal-spacing: 18px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  font-weight: var(--font-body-weight);
  line-height: 1.6;
  letter-spacing: 0.06rem;
  color: rgb(var(--color-base-text));
  background-color: rgb(var(--color-base-background));
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 750px) {
  body { font-size: 1.6rem; }
}

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

a {
  color: rgb(var(--color-base-accent));
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: rgb(var(--color-base-accent-dark)); }

ul { list-style: none; padding: 0; margin: 0; }

/* === Utilities === */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 1rem 2rem;
  background: rgb(var(--color-base-button));
  color: rgb(var(--color-base-button-text));
  z-index: 9999;
  font-size: 1.4rem;
  text-decoration: none;
}

.skip-to-content-link:focus {
  transform: translateX(-50%) translateY(0);
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.variation{
  font-size: 10px;
}
@media screen and (min-width: 750px) {
  .page-width { padding: 0 3rem; }
}

.section-padding {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-padding-sm {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* === Buttons === */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-decoration: none;
  cursor: pointer;
  border: var(--buttons-border-width) solid rgb(var(--color-base-button));
  border-radius: var(--buttons-radius);
  background-color: rgb(var(--color-base-button));
  color: rgb(var(--color-base-button-text));
  transition: all 0.3s ease;
  min-width: 14rem;
}

.button:hover {
  background-color: rgb(var(--color-base-accent-dark));
  border-color: rgb(var(--color-base-accent-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.button--secondary {
  background-color: transparent;
  color: rgb(var(--color-base-button));
  border: var(--buttons-border-width) solid rgb(var(--color-base-button));
}

.button--secondary:hover {
  background-color: rgb(var(--color-base-button));
  color: #fff;
}

.button--small {
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  min-width: auto;
}

/* === Announcement Bar === */
.announcement-bar {
  background-color: var(--color-announcement-bg);
  color: var(--color-announcement-text);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  border-bottom: 1px solid rgba(130, 113, 64, 0.2);
}

.announcement-bar a {
  color: var(--color-announcement-text);
  text-decoration: underline;
  font-weight: 700;
}

.announcement-bar a:hover { color: rgb(var(--color-base-accent-dark)); }

/* === Header === */
.header-wrapper {
  background-color: var(--color-header-bg);
  border-bottom: 1px solid rgb(var(--color-base-border));
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 990px) {
  .header {
    gap: 2rem;
    /* En desktop el botón hamburguesa se oculta. Usamos 2 columnas para que
       el logo quede alineado con el resto del contenido y no lo empuje el
       hueco (columna vacía + gap) que dejaba la columna del hamburguesa. */
    grid-template-columns: 1fr auto;
  }
  /* Mayor especificidad (.header > …) para ganar a las reglas base
     .header__left{grid-column:2} / .header__icons{grid-column:3} que
     aparecen más abajo en el archivo. */
  .header > .header__left { grid-column: 1; }
  .header > .header__icons { grid-column: 2; }
}

/* Left group: logo + nav live together so they never fight the icons
   for the same grid track (this was the cause of the overlap bug). */
.header__left {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9rem;
  min-width: 0;
}

@media screen and (min-width: 990px) {
  .header__left {
    justify-content: flex-start;
  }
}

.header__heading-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__heading-logo {
  height: auto;
  width: 150px;
  max-width: 150px;
}

@media screen and (max-width: 989px) {
  .header__heading-logo { width: 120px; max-width: 120px; }
}

/* Nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

@media screen and (min-width: 990px) {
  .header__nav { display: flex; }
}

.header__nav .nav__item {
  position: relative;
}

.header__nav .nav__link {
  display: block;
  padding: 1rem 1.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-header-text);
  letter-spacing: 0.05rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav .nav__link:hover,
.header__nav .nav__link.is-active {
  color: rgb(var(--color-base-accent));
}

.header__nav .nav__link--dropdown::after {
  content: '▾';
  margin-left: 0.4rem;
  font-size: 1rem;
}

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgb(var(--color-base-border));
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  padding: 0.8rem 0;
}

.nav__dropdown .nav__dropdown-link {
  display: block;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  color: var(--color-header-text);
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav__dropdown .nav__dropdown-link:hover {
  background: rgb(var(--color-base-accent));
  color: #fff;
}

.nav__item:hover .nav__dropdown { display: block; }

/* Header Icons */
.header__icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: end;
  grid-column: 3;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--color-header-text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.header__icon:hover { color: rgb(var(--color-base-accent)); }

.header__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.cart-count-bubble {
  position: absolute;
  top: -10px;
  right: -12px;
  background: rgb(var(--color-base-accent));
  color: #fff;
  border-radius: 50%;
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

/* Hamburger / Mobile menu */
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: var(--color-header-text);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header__hamburger svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

.header__hamburger:hover,
.header__hamburger:focus-visible {
  color: rgb(var(--color-base-accent));
  background-color: rgba(130, 113, 64, 0.08);
}

@media screen and (max-width: 989px) {
  .header__hamburger { display: inline-flex; }
}

/* Mobile nav drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav-drawer {
  position: fixed;
  top: 0; left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 151;
  padding: 2rem;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.mobile-nav-drawer.active { left: 0; }

.mobile-nav-drawer .mobile-nav__close {
  display: block;
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  margin-bottom: 2rem;
  margin-left: auto;
  color: var(--color-header-text);
}

.mobile-nav-drawer .mobile-nav__link {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-header-text);
  text-decoration: none;
  border-bottom: 1px solid rgb(var(--color-base-border));
}

.mobile-nav-drawer .mobile-nav__sub {
  padding-left: 1.5rem;
}

.mobile-nav-drawer .mobile-nav__sub .mobile-nav__link {
  font-size: 1.4rem;
  font-weight: 400;
}

/* === Search Modal === */
.search-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.search-modal.active { display: flex; }

.search-modal__content {
  background: #fff;
  width: 100%;
  max-width: 700px;
  padding: 3rem;
  position: relative;
}

.search-modal__input {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-family: var(--font-body-family);
  border: 1px solid rgb(var(--color-base-border));
  border-radius: 0;
  outline: none;
}

.search-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-header-text);
}

/* === Product Cards === */
.product-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card__info {
  padding: 1.5rem;
  text-align: left;
}

.product-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(var(--color-base-text));
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent));
}

/* === Contact Form === */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}

.form__group {
  margin-bottom: 2rem;
}

.form__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-base-accent-dark));
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.5rem;
  font-family: var(--font-body-family);
  border: 1px solid rgb(var(--color-base-border));
  border-radius: 0;
  background: #fff;
  color: rgb(var(--color-base-text));
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: rgb(var(--color-base-accent));
  outline: none;
}

.form__textarea { min-height: 150px; resize: vertical; }

.form__error {
  color: #c0392b;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  display: none;
}

.form__group--error .form__error { display: block; }
.form__group--error .form__input,
.form__group--error .form__textarea { border-color: #c0392b; }

.form__success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 2rem;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* === Page Layout === */
.page-section {
  padding: 4rem 0;
}

.page-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-section__header h1 {
  font-size: 4.2rem;
  font-weight: 500;
  color: #837046;
}

@media screen and (max-width: 750px) {
  .page-section__header h1 { font-size: 2.8rem; }
}

.page-section__header p {
  font-size: 1.6rem;
  color: rgba(var(--color-base-text), 0.75);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* === Footer === */
.footer {
  background: var(--color-footer-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgb(var(--color-base-border));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr;
  gap: 4rem;
}

@media screen and (max-width: 750px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer__brand img {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer__brand p {
  font-size: 1.4rem;
  color: rgba(var(--color-base-text), 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgb(var(--color-base-border));
  border-radius: 50%;
  color: rgb(var(--color-base-accent));
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.footer__column h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-dark));
  margin-bottom: 1.5rem;
}

.footer__column ul li {
  margin-bottom: 0.8rem;
}

.footer__column ul li a {
  font-size: 1.4rem;
  color: rgba(var(--color-base-text), 0.75);
  transition: color 0.2s ease;
}

.footer__column ul li a:hover {
  color: rgb(var(--color-base-accent));
}

.footer__reclamaciones img {
  width: 150px;
  height: auto;
  margin-top: 1.5rem;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(var(--color-base-border));
  text-align: center;
  font-size: 1.3rem;
  color: rgba(var(--color-base-text), 0.6);
}

.footer__bottom a {
  color: rgb(var(--color-base-accent));
}

/* === Cart Drawer === */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
}

.cart-drawer-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -450px;
  width: 450px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}

.cart-drawer.active { right: 0; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgb(var(--color-base-border));
}

.cart-drawer__header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-dark));
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-header-text);
}

.cart-drawer__items {
  flex: 1;
  display: flex;
  overflow: hidden;
  padding: 0;
}

/* El contenido del mini-cart llena el alto: la lista scrollea y el
   total + botones quedan fijos al fondo del drawer. */
.cart-drawer__items .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.widget_shopping_cart_content .woocommerce-mini-cart.cart_list {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  margin: 0;
  padding: 1.5rem 2rem;
  list-style: none;
}

.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
  padding: 5rem 2rem;
  text-align: center;
  font-size: 1.5rem;
  color: rgba(var(--color-base-text), 0.6);
}

/* Cada línea: título arriba, miniatura + precio/cantidad debajo */
.woocommerce-mini-cart-item {
  position: relative;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgb(var(--color-base-border));
}

.mini-cart-item__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-dark));
  margin-bottom: 1rem;
  line-height: 1.4;
}

a.mini-cart-item__title:hover { color: rgb(var(--color-base-accent)); }

.mini-cart-item__row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.mini-cart-item__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: block;
}

.mini-cart-item__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  margin: 0;
}

.mini-cart-item__meta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 1rem;
}

.mini-cart-item__meta .quantity {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-base-accent));
}

.mini-cart-item__meta .remove_from_cart_button {
  font-size: 1.8rem;
  line-height: 1;
  color: #c0392b !important;
  text-decoration: none;
}

/* Total fijo */
.widget_shopping_cart_content .woocommerce-mini-cart__total {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgb(var(--color-base-border));
  font-size: 1.6rem;
  color: rgb(var(--color-base-accent-dark));
}

.widget_shopping_cart_content .woocommerce-mini-cart__total strong { font-weight: 700; }
.widget_shopping_cart_content .woocommerce-mini-cart__total .amount { font-weight: 700; }

/* Botones al fondo (bottom 0) */
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0 2rem 2rem;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
  width: 100%;
  margin: 0;
}

/* El botón "Finalizar compra" como principal, "Ver carrito" secundario */
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout) {
  background-color: transparent;
  color: rgb(var(--color-base-button));
  border: 1px solid rgb(var(--color-base-button));
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  background-color: rgb(var(--color-base-button));
  color: #fff;
}

.cart-drawer__empty {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.5rem;
  color: rgba(var(--color-base-text), 0.6);
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgb(var(--color-base-border));
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
}

.cart-item__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-base-text));
  margin-bottom: 0.3rem;
}

.cart-item__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent));
}

.cart-item__remove {
  font-size: 1.2rem;
  color: #c0392b;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  margin-top: 0.5rem;
}

.cart-drawer__footer {
  padding: 2rem;
  border-top: 1px solid rgb(var(--color-base-border));
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-dark));
  margin-bottom: 1.5rem;
}

.cart-drawer__footer .button {
  width: 100%;
}
/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: #fff;
}

/* === Horizontal rule section divider === */
.section-divider {
  border: none;
  height: 1px;
  background: rgb(var(--color-base-border));
  margin: 0;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Vertical Lift Hover === */
.hover-vertical-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-vertical-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* === Placeholder Image === */
.placeholder-img {
  background: var(--color-section-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-base-accent));
  font-size: 1.4rem;
  text-align: center;
  padding: 2rem;
  aspect-ratio: 1;
  width: 100%;
}

/* === Desktop/Mobile visibility helpers === */
.hide-mobile { display: block; }
.show-mobile { display: none; }

@media screen and (max-width: 750px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* === Instagram icon SVG (inline) === */
.icon-instagram { fill: currentColor; }

/* === Hero slide overlay === */
.slideshow__slide::after {
  display: none;
}
