:root{
  --lyf-primary:#6c5ce7;
  --lyf-secondary:#00d4ff;
  --lyf-dark:#0f1020;
  --lyf-light:#f7f8fb;
  --lyf-gradient:linear-gradient(135deg, var(--lyf-primary), var(--lyf-secondary));
}
html,body{background:var(--lyf-light);color:#1b1f28}
/* Falabella style navbar */
.navbar-falabella {
  background-color: var(--lyf-dark);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-falabella .nav-link, 
.navbar-falabella .nav-action-item,
.navbar-falabella .cart-falabella,
.navbar-falabella .btn-menu {
  color: #fff !important;
}

.navbar-falabella .action-label {
  color: rgba(255,255,255,0.7) !important;
}

.navbar-falabella .btn-menu span {
  color: #fff;
}

.navbar-falabella .search-container-falabella .form-control {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.navbar-falabella .search-container-falabella .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.navbar-falabella .search-container-falabella .btn-search {
  color: rgba(255,255,255,0.7);
}
@media (min-width: 992px) {
  .navbar-falabella { padding: 12px 0; }
}

.search-container-falabella {
  position: relative;
}
@media (min-width: 992px) {
  .search-container-falabella {
    max-width: 600px;
    margin: 0 40px;
  }
}

.search-container-falabella .form-control {
  border-radius: 25px;
  padding: 10px 50px 10px 20px;
  border: none;
  height: 40px;
  font-size: 0.9rem;
  background-color: #f5f5f5;
}
@media (min-width: 992px) {
  .search-container-falabella .form-control { 
    height: 45px; 
    font-size: 0.95rem; 
    background-color: #f5f5f5;
    border: 1px solid #ddd;
  }
}

.nav-actions-falabella {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .nav-actions-falabella { gap: 20px; }
}

/* Estilos Offcanvas */
.offcanvas {
  width: 280px !important;
}
.offcanvas .list-group-item {
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
}
.offcanvas .list-group-item:hover, .offcanvas .list-group-item:active {
  background-color: rgba(108, 92, 231, 0.05);
  color: var(--lyf-primary);
}

.search-container-falabella .btn-search {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 1.1rem;
}
.search-container-falabella .btn-search:hover {
  color: var(--lyf-primary);
}


.nav-action-item {
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-action-item .action-label {
  font-size: 0.65rem;
  color: #666;
}
.nav-action-item .action-value {
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 0 !important;
}
@media (min-width: 992px) {
  .nav-action-item .action-label { font-size: 0.75rem; }
  .nav-action-item .action-value { font-size: 0.9rem; }
}

.cart-falabella {
  position: relative;
  color: #333;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .cart-falabella { font-size: 1.6rem; }
}

.cart-falabella .cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #333e48;
  color: white;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 2px;
}

/* Override existing navbar-gradient if used */
.navbar-gradient {
  background: white !important;
  background-image: none !important;
}
.nav-link { color: #333 !important; }
.hero-modern{
  position:relative; overflow:hidden; padding:80px 0; color:#fff;
  background:var(--lyf-gradient);
}
.hero-modern .bg-shape{
  position:absolute; inset:0; background:radial-gradient(1000px 400px at 80% 20%, rgba(255,255,255,.15), transparent);
  pointer-events:none;
}
.glass{
  backdrop-filter:saturate(180%) blur(8px);
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.2);
}
.card-modern{
  border:none; border-radius:16px; box-shadow:0 10px 24px rgba(18, 22, 33, .08);
}
.card-modern:hover{transform:translateY(-2px); transition:transform .2s ease}
.badge-category{background:rgba(0,0,0,.06); border:1px solid rgba(0,0,0,.08)}
.footer-modern{background:var(--lyf-dark); color:#cfd6e6}
.btn-lyf{background:var(--lyf-primary); border:none}
.btn-lyf:hover{background:#5a49d6}
.price{font-weight:700; color:#152238}
.nav-link, .navbar-brand{color:#fff !important}
.cart-badge{position:absolute; top:-6px; right:-6px; background:#ff4757; color:#fff; font-size:.75rem; border-radius:999px; padding:.1rem .4rem}

.cart-badge.pulse {
  animation: badgePulse 0.5s ease-out;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Payment selection styles */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.payment-option {
  cursor: pointer;
  position: relative;
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-card {
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}

.payment-card i, .payment-card img {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #6c5ce7;
}

.payment-card img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.payment-option input:checked + .payment-card {
  border-color: #6c5ce7;
  background-color: rgba(108, 92, 231, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}

.payment-disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.payment-disabled .payment-card {
  background-color: #f8f9fa;
  filter: grayscale(1);
  border-style: dashed;
}

.payment-disabled:hover .payment-card {
  transform: none !important;
  border-color: #eee !important;
  box-shadow: none !important;
}

.delivery-option:hover {
  background-color: #f8f9fa;
  cursor: pointer;
}

.delivery-option input:checked + label {
  color: #6c5ce7;
}

.delivery-option input:checked {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
}

@media print {
  .navbar, .footer-modern, .btn, .toast-container {
    display: none !important;
  }
  .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .card {
    border: none !important;
    shadow: none !important;
  }
  .card-header {
    background-color: #198754 !important;
    color: white !important;
    -webkit-print-color-adjust: exact;
  }
}

/* Compra Aquí Loading Simulation */
#payment-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.be-logo {
  height: 60px;
  margin-bottom: 2rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
img[loading="lazy"]{filter:saturate(1.02)}
.page-content{flex:1 0 auto}
html, body{height:100%}
body{min-height:100vh; display:flex; flex-direction:column}
.footer-modern{margin-top:auto}
.filter-sidebar{
  position:sticky; top:85px; border:1px solid rgba(0,0,0,.08); border-radius:12px; padding:0; background:#fff; box-shadow:0 8px 22px rgba(18,22,33,.06);
  max-height: calc(100vh - 110px); overflow: hidden; display: flex; flex-direction: column;
}
.filter-header-sticky {
  background: #fff;
  z-index: 10;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.filter-sidebar-content {
  overflow-y: auto;
  flex-grow: 1;
}
.filter-sidebar-content::-webkit-scrollbar {
  width: 5px;
}
.filter-sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}
.active-filters-container {
  border: 1px dashed #dee2e6 !important;
  background-color: #f8f9fa !important;
  transition: all 0.3s ease;
}
.btn-white {
  background: #fff;
  color: #444;
}
.btn-white:hover {
  background: #fff;
  border-color: #dc3545 !important;
  color: #dc3545;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.filter-header{display:flex; align-items:center; justify-content:space-between; margin-bottom:.5rem}
.filter-header h6{margin:0; display:flex; align-items:center; gap:.4rem}
.filter-reset{font-size:.85rem}
.filter-section{border-radius:10px; background:#f7f9fc; padding:.6rem .6rem; margin-bottom:.6rem; border:1px solid rgba(0,0,0,.05)}
.filter-section .section-title{display:flex; align-items:center; justify-content:space-between; cursor:pointer; font-weight:600; outline:none}
.filter-section .section-title:focus{box-shadow:0 0 0 3px rgba(108,92,231,.25); border-radius:8px}
.filter-section .section-body{margin-top:.55rem; overflow:hidden; max-height:0; transition:max-height .28s ease}
.filter-section.open .section-body{max-height:1500px}
.filter-section .icon{width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border:2px solid #152238; border-radius:999px; margin-right:.4rem}
.filter-section .fa-chevron-down{transition:transform .2s ease}
.filter-section.open .fa-chevron-down{transform:rotate(180deg)}
.card-compact .card-img-top{height:140px; object-fit:cover}
.card-modern .quick-view {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lyf-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 10;
}
.card-modern:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

/* Home enrichment styles */
.transition-all {
  transition: all 0.3s ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.03);
}
.bg-primary-soft {
  background-color: rgba(108, 92, 231, 0.1) !important;
}
.category-card {
  background: white;
  border-color: rgba(0,0,0,0.05) !important;
}
.category-card:hover {
  border-color: var(--lyf-primary) !important;
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15) !important;
}
.icon-box {
  transition: all 0.3s ease;
}
.category-card:hover .icon-box {
  background-color: var(--lyf-primary) !important;
  color: white !important;
  transform: rotate(10deg);
}
.bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.card-modern .quick-view:hover {
  background: var(--lyf-primary);
  color: white;
}
.card-compact .card-body{padding:.6rem}
.card-compact h6{font-size:.9rem; margin-bottom:.25rem}
.card-compact .small{font-size:.75rem}
.object-fit-cover{width:100%;height:100%;object-fit:cover}
.object-fit-contain{width:100%;height:100%;object-fit:contain;background-color:#fff;padding:8px}
.card-modern .ratio{background-color:#fff}
.filter-cat-list{display:grid; grid-template-columns:repeat(2,1fr); gap:.5rem}
.filter-cat-item{border:1px solid rgba(0,0,0,.08); border-radius:10px; padding:.5rem .6rem; background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:space-between}
.filter-cat-item.active{border-color:var(--lyf-primary); box-shadow:0 8px 22px rgba(108,92,231,.15)}
.price-dots{display:flex; gap:.5rem; flex-wrap:wrap}
.price-dot{display:flex; align-items:center; gap:.35rem; padding:.3rem .6rem; border:1px solid rgba(0,0,0,.08); border-radius:999px; cursor:pointer; background:#fff}
.price-dot.active{border-color:var(--lyf-primary); background:rgba(108,92,231,.08)}
.filter-checklist{display:flex; flex-direction:column; gap:.4rem}
.filter-checklist .form-check{display:flex; align-items:center; gap:.5rem}
.filter-checklist .form-check-input{width:18px; height:18px; border-radius:4px}
.filter-checklist .form-check-label{font-size:.95rem; line-height: 1.2; word-break: break-word;}
.category-group .toggle-subcats {
  transition: transform 0.2s ease;
  color: var(--lyf-primary) !important;
}
.category-group .toggle-subcats[aria-expanded="true"] i {
  transform: rotate(0deg);
}
.category-group .form-check-label {
  cursor: pointer;
}
.container-fluid.px-lg-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
@media (min-width: 1400px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 20%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 80%;
  }
}
.col-custom-5 {
  flex: 0 0 auto;
  width: 20%;
}
@media (max-width: 1200px) {
  .col-custom-5 {
    width: 25%;
  }
}
@media (max-width: 992px) {
  .col-custom-5 {
    width: 33.333333%;
  }
}
.transition-all { transition: all 0.3s ease; }
.hover-translate-x-neg:hover { transform: translateX(-5px); }
.hover-scale:hover { transform: scale(1.02); }

/* Swiper Custom Styles */
.swiper-pagination-bullet-active {
  background: var(--lyf-primary) !important;
}
.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover {
  background-color: var(--lyf-primary) !important;
  border-color: var(--lyf-primary) !important;
  color: white !important;
}
.swiper-button-disabled {
  opacity: 0.3;
}
.swiper-button-lock {
  display: none !important;
}
@media (max-width: 768px) {
  .col-custom-5 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-custom-5 {
    width: 50%; /* 2 per row even on very small screens */
  }
  .card-compact h6 { font-size: 0.8rem; }
  .card-compact .price { font-size: 1rem !important; }
}
.auth-modal .switcher{display:flex; gap:.5rem; justify-content:center; margin-bottom:.75rem}
.auth-modal .switcher{padding:.4rem; border-radius:999px; background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.25); backdrop-filter:saturate(180%) blur(8px)}
.auth-modal .switcher .btn{border-radius:999px; padding:.35rem 1rem; border:1px solid transparent}
.auth-modal .switcher .btn.active{background:var(--lyf-primary); color:#fff; box-shadow:0 6px 18px rgba(108,92,231,.35)}
.auth-slider{overflow:hidden; border-radius:.75rem; border:1px solid rgba(0,0,0,.06); background:#fff}
.auth-track{display:flex; width:200%; transition:transform .35s ease; will-change:transform}
.auth-pane{flex:0 0 50%; padding:1rem}
.auth-modal.auth-right .auth-track{transform:translateX(-50%)}

/* Modal Estilo Falabella */
#addedToCartModal .modal-content {
  border-radius: 12px;
}
#addedToCartModal .modal-header .btn-close {
  background-size: 12px;
}
#addedToCartModal .btn-dark {
  background-color: #333e48;
  border-color: #333e48;
  font-weight: 600;
  transition: all 0.2s;
}
#addedToCartModal .btn-dark:hover {
  background-color: #152238;
  transform: translateY(-1px);
}
#addedToCartModal #modalProductImg {
  aspect-ratio: 1/1;
  object-fit: cover;
  padding: 4px;
}
#addedToCartModal .btn-link:hover {
  color: var(--lyf-primary) !important;
}

/* Selector de cantidad en tarjetas */
.input-qty::-webkit-inner-spin-button,
.input-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-qty {
  -moz-appearance: textfield;
  max-width: 45px;
  border-left: 0;
  border-right: 0;
}
.btn-qty-minus, .btn-qty-plus {
  padding-left: 8px;
  padding-right: 8px;
  font-weight: bold;
}
.card-modern .input-group {
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
}
.product-labels {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.product-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff4757;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}
.price-old {
  text-decoration: line-through;
  color: #adb5bd;
  font-size: 0.85rem;
  margin-right: 5px;
}
.qty-piller {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 2px;
  border: 1px solid #e9ecef;
}
.qty-piller .btn {
  width: 28px;
  height: 28px;
  border-radius: 50% !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #dee2e6;
  color: #495057;
  transition: all 0.2s;
}
.qty-piller .btn:hover {
  background: var(--lyf-primary);
  color: white;
  border-color: var(--lyf-primary);
}
.qty-piller input {
  background: transparent !important;
  border: none !important;
  width: 40px !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: none !important;
}
/* Hero Background Slider */
.hero-modern {
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 100%;
  aspect-ratio: 1920 / 599; /* Proporción exacta de tus imágenes */
  display: flex;
  align-items: center;
  background-color: #0f1020;
}

@media (max-width: 1200px) {
  .hero-modern {
    aspect-ratio: auto;
    min-height: 450px;
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: 400px;
    padding: 60px 0;
  }
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 24s infinite;
  will-change: opacity;
}

@media (max-width: 768px) {
  .hero-bg-slide {
    background-image: var(--bg-mobile);
    background-size: cover; /* Cambiado a cover para móviles para que llene el espacio vertical */
  }
}

@keyframes heroFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 16, 32, 0.7) 0%, rgba(15, 16, 32, 0.3) 50%, rgba(15, 16, 32, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-modern .container {
  position: relative;
  z-index: 3;
}

/* Infinite Logo Slider */
.logo-slider-container {
  overflow: hidden;
  padding: 40px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}
.logo-slider-track {
  display: inline-flex;
  animation: logoScroll 40s linear infinite;
  align-items: center;
}
.logo-slider-item {
  width: 200px;
  margin: 0 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider-item img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  object-fit: contain;
}
.logo-slider-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Why Choose Us Section - Better Visibility */
.bg-dark .text-muted {
  color: #adb5bd !important; /* Un gris más claro para fondo oscuro */
}

/* Stacked Cards Animation (About Section) */
.photo-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;
}

.photo-stack-item {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
  border: 4px solid white;
}

/* Animación de Naipes (Sincronización Total - Sin Parpadeos) */
.photo-stack-item {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.6s ease;
  transform-origin: center bottom;
  border: 4px solid white;
  background: white;
  backface-visibility: hidden;
  will-change: transform, opacity, z-index;
}

@keyframes photoStackCycle {
  0% { 
    transform: translate(0, 0) rotate(0deg); 
    z-index: 3; 
    opacity: 1; 
  }
  28% { 
    transform: translate(0, 0) rotate(0deg); 
    z-index: 3; 
    opacity: 1; 
  }
  33% { 
    transform: translate(120%, -10%) rotate(15deg); 
    z-index: 3; 
    opacity: 0; 
  }
  34% { 
    transform: translate(0, 5%) rotate(-3deg); 
    z-index: 1; 
    opacity: 0; 
  }
  38% { 
    transform: translate(0, 5%) rotate(-3deg); 
    z-index: 1; 
    opacity: 1; 
  }
  61% { 
    transform: translate(0, 5%) rotate(-3deg); 
    z-index: 1; 
    opacity: 1; 
  }
  66% { 
    transform: translate(0, 2%) rotate(-1.5deg); 
    z-index: 2; 
    opacity: 1; 
  }
  95% { 
    transform: translate(0, 2%) rotate(-1.5deg); 
    z-index: 2; 
    opacity: 1; 
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    z-index: 3;
    opacity: 1;
  }
}

.photo-stack-item:nth-child(1) { animation: photoStackCycle 12s infinite linear; }
.photo-stack-item:nth-child(2) { animation: photoStackCycle 12s infinite -4s linear; }
.photo-stack-item:nth-child(3) { animation: photoStackCycle 12s infinite -8s linear; }

.auth-modal .modal-content{border:none; box-shadow:0 16px 32px rgba(14,22,33,.15); border-radius:1rem}
.auth-modal h6{font-weight:700}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
  background-color: #1ebe57;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
  }
}