/* ============================================
   CASAMAX CHILE — Porta-Talheres Landing Page
   Design System & Styles
   ============================================ */

/* === CSS RESET & VARIABLES === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors — Zenlyne */
  --orange-500: #8b5e3c;
  --orange-600: #7a5033;
  --orange-700: #68452c;
  --orange-100: #f0e7df;
  --orange-50: #fafafa;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #fbfbfc;
  --gray-100: #f5f6f8;
  --gray-200: #e5e8ef;
  --gray-300: #d7dbe3;
  --gray-400: #c6ccda;
  --gray-500: #9aa1b0;
  --gray-600: #6b7280;
  --gray-700: #4b5563;
  --gray-800: #374151;
  --gray-900: #1c2433;
  --black: #111827;

  /* Accent */
  --green-500: #8b5e3c;
  --green-600: #7a5033;
  --red-500: #e74c3c;
  --gold: #f6c700;
  --beige: #f0e7df;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1100px;
  --section-pad: 64px 0;
  --gap: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* === ICONS === */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.icon-sm svg {
  width: 18px;
  height: 18px;
}

.icon-lg svg {
  width: 28px;
  height: 28px;
}

.icon-xl svg {
  width: 40px;
  height: 40px;
}

/* === TOP BANNER === */
.top-banner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-banner .icon svg {
  fill: var(--white);
}

/* === HEADER === */
.main-header {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

/* === HERO SECTION === */
.hero {
  padding: 40px 0 48px;
  background: var(--white);
}

.feature-grid-desk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-50);
  cursor: zoom-in;
}

.hero-image-wrap .main-image {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.hero-image-wrap:hover .main-image {
  transform: scale(1.03);
}

.badge-offer {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange-500);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-badge 2s infinite;
  z-index: 2;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* === THUMBNAILS === */
.thumb-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.thumb-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}

.thumb-row img:hover,
.thumb-row img.active {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.2);
}

/* === PRODUCT INFO === */
.product-info h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.product-info h1 .brand {
  color: var(--orange-500);
}

.product-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* === PRICE === */
.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 18px;
  color: var(--gray-500);
  text-decoration: line-through;
}

.price-new {
  font-size: 32px;
  font-weight: 900;
  color: var(--orange-500);
}

.price-save {
  background: #f0e7df !important;
  color: #1c2433 !important;
  border: 1px solid #d7dbe3;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* === UVP LIST === */
.uvp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.uvp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.uvp-icon {
  width: 22px;
  height: 22px;
  background: var(--orange-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uvp-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--orange-500);
}

/* === TRUST REVIEWS === */
.trust-reviews-block {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.trust-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stars {
  display: flex;
  gap: 3px;
}

.star-box svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.trust-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
}

.trust-count {
  font-size: 13px;
  color: var(--gray-600);
}

/* === QUANTITY === */
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-50);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
}

.qty-btn:hover {
  background: var(--orange-100);
  color: var(--orange-500);
}

.qty-input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  background: var(--white);
}

/* === SECURE NOTE === */
.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 12px;
}

.secure-note .icon svg {
  fill: #8b5e3c !important;
}

/* === SHIPPING BAR === */
.shipping-bar {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white);
  padding: 18px 0;
  text-align: center;
}

.shipping-bar h3 {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.shipping-bar .icon svg {
  fill: var(--beige);
}

/* === SECTIONS === */
.section {
  padding: var(--section-pad);
}

.section-alt {
  background: var(--gray-50);
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--gray-900);
}

.section-title .hl,
.hl {
  color: #8B7355;
}

/* === FEATURE BLOCKS === */
.feature-block {
  display: contents;
}

.feature-block .feat-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.feature-block .feat-img:hover {
  transform: scale(1.02);
}

.feature-block .feat-img-top {
  margin-bottom: 14px;
  cursor: zoom-in;
}

.feature-block h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.feature-block p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

/* === CHECK LIST === */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.check-list .icon svg {
  fill: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === URGENCY === */
.urgency {
  background: linear-gradient(135deg, #1a1a1a, #2d2926);
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
}

.urgency h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.urgency .hl {
  color: var(--beige);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.urgency .icon svg {
  fill: var(--white);
  width: 32px;
  height: 32px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.cd-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 80px;
  text-align: center;
}

.cd-item .num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.cd-item .lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 4px;
}

/* === CTA BUTTON === */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange-500);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--gray-800);
}

.hero-cta {
  width: 100%;
  background: var(--orange-500);
  color: var(--white);
  text-align: center;
}

