/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    width: 100%;
    overflow-x: clip !important;
    position: relative;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background: #f3f4f6;
    /* Fallback */
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-slide.active .hero-bg-img {
    transform: scale(1.1);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

/* Hero Navigation Buttons */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Dots Indicators */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.btn-hero-large {
    display: inline-block;
    background: white;
    color: #f20c90;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Text Shadow Utilities */
.text-shadow-lg {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.text-shadow-md {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ===== CATEGORÍAS CIRCULARES ===== */
.category-circle-card {
    text-align: center;
    min-width: 120px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-circle-card:hover {
    transform: translateY(-5px);
}

.category-circle {
    width: 100px;
    height: 100px;
    background: #f20c90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 12px;
    box-shadow: 0 8px 20px rgba(242, 12, 144, 0.25);
    transition: all 0.3s ease;
}

.category-circle-card:nth-child(even) .category-circle {
    background: #0cc0df;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.25);
}

.category-circle-card:hover .category-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(242, 12, 144, 0.35);
}

.category-circle-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

/* ===== PRODUCT CAROUSEL ===== */
.product-carousel-container {
    position: relative;
    padding: 0;
    margin: 0;
}

@media (max-width: 640px) {
    .product-carousel-container {
        padding: 0 10px;
        margin: 0;
    }
}

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #f20c90;
    border-radius: 50%;
    color: #f20c90;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f20c90;
    color: white;
    box-shadow: 0 6px 20px rgba(242, 12, 144, 0.3);
}

.carousel-btn-prev {
    left: 5px;
}

.carousel-btn-next {
    right: 5px;
}

@media (max-width: 640px) {
    .carousel-btn {
        display: none !important;
        /* Hide on small mobile to prevent overflow */
    }
}

@media (max-width: 768px) {
    .product-carousel-container {
        padding: 0 50px;
        margin: 0 -50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }
}

.product-carousel-item {
    flex: 0 0 280px;
    min-width: 280px;
}

/* Promotional Banner Carousel */
.promo-banner-carousel {
    scroll-behavior: smooth;
    cursor: grab;
}

.promo-banner-carousel:active {
    cursor: grabbing;
}

.promo-banner-carousel::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .promo-banner-carousel>div {
        width: 100% !important;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-carousel-item {
        flex: 0 0 220px;
        min-width: 220px;
    }
}

/* ===== PRODUCT CARD ===== */
/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 12, 144, 0.12);
    border-color: rgba(242, 12, 144, 0.2);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: #ffffff;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: translate(-50%, -50%) scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f20c90;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(242, 12, 144, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.discount {
    background: #000;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-lab {
    font-size: 10px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.product-name:hover {
    color: #f20c90;
}

.product-specs {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-specs .spec-tag {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.product-price {
    margin-top: auto;
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: #d1d5db;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.price-current {
    color: #f20c90;
    font-size: 26px;
    font-weight: 950;
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -1px;
}

.price-unit {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart {
    width: 100%;
    background: #f20c90;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(242, 12, 144, 0.2);
}

.btn-add-cart:hover {
    background: #000;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-add-cart:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

/* ===== PROMOTIONAL BANNER ===== */
.promotional-banner {
    position: relative;
    overflow: hidden;
}

.promotional-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* ===== SEARCH ===== */
.search-input {
    font-size: 15px;
}

.search-input:focus {
    border-color: #f20c90 !important;
    box-shadow: 0 0 0 3px rgba(242, 12, 144, 0.1) !important;
}

.search-results {
    border: 2px solid #f0f0f0;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

/* ===== GLOBAL CART DRAWER & BACKDROP (FIXED LAYERING) ===== */
#miniCartDropdown {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 100% !important;
    max-width: 420px !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 200001 !important;
    /* Extremely high z-index */
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
}

#miniCartDropdown:not(.hidden) {
    transform: translateX(0);
    display: flex !important;
}

#miniCartItems {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    /* CRITICAL for flex scrolling */
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

#cartBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200000 !important;
    /* Just below drawer */
    display: none;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

#cartBackdrop.active {
    display: block;
}

#miniCartDropdown .p-4.bg-white.border-t {
    flex-shrink: 0 !important;
    background: white;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom, 20px) !important;
}

@media (max-width: 768px) {
    #miniCartDropdown {
        max-width: 320px !important;
    }
}

/* Prevent layout shift when scrollbar disappears */
body.cart-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width, 0px);
}

.search-result-item {
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: block;
    color: #333;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #fef5fb;
}

/* ===== UTILITIES ===== */
.container-xl {
    max-width: 1320px;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 420px;
        /* Aumentado para banners verticales */
        padding: 40px 0;
    }

    .hero-bg-img {
        object-fit: cover;
        /* o contain si se prefiere no cortar nada */
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .btn-hero-large {
        padding: 12px 30px;
        font-size: 15px;
    }

    .category-circle {
        width: 80px;
        height: 80px;
    }

    .category-circle i {
        font-size: 2rem !important;
    }
}

