html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ===== Floating Contact Button ===== */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    15%       { transform: rotate(-15deg); }
    30%       { transform: rotate(14deg); }
    45%       { transform: rotate(-10deg); }
    60%       { transform: rotate(8deg); }
    75%       { transform: rotate(-5deg); }
    90%       { transform: rotate(3deg); }
}
.fab-wiggle {
    animation: wiggle 0.8s ease-in-out;
}
@keyframes ripple-out {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
.fab-ripple::before,
.fab-ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: #ec4899;
    animation: ripple-out 1.8s ease-out infinite;
    z-index: -1;
}
.fab-ripple::after {
    animation-delay: 0.9s;
}

/* ===== Search Suggestions dropdown ===== */
@media (max-width: 639px) {
    .search-suggestions {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 64px !important;
        width: 100% !important;
        max-height: 60vh;
        border-radius: 0 0 0.75rem 0.75rem;
    }
}

/* ===== Hot Products Swiper ===== */
.hot-products-swiper .swiper-pagination-bullet-active { background: #ec4899; }
.hot-products-swiper .swiper-button-prev,
.hot-products-swiper .swiper-button-next {
    color: #ec4899;
    background: #fff;
    border-radius: 9999px;
    width: 2rem; height: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.hot-products-swiper .swiper-button-prev::after,
.hot-products-swiper .swiper-button-next::after { font-size: .8rem; font-weight: 900; }
.hot-products-swiper .swiper-button-prev { left: -0.25rem; }
.hot-products-swiper .swiper-button-next { right: -0.25rem; }