.urgency .btn-order {
  background: var(--beige);
  color: var(--black);
}

.urgency .btn-order:hover {
  background: var(--white);
  color: var(--black);
}

/* === SPECS GRID === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.spec-card .icon {
  color: var(--orange-500);
  margin-bottom: 12px;
}

.spec-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.spec-card .val {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
}

/* === REVIEWS === */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
}

.reviews-summary-score {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  flex-shrink: 0;
}

.reviews-summary-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-stars-row {
  display: flex;
  gap: 3px;
  align-items: center;
}

.reviews-stars-row svg {
  width: 20px;
  height: 20px;
}

.reviews-summary-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Reviews Carousel */
.reviews-carousel-outer {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 10px;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  padding: 10px 0;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card::after {
  content: '\201C';
  position: absolute;
  top: 12px; right: 18px;
  font-size: 56px;
  font-weight: 900;
  color: var(--orange-500);
  opacity: 0.10;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-500);
  transform: translateY(-3px);
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.review-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 10px;
  font-style: italic;
}

.review-meta {
  margin-bottom: 14px;
}

.review-date {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.review-verified {
  font-size: 11px;
  color: var(--green-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.review-verified .icon svg {
  width: 12px;
  height: 12px;
  fill: var(--green-500);
}

/* Carousel Arrows */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
}

.reviews-arrow:hover {
  border-color: var(--orange-500);
  color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.reviews-arrow--prev {
  left: 0;
}

.reviews-arrow--next {
  right: 0;
}

/* Reviews Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 4px;
}

.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews-dots .dot.active {
  background: #f5a623;
  width: 24px;
  border-radius: 4px;
}

/* === GIFT/BRINDE SECTION === */
.gift-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  text-align: center;
  overflow: hidden;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.gift-section .gift-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.gift-section .gift-image {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.gift-section .gift-badge {
  display: inline-block;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  animation: pulse-badge 2s infinite;
}

/* === GUARANTEE SECTION === */
.guarantee-section {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.guarantee-section .guarantee-img {
  max-width: 300px;
  margin: 0 auto 20px;
}

.guarantee-section h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.guarantee-section p {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

/* === FOOTER === */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-payments img {
  height: 28px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-payments img:hover {
  opacity: 1;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  padding: 0 14px;
  z-index: 1200;
  pointer-events: none;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.floating-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta-btn {
  width: 100%;
  max-width: 520px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 999px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.floating-cta-btn:hover {
  background: var(--gray-800);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .feature-grid-desk {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-block {
    display: block;
  }

  .reverse {
    direction: ltr;
  }

  .feature-block .feat-img {
    max-width: 100%;
    width: 100%;
  }

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

  .review-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
  }

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

@media (max-width: 600px) {
  .product-info h1 {
    font-size: 22px;
  }

  .price-new {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .urgency h2 {
    font-size: 22px;
    flex-direction: column;
    gap: 8px;
  }

  .countdown {
    gap: 10px;
  }

  .cd-item {
    padding: 10px 14px;
    min-width: 65px;
  }

  .cd-item .num {
    font-size: 24px;
  }

  .btn-order {
    padding: 14px 28px;
    font-size: 15px;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 0;
  }

  .reviews-carousel-outer {
    padding: 0 20px 30px;
    overflow: hidden;
  }
  
  .reviews-carousel-wrapper {
    overflow: hidden;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 0;
  }
  
  .reviews-summary {
    padding: 16px;
    gap: 14px;
  }
  
  .reviews-summary-score {
    font-size: 42px;
  }

  .reviews-arrow {
    display: none;
  }

  .feature-block h2 {
    font-size: 22px;
  }

  .gift-section {
    padding: 40px 0;
    overflow: hidden;
  }

  .gift-section h2 {
    font-size: 22px;
  }

  .gift-section .gift-image {
    max-width: 100%;
    border-radius: 12px;
  }

  .gift-section .gift-badge {
    font-size: 14px;
    padding: 8px 20px;
  }

  .hero-image-wrap .main-image {
    border-radius: 12px;
  }

  .feature-block .feat-img {
    border-radius: 12px;
  }

  .guarantee-section .guarantee-img {
    max-width: 200px;
  }

  .thumb-row img {
    width: 60px;
    height: 60px;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (min-width: 1025px) {
  .floating-cta {
    display: none;
  }
}


/* === TOUCH SCROLLING FOR MOBILE === */
@media (max-width: 600px) {
  .reviews-carousel-wrapper {
    overflow: hidden;
  }

  .reviews-track {
    transition: transform 0.4s ease;
  }
}