/* ===== CATEGORY HERO BANNER ===== */
.category-hero-banner {
    position: relative;
    background: #f20c90;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    text-align: center;
}

/* ===== PRODUCTS GRID (CATALOG) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ===== TRUST BADGES ===== */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-badge-content h4 {
    margin: 0;
    line-height: 1.2;
}

.trust-badge-content p {
    margin: 2px 0 0;
    line-height: 1.2;
}

.category-circle-card:hover .category-circle::before {
    opacity: 1;
}

.category-circle-card:nth-child(even) .category-circle {
    background: linear-gradient(135deg, #0cc0df 0%, #00d4ff 100%) !important;
}

.category-circle-card:nth-child(3n) .category-circle {
    background: linear-gradient(135deg, #ff1493 0%, #f20c90 100%) !important;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 90000 !important;
    /* Below Backdrop and Cart */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== HERO PARTICLES EFFECT ===== */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.08) 2.5px, transparent 2.5px);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-position: 0 0, 100px 100px, 50px 50px;
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .trust-badge-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.animate-shake {
    animation: shake 0.2s ease-in-out 3;
}



.shop-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

    /* Fixed header on mobile to ensure persistence */
    .shop-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10001 !important;
        /* Higher than backdrop */
    }

    body {
        padding-top: 220px !important;
        /* Increased for search bar + restored bars */
    }

    /* Restore bars on mobile as requested "tal cual escritorio" */
    .promo-bar,
    .top-bar {
        display: block !important;
    }

    .promo-bar {
        font-size: 10px;
        padding: 4px 0 !important;
    }

    .top-bar {
        padding: 5px 0 !important;
    }

    .main-header .container-xl>div {
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding: 0 5px !important;
    }

    .logo img {
        height: 28px !important;
    }

    .search-container {
        display: block !important;
        order: 2 !important;
        margin-top: 0 !important;
        flex: 1 !important;
        min-width: 0;
    }

    .search-input {
        padding: 5px 12px !important;
        padding-right: 35px !important;
        font-size: 12px !important;
        height: 34px !important;
    }

    .search-container button {
        width: 28px !important;
        height: 28px !important;
        right: 3px !important;
    }

    .header-actions {
        order: 3 !important;
        gap: 10px !important;
    }

    .action-btn i {
        font-size: 18px !important;
    }

    .cart-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        top: -4px !important;
        right: -4px !important;
    }

    .search-results {
        position: fixed !important;
        top: 130px !important;
        /* Adjusted for smaller header */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        border-radius: 0 0 15px 15px !important;
    }
}

.floating-whatsapp {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 15px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    z-index: 999999 !important;
}

/* ===== MOBILE CART DRAWER & SEARCH ENHANCEMENTS ===== */
@media (max-width: 768px) {

    /* Mobile Header Cleanup */
    .main-header .flex {
        gap: 10px !important;
    }

    .logo img {
        height: 30px !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .action-btn i {
        font-size: 18px !important;
    }

    .action-btn span {
        font-size: 9px !important;
    }

    /* Search Bar Mobile Persistence */
    .search-container {
        margin-top: 5px !important;
    }

    .search-input {
        height: 40px !important;
        padding: 5px 15px !important;
        font-size: 13px !important;
    }

    .search-results {
        position: fixed !important;
        top: 180px !important;
        /* Adjust based on header height */
        left: 10px !important;
        right: 10px !important;
        width: calc(100% - 20px) !important;
        max-height: 50vh !important;
    }
}

/* ===== SKELETON LOADING EFFECTS ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin-bottom: 12px;
}

.skeleton-price {
    height: 24px;
    width: 40%;
}

/* ===== MOBILE STICKY BUY BAR ===== */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
    z-index: 50;
    display: none;
    align-items: center;
    gap: 15px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .sticky-buy-bar {
        display: flex;
    }

    /* Padding to avoid overlap with sticky bar */
    .shop-product-page {
        padding-bottom: 80px;
    }
}

/* ===== CATEGORY TAG COLORS ===== */
.category-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cat-analgesicos {
    background: #e0f2fe;
    color: #0369a1;
}

.cat-antibioticos {
    background: #dcfce7;
    color: #15803d;
}

.cat-antiinflamatorios {
    background: #fee2e2;
    color: #b91c1c;
}

.cat-vitaminas {
    background: #fef9c3;
    color: #a16207;
}

.cat-otros {
    background: #f3f4f6;
    color: #4b5563;
}

/* ===== WHATSAPP FLOATING PRODUCT PAGE ===== */
.btn-whatsapp-consult {
    background: #25D366 !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.btn-whatsapp-consult:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
}

/* ===== HERO SKELETON LOADER ===== */
.hero-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    z-index: 0;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}