:root {
            --primary: #FF4D6A;
            --primary-dark: #E63355;
            --primary-light: #FF6B84;
            --secondary: #2D2D3F;
            --accent: #FFD93D;
            --accent-orange: #FF8C42;
            --bg-light: #F8F5FF;
            --bg-white: #FFFFFF;
            --text-dark: #1A1A2E;
            --text-medium: #4A4A5A;
            --text-light: #7A7A8A;
            --success: #00C853;
            --warning: #FF6D00;
            --gradient-primary: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
            --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #2D2D3F 50%, #FF4D6A 150%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
            --shadow-glow: 0 0 30px rgba(255,77,106,0.3);
            --radius: 16px;
            --radius-sm: 10px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ========== TOP ANNOUNCEMENT BAR ========== */
        .announcement-bar {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .announcement-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .announcement-slider {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .announcement-slide {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            width: 100%;
        }

        .announcement-slide.active {
            display: flex;
            animation: announcementFadeIn 0.6s ease forwards;
        }

        .announcement-slide span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        @keyframes announcementFadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== HEADER ========== */
        .header {
            background: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo img {
            height: 48px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* ========== CATEGORIES DROPDOWN MENU ========== */
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
            padding: 8px 0;
            min-width: 210px;
            display: none;
            list-style: none;
            z-index: 1000;
            border: 1px solid rgba(0,0,0,0.08);
            animation: fadeIn 0.2s ease;
        }
        .nav-dropdown:hover .dropdown-menu {
            display: block;
        }
        .nav-dropdown .dropdown-menu li {
            width: 100%;
        }
        .nav-dropdown .dropdown-menu li a {
            display: block;
            padding: 10px 18px;
            color: var(--text-dark);
            font-size: 13.5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-dropdown .dropdown-menu li a::after {
            display: none;
        }
        .nav-dropdown .dropdown-menu li a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 22px;
        }

        /* ========== SALES NOTIFICATION TOAST (30 BUYERS) ========== */
        .sales-toast-overlay {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 999999 !important;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 14px 18px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.22);
            border: 1px solid rgba(255, 77, 106, 0.2);
            display: flex !important;
            align-items: center;
            gap: 14px;
            max-width: 380px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px) scale(0.95);
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .sales-toast-overlay.active {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) scale(1) !important;
            pointer-events: auto !important;
        }

        .sales-toast-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 6px 15px rgba(255,77,106,0.3);
        }

        .sales-toast-content {
            flex: 1;
        }

        .sales-toast-text {
            font-size: 13px;
            color: var(--text-dark);
            line-height: 1.35;
        }

        .sales-toast-text strong {
            color: var(--primary);
            font-weight: 700;
        }

        .sales-toast-meta {
            font-size: 11.5px;
            color: var(--text-medium);
            margin-top: 3px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .sales-toast-close {
            background: transparent;
            border: none;
            font-size: 16px;
            color: #999;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .sales-toast-close:hover {
            color: var(--text-dark);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .whatsapp-btn-header {
            background: #25D366;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn-header:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
        }

        .whatsapp-btn-header svg {
            width: 20px;
            height: 20px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            margin: 6px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background: var(--gradient-hero);
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,77,106,0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,140,66,0.1) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-text {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,77,106,0.2);
            border: 1px solid rgba(255,77,106,0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--primary-light);
            animation: fadeInUp 0.6s ease;
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 52px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease 0.1s both;
        }

        .hero h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            max-width: 480px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 48px;
            animation: fadeInUp 0.6s ease 0.4s both;
        }

        .stat-item {
            text-align: left;
        }

        .stat-item .number {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: white;
        }

        .stat-item .label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }

        .hero-images {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .hero-image-main {
            width: 400px;
            height: 400px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            position: relative;
            z-index: 2;
            transform: rotate(-3deg);
            transition: transform 0.5s ease;
        }

        .hero-image-main:hover {
            transform: rotate(0deg) scale(1.02);
        }

        /* Slider CSS */
        .hero-slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f8f8;
        }

        .hero-slider-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Slider Navigation (Dots) */
        .hero-slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hero-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-slider-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Arrow controls */
        .hero-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.4);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .hero-slider-arrow:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-slider-arrow.prev {
            left: 15px;
        }

        .hero-slider-arrow.next {
            right: 15px;
        }

        .hero-float-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            z-index: 3;
            animation: floatCard 4s ease-in-out infinite;
        }

        .hero-float-card.card-1 {
            top: 20px;
            right: -20px;
            animation-delay: 0s;
        }

        .hero-float-card.card-2 {
            bottom: 40px;
            left: -30px;
            animation-delay: 1s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 8px;
        }

        .float-card-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .float-card-subtext {
            font-size: 11px;
            color: var(--text-light);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            background: white;
            padding: 24px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-medium);
        }

        .trust-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .trust-icon.green { background: #E8F5E9; }
        .trust-icon.blue { background: #E3F2FD; }
        .trust-icon.purple { background: #F3E5F5; }
        .trust-icon.orange { background: #FFF3E0; }

        /* ========== CATEGORIES ========== */
        .categories {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,77,106,0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 17px;
            color: var(--text-light);
            max-width: 550px;
            margin: 0 auto;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .category-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255,77,106,0.1);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 20px;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .category-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .category-card p {
            font-size: 14px;
            color: var(--text-light);
        }

        .category-count {
            display: inline-block;
            margin-top: 16px;
            background: var(--bg-light);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
        }

        /* ========== PRODUCTS 1:1 GRID ========== */
        .products {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }

        .product-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.35s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255,77,106,0.2);
        }

        .product-image-link {
            display: block;
            width: 100%;
            position: relative;
            overflow: hidden;
            background: #ffffff;
            text-decoration: none;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #ffffff;
            padding: 8px;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
            color: transparent;
            font-size: 0;
            text-indent: -9999px;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* Smaller Badges top left */
        .product-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 4px;
            pointer-events: none;
        }

        .badge {
            padding: 2.5px 7px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }

        .badge-sale {
            background: var(--primary);
            color: white;
        }

        .badge-hot {
            background: var(--warning);
            color: white;
        }

        .badge-new {
            background: var(--accent);
            color: var(--text-dark);
        }

        /* Top right action buttons (Share & Wishlist) */
        .product-top-actions {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 5;
            display: flex;
            gap: 5px;
        }

        .product-action-btn {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            transition: all 0.25s ease;
            font-size: 12px;
            color: var(--text-dark);
            backdrop-filter: blur(4px);
        }

        .product-action-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .product-action-btn svg {
            stroke: currentColor;
        }

        /* Compact info panel inside 1:1 frame */
        .product-info {
            padding: 10px 12px 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.04);
            z-index: 2;
            flex-shrink: 0;
        }

        .product-category {
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--primary);
            margin-bottom: 1px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-name {
            font-family: 'Outfit', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-name a {
            text-decoration: none;
            color: inherit;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 3px;
        }

        .stars {
            color: #FFB800;
            font-size: 10.5px;
            letter-spacing: 0.5px;
        }

        .rating-count {
            font-size: 10px;
            color: var(--text-light);
        }

        .product-price-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 3px;
        }

        .product-price {
            font-family: 'Outfit', sans-serif;
            font-size: 17px;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }

        .product-price-original {
            font-size: 11.5px;
            color: var(--text-light);
            text-decoration: line-through;
        }

        .product-discount {
            background: rgba(255,77,106,0.1);
            color: var(--primary);
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 800;
        }

        .stock-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 3px;
        }

        .stock-bar {
            flex: 1;
            height: 3px;
            background: #f0f0f0;
            border-radius: 2px;
            overflow: hidden;
        }

        .stock-text {
            font-size: 9px;
            color: var(--primary);
            font-weight: 600;
            white-space: nowrap;
        }

        .contra-entrega-tag {
            font-size: 9px;
            background: #FFF3E0;
            color: #E65100;
            padding: 1.5px 5px;
            border-radius: 4px;
            font-weight: 700;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-card-buttons {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: 8px;
            width: 100%;
        }

        .product-card-sub-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            width: 100%;
        }

        .btn-flow-sm {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 9px 10px;
            background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
            color: #ffffff !important;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none !important;
            text-align: center;
            box-shadow: 0 4px 12px rgba(255, 77, 106, 0.35);
            transition: transform 0.2s ease, filter 0.2s ease;
            box-sizing: border-box;
        }

        .btn-flow-sm:hover {
            transform: translateY(-1px);
            filter: brightness(1.08);
            color: #ffffff !important;
        }

        .btn-detalles-sm {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 7px 8px;
            background: #F1F5F9;
            color: #334155 !important;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            text-decoration: none !important;
            transition: background 0.2s ease;
            box-sizing: border-box;
        }

        .btn-detalles-sm:hover {
            background: #E2E8F0;
            color: #1E293B !important;
        }

        .btn-whatsapp-sm {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 7px 8px;
            background: #25D366;
            color: #ffffff !important;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            text-decoration: none !important;
            transition: background 0.2s ease;
            box-sizing: border-box;
        }

        .btn-whatsapp-sm:hover {
            background: #1da851;
            color: #ffffff !important;
        }

        .btn-whatsapp-sm svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* ========== SHARE MODAL ========== */
        .share-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .share-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .share-modal-content {
            background: white;
            border-radius: 24px;
            padding: 28px;
            width: 90%;
            max-width: 420px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
            position: relative;
        }

        .share-modal-overlay.active .share-modal-content {
            transform: translateY(0) scale(1);
        }

        .share-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .share-modal-header h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-dark);
        }

        .share-modal-close {
            background: var(--bg-light);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-medium);
            transition: all 0.2s;
        }

        .share-modal-close:hover {
            background: #e0e0e0;
            color: var(--text-dark);
        }

        .share-product-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-medium);
            margin-bottom: 18px;
            background: var(--bg-light);
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid rgba(0,0,0,0.04);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .share-buttons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 18px;
        }

        .share-option-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 8px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.08);
            background: white;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 11.5px;
            font-weight: 700;
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .share-option-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }

        .share-option-btn.wa:hover { border-color: #25D366; background: #e8fcd9; color: #1da851; }
        .share-option-btn.fb:hover { border-color: #1877F2; background: #e7f0fd; color: #1877F2; }
        .share-option-btn.tw:hover { border-color: #1DA1F2; background: #e8f5fe; color: #1DA1F2; }

        .share-option-icon {
            font-size: 22px;
        }

        .share-copy-box {
            display: flex;
            gap: 8px;
            background: var(--bg-light);
            padding: 5px 5px 5px 12px;
            border-radius: 50px;
            border: 1px solid rgba(0,0,0,0.08);
            align-items: center;
        }

        .share-copy-input {
            flex: 1;
            background: transparent;
            border: none;
            font-size: 12.5px;
            color: var(--text-dark);
            outline: none;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .share-copy-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 7px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .share-copy-btn:hover {
            background: var(--primary-dark);
        }

        /* TOAST NOTIFICATION */
        .toast-notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #1A1A2E;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10000;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toast-notification.active {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* ========== PREMIUM NEWSLETTER SECTION ========== */
        .newsletter-section {
            position: relative;
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .newsletter-container {
            background: linear-gradient(135deg, #121226 0%, #1A1A3A 50%, #2E1A36 100%);
            border-radius: 28px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 77, 106, 0.25);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 77, 106, 0.15);
        }

        .newsletter-glow-bg {
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,77,106,0.2) 0%, rgba(255,140,66,0.08) 50%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: pulseGlow 8s infinite alternate ease-in-out;
        }

        @keyframes pulseGlow {
            0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
            100% { transform: scale(1.2) translate(5%, 5%); opacity: 1; }
        }

        .newsletter-badge {
            display: inline-block;
            background: rgba(255, 77, 106, 0.15);
            border: 1px solid rgba(255, 77, 106, 0.4);
            color: #FF6B84;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .newsletter-container h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 14px;
            line-height: 1.25;
        }

        .newsletter-container p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.78);
            max-width: 620px;
            margin: 0 auto 36px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 580px;
            margin: 0 auto;
            align-items: center;
        }

        @media (max-width: 640px) {
            .newsletter-container {
                padding: 40px 20px;
            }
            .newsletter-container h2 {
                font-size: 24px;
            }
            .newsletter-form {
                flex-direction: column;
                width: 100%;
            }
            .newsletter-input-wrapper {
                width: 100%;
            }
            .newsletter-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .newsletter-input-wrapper {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
        }

        .newsletter-input-wrapper .input-icon {
            position: absolute;
            left: 18px;
            font-size: 18px;
            pointer-events: none;
        }

        .newsletter-input {
            width: 100%;
            padding: 16px 20px 16px 48px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            font-size: 15px;
            outline: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-input:focus {
            border-color: #FF4D6A;
            background: rgba(255, 255, 255, 0.16);
            box-shadow: 0 0 25px rgba(255, 77, 106, 0.4);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
            color: white;
            border: none;
            padding: 16px 34px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 15px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 77, 106, 0.4);
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(255, 77, 106, 0.6);
        }

        .newsletter-btn .btn-arrow {
            transition: transform 0.3s ease;
        }

        .newsletter-btn:hover .btn-arrow {
            transform: translateX(4px);
        }

        .newsletter-message {
            margin-top: 18px;
            font-size: 14.5px;
            font-weight: 700;
            display: none;
            padding: 10px 20px;
            border-radius: 12px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 0.3s ease;
        }

        .newsletter-message.success {
            background: rgba(0, 200, 83, 0.15);
            border: 1px solid rgba(0, 200, 83, 0.4);
            color: #00E676;
        }

        .newsletter-message.error {
            background: rgba(255, 82, 82, 0.15);
            border: 1px solid rgba(255, 82, 82, 0.4);
            color: #FF5252;
        }

        .newsletter-trust-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .newsletter-trust-row .trust-badge {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 600;
        }

        /* ========== NEWSLETTER POPUP MODAL ========== */
        .newsletter-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 20, 0.75);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .newsletter-popup-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .newsletter-popup-card {
            background: linear-gradient(135deg, #ffffff 0%, #FFF5F7 100%);
            border-radius: 24px;
            padding: 36px 30px 24px;
            width: 90%;
            max-width: 440px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.35);
            transform: scale(0.9) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            text-align: center;
            border: 2px solid rgba(255, 77, 106, 0.2);
        }

        .newsletter-popup-overlay.active .newsletter-popup-card {
            transform: scale(1) translateY(0);
        }

        .popup-close-btn {
            position: absolute;
            top: 14px;
            right: 16px;
            background: #f0f0f4;
            border: none;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .popup-close-btn:hover {
            background: #FF4D6A;
            color: white;
            transform: rotate(90deg);
        }

        .popup-badge {
            display: inline-block;
            background: rgba(255,77,106,0.12);
            color: var(--primary);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .popup-title {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .popup-text {
            font-size: 13.5px;
            color: var(--text-medium);
            margin-bottom: 22px;
            line-height: 1.5;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .popup-input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 50px;
            border: 1.5px solid #e0e0e8;
            font-size: 14px;
            outline: none;
            transition: all 0.2s;
        }

        .popup-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 77, 106, 0.2);
        }

        .popup-btn {
            background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(255,77,106,0.3);
            transition: all 0.25s;
        }

        .popup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(255,77,106,0.5);
        }

        .popup-dismiss-text {
            display: inline-block;
            margin-top: 14px;
            font-size: 11.5px;
            color: #888;
            cursor: pointer;
            text-decoration: underline;
        }

        .popup-dismiss-text:hover {
            color: var(--text-dark);
        }
        .red-info-band {
            background: linear-gradient(90deg, #c0392b 0%, #e74c3c 50%, #c0392b 100%);
            color: white;
            padding: 0;
            overflow: hidden;
            position: relative;
            border-top: 2px solid rgba(255,255,255,0.15);
        }

        .red-band-track {
            display: inline-flex;
            white-space: nowrap;
            animation: redBandScroll 30s linear infinite;
            padding: 11px 0;
        }

        .red-band-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 40px;
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .red-band-item::after {
            content: '●';
            margin-left: 40px;
            opacity: 0.5;
            font-size: 8px;
        }

        @keyframes redBandScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ========== AI CUADRO SECTION ========== */
        .ai-cuadro-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .ai-cuadro-inner {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid rgba(0,0,0,0.05);
            align-items: center;
        }

        .ai-cuadro-image-wrap {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            min-height: 450px;
            background: #fdfaf7;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .ai-cuadro-image-wrap img {
            width: 100%;
            height: 100%;
            max-height: 650px;
            object-fit: contain;
            transition: transform 0.8s ease;
        }

        .ai-cuadro-image-wrap:hover img {
            transform: scale(1.03);
        }

        .ai-cuadro-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(124,58,237,0.4);
            z-index: 2;
        }

        .ai-cuadro-content {
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ai-cuadro-content .section-tag {
            margin-bottom: 16px;
        }

        .ai-cuadro-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 34px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .ai-cuadro-content h2 span {
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-features-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 24px 0;
        }

        .ai-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 18px;
            background: var(--bg-light);
            border-radius: 12px;
            border: 1px solid rgba(124,58,237,0.08);
            transition: all 0.3s ease;
        }

        .ai-feature-item:hover {
            border-color: rgba(124,58,237,0.25);
            background: rgba(124,58,237,0.04);
            transform: translateX(4px);
        }

        .ai-feature-icon {
            font-size: 22px;
            flex-shrink: 0;
        }

        .ai-feature-text strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3px;
        }

        .ai-feature-text span {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.5;
        }

        .ai-price-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 20px 0;
            padding: 18px 20px;
            background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(236,72,153,0.06) 100%);
            border-radius: 14px;
            border: 1px solid rgba(124,58,237,0.12);
        }

        .ai-price-row .price {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-price-row .price-label {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.4;
        }

        .btn-ai {
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            color: white;
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(124,58,237,0.3);
        }

        .btn-ai:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(124,58,237,0.45);
        }

        @media (max-width: 992px) {
            .ai-cuadro-inner {
                grid-template-columns: 1fr;
            }
            .ai-cuadro-image-wrap {
                min-height: auto;
                padding: 30px 20px;
            }
            .ai-cuadro-image-wrap img {
                max-height: 450px;
            }
            .ai-cuadro-content {
                padding: 36px 24px;
            }
            .ai-cuadro-content h2 {
                font-size: 28px;
            }
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .badge {
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-sale {
            background: var(--primary);
            color: white;
        }

        .badge-hot {
            background: var(--warning);
            color: white;
        }

        .badge-new {
            background: var(--accent);
            color: var(--text-dark);
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-wishlist {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            font-size: 18px;
            z-index: 5;
        }

        .product-wishlist:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-category {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .product-name {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .stars {
            color: #FFB800;
            font-size: 14px;
        }

        .rating-count {
            font-size: 13px;
            color: var(--text-light);
        }

        .product-price-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .product-price {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }

        .product-price-original {
            font-size: 16px;
            color: var(--text-light);
            text-decoration: line-through;
        }

        .product-discount {
            background: rgba(255,77,106,0.1);
            color: var(--primary);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
        }

        .stock-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .stock-bar {
            flex: 1;
            height: 6px;
            background: #f0f0f0;
            border-radius: 3px;
            overflow: hidden;
        }

        .stock-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 1s ease;
        }

        .stock-fill.low {
            background: var(--primary);
            width: 25%;
        }

        .stock-fill.medium {
            background: var(--warning);
            width: 55%;
        }

        .stock-fill.high {
            background: var(--success);
            width: 80%;
        }

        .stock-text {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            white-space: nowrap;
        }

        .stock-text.urgency {
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .product-features {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .feature-tag {
            background: var(--bg-light);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-medium);
        }

        .btn-whatsapp {
            width: 100%;
            background: #25D366;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(37,211,102,0.3);
        }

        .btn-whatsapp svg {
            width: 22px;
            height: 22px;
        }

        .btn-secondary-product {
            width: 100%;
            background: var(--bg-light);
            color: var(--text-dark);
            border: 2px solid transparent;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 10px;
        }

        .btn-secondary-product:hover {
            background: white;
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ========== FLASH SALE BANNER ========== */
        .flash-sale {
            background: var(--secondary);
            margin: 60px auto !important;
            max-width: 1200px !important;
            width: calc(100% - 40px) !important;
            border-radius: var(--radius);
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .flash-sale::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 100%;
            background: radial-gradient(circle at right, rgba(255,77,106,0.3) 0%, transparent 70%);
        }

        .flash-sale-content {
            position: relative;
            z-index: 2;
        }

        .flash-sale h3 {
            font-family: 'Outfit', sans-serif;
            color: white;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .flash-sale p {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .countdown {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .countdown-item {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 16px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            min-width: 80px;
        }

        .countdown-number {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: white;
            display: block;
        }

        .countdown-label {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* ========== SOCIAL PROOF ========== */
        .social-proof {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .proof-card {
            background: white;
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .proof-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .proof-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .proof-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .proof-name {
            font-weight: 700;
            font-size: 15px;
        }

        .proof-date {
            font-size: 12px;
            color: var(--text-light);
        }

        .proof-stars {
            color: #FFB800;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .proof-text {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .proof-verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            font-size: 12px;
            color: var(--success);
            font-weight: 600;
        }

        /* ========== WEEKLY UPDATES BANNER ========== */
        .weekly-updates-banner {
            background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
            margin: 60px auto;
            max-width: 1200px;
            border-radius: var(--radius);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: var(--shadow-lg);
            color: white;
            margin-left: 20px;
            margin-right: 20px;
        }

        .weekly-updates-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,77,106,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .weekly-updates-banner::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,140,66,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .banner-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,77,106,0.2);
            color: var(--primary-light);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,77,106,0.2);
        }

        .weekly-updates-banner h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
            background: linear-gradient(120deg, #ffffff 0%, #ffebeb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .weekly-updates-banner p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .banner-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .banner-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }

        .banner-feature:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,77,106,0.3);
        }

        .feature-icon {
            font-size: 16px;
        }

        /* ========== SOCIAL PROOF POPUP ========== */
        .social-proof-popup {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: white;
            border-radius: 16px;
            padding: 16px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.06);
            z-index: 9998;
            max-width: 360px;
            transform: translateX(-120%);
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.04);
        }

        .social-proof-popup.show {
            transform: translateX(0);
        }

        .social-proof-popup-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            color: white;
            box-shadow: 0 4px 12px rgba(99,102,241,0.3);
        }

        .social-proof-popup-text {
            font-size: 13.5px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .social-proof-popup-text strong {
            color: var(--primary);
        }

        .social-proof-popup-time {
            font-size: 11px;
            color: var(--text-light);
            margin-top: 3px;
        }

        .social-proof-popup-close {
            position: absolute;
            top: 8px;
            right: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: var(--text-light);
            line-height: 1;
        }

        @media (max-width: 480px) {
            .social-proof-popup {
                left: 12px;
                right: 12px;
                bottom: 15px;
                max-width: none;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius);
            margin-bottom: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-arrow {
            transition: transform 0.3s ease;
            font-size: 20px;
            color: var(--text-light);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        /* ========== NEWSLETTER ========== */
        .newsletter {
            background: var(--gradient-primary);
            margin: 60px auto !important;
            max-width: 1200px !important;
            width: calc(100% - 40px) !important;
            border-radius: var(--radius);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .newsletter h3 {
            font-family: 'Outfit', sans-serif;
            color: white;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .newsletter p {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            margin-bottom: 32px;
            position: relative;
            z-index: 2;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            outline: none;
        }

        .newsletter-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--text-dark);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand img {
            height: 56px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 13px;
        }

        .payment-methods {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .payment-icon {
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
        }

        /* ========== DIGITALFORCE FOOTER CTA ========== */
        .digitalforce-cta {
            text-align: center;
            padding: 28px 0 0;
            margin-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .digitalforce-cta p {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.45);
            letter-spacing: 0.5px;
        }

        .digitalforce-cta a.neon-link {
            color: #00e5ff;
            text-decoration: none;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 1.5px;
            text-shadow:
                0 0 7px rgba(0, 229, 255, 0.7),
                0 0 14px rgba(0, 229, 255, 0.5),
                0 0 28px rgba(0, 229, 255, 0.35),
                0 0 56px rgba(0, 229, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .digitalforce-cta a.neon-link:hover {
            color: #80ffff;
            text-shadow:
                0 0 10px rgba(0, 229, 255, 0.9),
                0 0 20px rgba(0, 229, 255, 0.7),
                0 0 40px rgba(0, 229, 255, 0.5),
                0 0 80px rgba(0, 229, 255, 0.3),
                0 0 120px rgba(0, 229, 255, 0.15);
            transform: scale(1.02);
        }

        @keyframes neonPulse {
            0%, 100% {
                text-shadow:
                    0 0 7px rgba(0, 229, 255, 0.7),
                    0 0 14px rgba(0, 229, 255, 0.5),
                    0 0 28px rgba(0, 229, 255, 0.35),
                    0 0 56px rgba(0, 229, 255, 0.2);
            }
            50% {
                text-shadow:
                    0 0 10px rgba(0, 229, 255, 0.9),
                    0 0 20px rgba(0, 229, 255, 0.7),
                    0 0 40px rgba(0, 229, 255, 0.5),
                    0 0 80px rgba(0, 229, 255, 0.3);
            }
        }

        .digitalforce-cta a.neon-link {
            animation: neonPulse 2.5s ease-in-out infinite;
        }

        /* ========== WHATSAPP FLOAT ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: all 0.3s ease;
            animation: whatsappPulse 2s infinite;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37,211,102,0.5);
        }

        .whatsapp-float a svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
        }

        .whatsapp-float .tooltip {
            position: absolute;
            right: 76px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 10px 16px;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            white-space: nowrap;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover .tooltip {
            opacity: 1;
        }

        /* ========== SCROLL TO TOP ========== */
        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 44px;
            height: 44px;
            background: var(--secondary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s ease;
        }

        .scroll-top:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .scroll-top.visible {
            display: flex;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                margin: 0 auto 32px;
            }

            .hero-cta-group {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-images {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-stats {
                gap: 24px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .flash-sale {
                flex-direction: column;
                text-align: center;
                gap: 32px;
            }

            .countdown {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .section-header h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .product-image {
                aspect-ratio: 1 / 1;
                height: auto;
            }

            .product-info {
                padding: 14px;
            }

            .product-name {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .product-price {
                font-size: 20px;
            }

            .product-price-original {
                font-size: 13px;
            }

            .product-price-row {
                flex-wrap: wrap;
                gap: 6px;
                margin-bottom: 10px;
            }

            .product-category {
                font-size: 10px;
                margin-bottom: 4px;
            }

            .product-rating {
                margin-bottom: 8px;
            }

            .stars {
                font-size: 12px;
            }

            .rating-count {
                font-size: 11px;
            }

            .product-features {
                margin-bottom: 12px;
                gap: 4px;
            }

            .feature-tag {
                font-size: 9px;
                padding: 3px 6px;
            }

            .contra-entrega-tag {
                font-size: 9px;
                padding: 2px 6px;
            }

            .qty-selector {
                margin-bottom: 10px;
            }

            .qty-label {
                font-size: 12px;
            }

            .qty-btn {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .qty-value {
                width: 30px;
                font-size: 13px;
            }

            .btn-whatsapp {
                padding: 10px 14px;
                font-size: 13px;
                border-radius: 10px;
            }

            .btn-whatsapp svg {
                width: 18px;
                height: 18px;
            }

            .btn-secondary-product {
                padding: 8px 14px;
                font-size: 12px;
            }

            .stock-indicator {
                margin-bottom: 10px;
            }

            .stock-text {
                font-size: 10px;
            }

            .delivery-info {
                font-size: 11px;
                margin-top: 8px;
            }

            .product-discount {
                font-size: 10px;
                padding: 2px 5px;
            }

            .badge {
                font-size: 9px;
                padding: 3px 8px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .product-image {
                aspect-ratio: 1 / 1;
                height: auto;
            }

            .product-info {
                padding: 10px;
            }

            .product-name {
                font-size: 13px;
            }

            .product-price {
                font-size: 18px;
            }
        }

        /* ========== LOADING ANIMATION ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== QUANTITY SELECTOR ========== */
        .qty-selector {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .qty-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-medium);
        }

        .qty-controls {
            display: flex;
            align-items: center;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
        }

        .qty-btn {
            width: 36px;
            height: 36px;
            background: var(--bg-light);
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-dark);
        }

        .qty-btn:hover {
            background: var(--primary);
            color: white;
        }

        .qty-value {
            width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
        }

        /* ========== DELIVERY INFO ========== */
        .delivery-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--success);
            font-weight: 600;
            margin-top: 12px;
        }

        .delivery-info svg {
            width: 16px;
            height: 16px;
            fill: var(--success);
        }

        .contra-entrega-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #FFF8E1;
            color: #F57F17;
            padding: 3px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            margin-top: 6px;
        }

        .product-description {
            font-size: 13.5px;
            color: var(--text-medium);
            margin: 12px 0 16px;
            line-height: 1.5;
        }

        /* MODAL TV BOX */
        .modal-tvbox {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-tvbox-content {
            background-color: white;
            margin: auto;
            padding: 30px;
            border-radius: 24px;
            max-width: 550px;
            width: 100%;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-tvbox-close {
            position: absolute;
            right: 24px;
            top: 20px;
            color: var(--text-light);
            font-size: 30px;
            font-weight: 400;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .modal-tvbox-close:hover {
            color: var(--primary);
        }

        .modal-tvbox-header {
            margin-bottom: 20px;
            text-align: center;
        }

        .modal-tvbox-header h2 {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            font-size: 24px;
            font-weight: 800;
            line-height: 1.2;
        }

        .modal-tvbox-header h3 {
            font-size: 15px;
            color: var(--primary);
            font-weight: 700;
            margin-top: 6px;
        }

        .modal-promo-tag {
            display: inline-block;
            background: #FFEBEF;
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .modal-main-text {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .modal-features-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
            text-align: left;
        }

        .modal-feature-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .modal-feature-icon {
            font-size: 18px;
            color: var(--success);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .modal-feature-item div {
            font-size: 13.5px;
            color: var(--text-medium);
            line-height: 1.5;
        }

        .modal-urgency {
            background: #FFF9C4;
            border-left: 4px solid #FBC02D;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 13px;
            color: #5D4037;
            margin-bottom: 20px;
            line-height: 1.5;
            text-align: left;
        }
        /* ========== SHIPPING SECTION ========== */
        .shipping-section {
            padding: 80px 20px;
            background: #fdfdfd;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .shipping-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            perspective: 1000px;
        }

        @media (max-width: 992px) {
            .shipping-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .shipping-features-grid {
                grid-template-columns: 1fr;
            }
        }

        .shipping-feature-card {
            background: white;
            padding: 45px 30px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.04);
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, border-color 0.6s ease;
            text-align: center;
            transform-style: preserve-3d;
            position: relative;
        }

        .shipping-feature-card:hover {
            transform: translateY(-10px) rotateX(8deg) rotateY(-5deg) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 10px 25px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }

        .shipping-feature-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            color: var(--success);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 24px auto;
            transform: translateZ(30px);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .shipping-feature-card:hover .shipping-feature-card-icon {
            background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%);
            color: white;
            transform: translateZ(50px) scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.35);
        }

        .shipping-feature-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            transform: translateZ(20px);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .shipping-feature-card:hover h4 {
            transform: translateZ(35px);
            color: var(--primary);
        }

        .shipping-feature-card p {
            font-size: 14.5px;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 0;
            transform: translateZ(15px);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .shipping-feature-card:hover p {
            transform: translateZ(25px);
        }

        /* ========== SHIPPING PARTNERS TICKER ========== */
        .shipping-ticker {
            background: linear-gradient(90deg, #16162a 0%, #0d0d1a 100%);
            overflow: hidden;
            padding: 20px 0;
            white-space: nowrap;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
            position: relative;
            margin-top: 40px;
        }

        .shipping-ticker::before,
        .shipping-ticker::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .shipping-ticker::before {
            left: 0;
            background: linear-gradient(to right, #0d0d15 0%, transparent 100%);
        }

        .shipping-ticker::after {
            right: 0;
            background: linear-gradient(to left, #0d0d15 0%, transparent 100%);
        }

        .shipping-ticker-track {
            display: inline-flex;
            animation: ticker-slide 25s linear infinite;
        }

        .shipping-ticker-item {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 30px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        @keyframes ticker-slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== IMAGE LIGHTBOX ========== */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            padding: 40px 20px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.show {
            opacity: 1;
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.1);
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .lightbox-modal.show .lightbox-content {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 35px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 44px;
            font-weight: 300;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 100000;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lightbox-close:hover {
            color: white;
            background: rgba(255, 77, 106, 0.2);
            border-color: rgba(255, 77, 106, 0.4);
            transform: rotate(90deg);
        }

        .lightbox-caption {
            margin-top: 15px;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 0.5px;
        }


/* ============================================================
   REGALOS 365 - SAFE RESPONSIVE MOBILE FIX
   ------------------------------------------------------------
   Asegura visibilidad 100% en todos los navegadores y dispositivos.
   ============================================================ */

/* Evitar scrollbar horizontal desbordado */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Asegurar que las tarjetas siempre sean visibles y flexibles */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 380px;
    height: auto !important;
    box-sizing: border-box;
}

/* Ajustes de grilla de productos en móviles */
@media (max-width: 768px) {
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }
    
    .product-card {
        min-height: 340px !important;
    }

    .product-image {
        height: 180px !important;
        width: 100% !important;
    }

    .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .product-info {
        padding: 12px 10px !important;
    }

    .product-name {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .product-price {
        font-size: 15px !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 6px !important;
    }

    .product-card {
        min-height: 320px !important;
    }

    .product-image {
        height: 150px !important;
    }
}


/* Asegurar que elementos .fade-in y productos siempre sean visibles sin depender de JS */
.fade-in, .fade-in.visible, .product-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Category Tabs Filter Styling */
.category-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 35px;
    max-width: 900px;
    padding: 0 15px;
}
.cat-tab-btn {
    background: #ffffff;
    color: var(--text-medium, #4A4A5A);
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cat-tab-btn:hover {
    background: #FFF0F2;
    color: var(--primary, #FF4D6A);
    border-color: rgba(255, 77, 106, 0.35);
    transform: translateY(-2px);
}
.cat-tab-btn.active {
    background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 77, 106, 0.35);
}
@media (max-width: 640px) {
    .category-tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .cat-tab-btn {
        flex-shrink: 0;
        font-size: 12.5px;
        padding: 8px 14px;
    }
}

/* ========== FLOATING CATEGORY FILTER BAR ========== */
.category-filter-bar {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 16px;
    padding: 8px 10px;
    max-width: 94vw;
    width: auto;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 77, 106, 0.08);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.category-filter-bar.visible {
    top: 80px;
    opacity: 1;
    pointer-events: all;
}

.category-filter-track {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    padding: 2px;
}

.category-filter-track::-webkit-scrollbar {
    display: none;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    color: var(--text-dark, #1A1A2E);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    letter-spacing: 0.1px;
    outline: none;
}

.category-filter-btn:hover {
    background: rgba(255, 77, 106, 0.08);
    color: var(--primary, #FF4D6A);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 77, 106, 0.12);
}

.category-filter-btn:active {
    transform: scale(0.97);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 77, 106, 0.35);
    transform: translateY(-1px);
}

.category-filter-btn.active:hover {
    box-shadow: 0 6px 20px rgba(255, 77, 106, 0.45);
    transform: translateY(-2px);
}

.cfb-emoji {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}

.cfb-text {
    line-height: 1;
    pointer-events: none;
}

.cfb-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    transition: all 0.25s ease;
}

.category-filter-btn.active .cfb-count {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .category-filter-bar.visible {
        top: 58px;
    }

    .category-filter-bar {
        max-width: 100vw;
        width: 100%;
        border-radius: 0;
        left: 0;
        transform: none;
        padding: 6px 8px;
    }

    .category-filter-btn {
        padding: 9px 15px;
        font-size: 12.5px;
        border-radius: 10px;
        gap: 5px;
    }

    .cfb-emoji {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-filter-bar.visible {
        top: 52px;
    }

    .category-filter-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }
}

/* ========== FILTER TRANSITIONS FOR PRODUCTS ========== */
#mainProductsGrid .product-card {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#mainProductsGrid .product-card.card-hidden {
    display: none !important;
}

/* ============================================================
   HERO SLIDER COMERCIAL CON LOGO TRANSPARENTE
   ============================================================ */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #0f172a;
}

/* Logo Flotante Sin Fondo */
.hero-logo-overlay {
    position: absolute;
    top: 24px;
    left: 40px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 8px 18px 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.hero-logo-badge {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Slider Container & Slides */
.hero-slider-container {
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 80px 50px;
    box-sizing: border-box;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-content {
    max-width: 580px;
    color: white;
    z-index: 12;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    font-weight: 500;
}

.slide-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.slide-btn.primary {
    background: #ffffff;
    color: #1A1A2E;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.slide-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.slide-btn.secondary {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.slide-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.slide-image {
    position: relative;
    max-width: 440px;
    width: 100%;
    z-index: 12;
}

.slide-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

.slide-floating-tag {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #FF4D6A;
    color: white;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Navigation Controls & Dots */
.hero-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
}

.hero-slide-nav:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.hero-slide-nav.prev { left: 24px; }
.hero-slide-nav.next { right: 24px; }

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 20px;
}

/* RESPONSIVE HERO SLIDER */
@media (max-width: 900px) {
    .hero-slide {
        flex-direction: column;
        padding: 80px 24px 60px;
        text-align: center;
    }
    .slide-content { max-width: 100%; }
    .slide-title { font-size: 30px; }
    .slide-cta { justify-content: center; }
    .slide-image { margin-top: 24px; max-width: 100%; }
    .slide-image img { height: 220px; }
    .hero-logo-overlay { top: 16px; left: 16px; padding: 6px 14px; }
    .hero-logo-img { height: 28px; }
}

/* ============================================================
   BOTONES DUALES DE COMPRA (TARJETAS Y PÁGINA)
   ============================================================ */
.product-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
}

.btn-detalles-sm, .btn-whatsapp-sm, .btn-flow-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s, background 0.15s;
}

.btn-detalles-sm {
    background: #F1F5F9;
    color: #334155;
}
.btn-detalles-sm:hover { background: #E2E8F0; }

.btn-whatsapp-sm {
    background: #25D366;
    color: white;
}
.btn-whatsapp-sm:hover { background: #20BA5A; }

.btn-flow-sm {
    background: linear-gradient(135deg, #FF4D6A 0%, #FF8C42 100%);
    color: white;
}
.btn-flow-sm:hover { filter: brightness(1.08); }

/* PÁGINA DE PRODUCTO INDIVIDUAL */
.product-action-buttons-page {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.btn-whatsapp-page, .btn-flow-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp-page {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.btn-whatsapp-page:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.btn-flow-page {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D3F 100%);
    color: white;
    border: 2px solid #FF4D6A;
    box-shadow: 0 8px 25px rgba(255,77,106,0.25);
}
.btn-flow-page:hover {
    transform: translateY(-2px);
    background: #FF4D6A;
    box-shadow: 0 12px 30px rgba(255,77,106,0.4);
}

/* ============================================================
   CENTRADOS Y ALINEACIÓN DE SECCIONES EN EL SITIO WEB
   ============================================================ */
.hero,
.hero-content,
.hero-slider-section,
.ai-cuadro-section,
.flash-sale,
.newsletter,
.categories,
.products,
.social-proof,
.faq-section,
.guarantee-bar,
.trust-badges,
.header-container,
.nav-container,
.footer-content {
    max-width: 1200px !important;
    width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

@media (max-width: 600px) {
    .hero-slider-section,
    .ai-cuadro-section,
    .flash-sale,
    .newsletter,
    .categories,
    .products,
    .social-proof,
    .faq-section,
    .guarantee-bar,
    .trust-badges {
        width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ========== MOBILE VIEW: SOLO MOSTRAR BOTONES COMPRAR Y DETALLE ========== */
@media (max-width: 640px) {
    .btn-whatsapp-sm {
        display: none !important;
    }
    .product-card-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        width: 100% !important;
        margin-top: 8px !important;
    }
    .product-card-sub-buttons {
        display: contents !important;
    }
    .btn-flow-sm, .btn-detalles-sm {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px 6px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .sales-toast-overlay {
        bottom: 25px !important;
        left: 12px !important;
        right: 12px !important;
        max-width: calc(100% - 24px) !important;
    }
}
