
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #01649c;
            --primary-dark: #03233c;
            --secondary: #efbd4c;
            --accent: #efbd4c;
            --text-dark: #03233c;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background: var(--primary-dark);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid var(--secondary);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
            position: relative;
            padding-bottom: 0.3rem;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Menu Overlay */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: opacity 0.3s;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Secondary Navigation */
        .secondary-nav {
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(239, 189, 76, 0.3);
        }

        .secondary-menu {
            display: flex;
            list-style: none;
            gap: 0;
            padding: 0;
        }

        .secondary-menu li {
            flex: 1;
        }

        .secondary-menu a {
            display: block;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            text-align: center;
            transition: background 0.3s, color 0.3s;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .secondary-menu li:last-child a {
            border-right: none;
        }

        .secondary-menu a:hover {
            background: var(--secondary);
            color: var(--primary-dark);
        }

        /* Hero Categories */
        .hero-categories {
            background: var(--bg-light);
            padding: 3rem 0;
        }

        .hero-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .hero-header h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .hero-header .tagline {
            font-size: 1.2rem;
            color: var(--primary);
            font-style: italic;
        }

        .main-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .main-category-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .main-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .category-image {
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .category-overlay {
            text-align: center;
            color: var(--white);
            padding: 2rem;
            z-index: 2;
        }

        .category-icon-large {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .category-overlay h2 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .category-overlay p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .btn-category {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--secondary);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-category:hover {
            background: var(--white);
            transform: scale(1.05);
        }

        /* Full Width Category Slider */
        .fullwidth-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .fw-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .fw-slide.active {
            opacity: 1;
        }

        .fw-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .fw-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(3, 35, 60, 0.85) 0%, rgba(1, 100, 156, 0.75) 100%);
        }

        .fw-slide-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }

        .fw-slide-content .container {
            max-width: 800px;
        }

        .fw-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
            animation: fadeInDown 0.8s;
        }

        .fw-slide-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s;
        }

        .fw-slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.95;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
            animation: fadeInUp 1.2s;
        }

        .btn-fw {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--secondary);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            animation: fadeInUp 1.4s;
            box-shadow: 0 4px 15px rgba(239, 189, 76, 0.3);
        }

        .btn-fw:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(239, 189, 76, 0.4);
        }

        .fw-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--white);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fw-arrow:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }

        .fw-prev {
            left: 30px;
        }

        .fw-next {
            right: 30px;
        }

        .fw-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .fw-dot {
            width: 14px;
            height: 14px;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid var(--white);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .fw-dot.active {
            background: var(--secondary);
            width: 50px;
            border-radius: 7px;
            border-color: var(--secondary);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            animation: fadeInUp 1.2s;
        }

        .btn:hover {
            transform: translateY(-3px);
            background: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(1, 100, 156, 0.3);
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        /* Categories Section */
        .categories {
            background: var(--bg-light);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            padding: 2rem;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .category-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #01649c 0%, #03233c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .category-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .category-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-img {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #01649c 0%, #03233c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 1rem 0;
        }

        .product-price small {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: normal;
        }

        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .product-features li {
            padding: 0.3rem 0;
        }

        .btn-small {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.3s;
        }

        .btn-small:hover {
            background: var(--primary-dark);
        }

        /* About Section */
        .about {
            background: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #01649c 0%, #03233c 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .about-text p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .about-info {
            margin-top: 2rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            text-align: center;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }

        .contact-card h3 {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .contact-card p {
            color: var(--text-light);
        }

        .contact-card a {
            color: var(--primary);
            text-decoration: none;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .footer-section p,
        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary-dark);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-button svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: white;
        }

        .whatsapp-tooltip strong {
            display: block;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .whatsapp-tooltip small {
            color: var(--text-light);
            font-size: 0.85rem;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
            }
            100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
        }

        /* WhatsApp Chat Popup */
        .whatsapp-chat-popup {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 998;
            display: none;
            overflow: hidden;
        }

        .whatsapp-chat-popup.active {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .whatsapp-chat-header {
            background: #25D366;
            color: white;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .whatsapp-chat-header-info {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .whatsapp-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .whatsapp-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .whatsapp-info h4 {
            margin: 0;
            font-size: 1rem;
        }

        .whatsapp-info p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .whatsapp-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-chat-body {
            padding: 1.5rem;
            background: #ece5dd;
            min-height: 200px;
        }

        .whatsapp-message {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .whatsapp-message::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 10px;
            border: 8px solid transparent;
            border-right-color: white;
        }

        .whatsapp-message p {
            margin: 0;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .whatsapp-time {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            text-align: right;
        }

        .whatsapp-chat-footer {
            padding: 1rem;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .whatsapp-input-group {
            display: flex;
            gap: 0.5rem;
        }

        .whatsapp-input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #e5e7eb;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        .whatsapp-send-btn {
            background: #25D366;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .whatsapp-send-btn:hover {
            background: #20bd5a;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: var(--primary-dark);
                width: 80%;
                max-width: 300px;
                height: 100vh;
                text-align: left;
                transition: 0.3s;
                box-shadow: 2px 0 10px rgba(0,0,0,0.3);
                padding: 5rem 0 2rem 0;
                z-index: 1001;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                display: block;
                padding: 1rem 2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: var(--white);
            }

            .nav-menu a:hover {
                background: rgba(239, 189, 76, 0.1);
                color: var(--secondary);
            }

            .nav-menu a::after {
                display: none;
            }

            .burger {
                display: flex;
                z-index: 1002;
            }

            .secondary-nav {
                display: none;
            }

            .hero-header h1 {
                font-size: 1.8rem;
            }

            .hero-header .tagline {
                font-size: 1rem;
            }

            .main-categories {
                grid-template-columns: 1fr;
            }

            .category-image {
                height: 300px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            /* Full Width Slider Responsive */
            .fullwidth-slider {
                height: 400px;
            }

            .fw-icon {
                font-size: 3rem;
            }

            .fw-slide-content h2 {
                font-size: 1.8rem;
            }

            .fw-slide-content p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .btn-fw {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .fw-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .fw-prev {
                left: 10px;
            }

            .fw-next {
                right: 10px;
            }

            .fw-dots {
                bottom: 15px;
            }

            .fw-dot {
                width: 10px;
                height: 10px;
            }

            .fw-dot.active {
                width: 35px;
            }

            /* WhatsApp responsive */
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
            }

            .whatsapp-button svg {
                width: 30px;
                height: 30px;
            }

            .whatsapp-chat-popup {
                width: 90%;
                right: 5%;
                bottom: 90px;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }
