    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #0066ff;
        --primary-dark: #0052cc;
        --secondary-color: #00c853;
        --accent-color: #ff3d00;
        --text-dark: #1a1a1a;
        --text-gray: #666666;
        --bg-light: #f5f7fa;
        --white: #ffffff;
        --black: #000000;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
        --border-radius: 16px;
    }

    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.98);
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s ease;
    }

    .loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .loading-spinner {
        width: 60px;
        height: 60px;
        border: 5px solid var(--bg-light);
        border-top: 5px solid var(--primary-color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        padding: 20px 0 30px;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .header::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .header-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-circular {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--white);
        /* padding: 15px; */
        box-shadow: var(--shadow-lg);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 5px solid rgba(255, 255, 255, 0.3);
    }

    .logo-circular img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    .store-title {
        font-size: 28px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0, 200, 83, 0.4);
        animation: pulse-badge 2s infinite;
        transition: all 0.3s ease;
    }

    .status-badge.fixed {
        position: fixed !important;
        top: 16px !important;
        left: 16px !important;
        z-index: 99999 !important;
        animation: slideInLeft 0.4s ease, pulse-badge-fixed 2s infinite !important;
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }

    #status-badge-fixed {
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 99999;
        display: none;
        align-items: center;
        gap: 8px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.3);
        animation: pulse-badge-fixed 2s infinite;
        opacity: 0;
        transform: translateX(-100px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    #status-badge-fixed.show {
        display: inline-flex;
        opacity: 1;
        transform: translateX(0);
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-100px) scale(1);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    @keyframes pulse-badge {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @keyframes pulse-badge-fixed {

        0%,
        100% {
            transform: translateX(0) scale(1);
        }

        50% {
            transform: translateX(0) scale(1.05);
        }
    }

    .status-dot {
        width: 10px;
        height: 10px;
        background: var(--white);
        border-radius: 50%;
        animation: blink 1.5s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    .header-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin-top: 20px;
    }

    .info-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .info-card[style*="cursor: pointer"]:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
    }

    .info-icon {
        width: 40px;
        height: 40px;
        background: var(--white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
    }

    .info-text {
        flex: 1;
    }

    .info-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-value {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
    }

    .slider-wrapper {
        margin-top: 10px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .banner-slider {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 400px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
    }

    .slider-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
        height: 100%;
    }

    .slider-item {
        min-width: 100%;
        height: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .slider-item.fade-mode {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .slider-item.fade-mode.active {
        opacity: 1;
    }

    .banner {
        position: relative;
        height: 400px;
        background-size: cover;
        background-position: center;
        margin-bottom: 30px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .promo-alert {
        background: linear-gradient(135deg, var(--accent-color), #ff6b35);
        color: var(--white);
        padding: 16px 24px;
        border-radius: var(--border-radius);
        margin-bottom: 24px;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
        box-shadow: var(--shadow-md);
        animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .promo-alert i {
        font-size: 20px;
        margin-right: 12px;
        animation: bounce 1s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 28px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-subtitle {
        font-size: 14px;
        color: var(--text-gray);
        font-weight: 400;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }

    .product-card {
        background: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        border: 2px solid transparent;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .product-badge-top {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--black);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 4px;
        box-shadow: var(--shadow-md);
    }

    .badge-icon {
        font-size: 10px;
    }

    .product-image-wrapper {
        position: relative;
        padding: 20px;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .product-image {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.3s ease;
    }

    .product-card:hover .product-image {
        transform: scale(1.05);
    }

    .product-body {
        padding: 20px;
    }

    .product-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .product-description {
        font-size: 14px;
        color: var(--text-gray);
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .product-delivery-info {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #e8f5e9;
        color: var(--secondary-color);
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .product-pricing {
        margin-bottom: 16px;
    }

    .price-row {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 8px;
    }

    .price-old {
        font-size: 16px;
        color: var(--text-gray);
        text-decoration: line-through;
    }

    .price-current {
        font-size: 32px;
        font-weight: 800;
        color: var(--secondary-color);
    }

    .price-installment {
        font-size: 12px;
        color: var(--text-gray);
    }

    .product-stock-alert {
        background: #fff3e0;
        border-left: 4px solid #ff9800;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 13px;
        color: #e65100;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stock-icon {
        font-size: 16px;
    }

    .product-button {
        width: 100%;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 16px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .product-button:hover {
        background: var(--primary-dark);
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    }

    .product-button i {
        font-size: 18px;
    }

    .button-badge {
        animation: badge-float 2s infinite ease-in-out;
    }

    @keyframes badge-float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    .countdown-section {
        background: linear-gradient(135deg, #ffd54f, #ffb300);
        border-radius: var(--border-radius);
        padding: 40px 30px;
        text-align: center;
        margin-bottom: 40px;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .countdown-section::before {
        content: '🔥';
        position: absolute;
        font-size: 200px;
        opacity: 0.1;
        top: -50px;
        right: -50px;
        animation: rotate 10s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .countdown-title {
        font-size: 32px;
        font-weight: 900;
        color: var(--black);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .countdown-subtitle {
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 24px;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .countdown-box {
        background: var(--white);
        border-radius: 12px;
        padding: 20px 30px;
        box-shadow: var(--shadow-md);
        min-width: 100px;
    }

    .countdown-value {
        font-size: 48px;
        font-weight: 900;
        color: var(--accent-color);
        display: block;
        line-height: 1;
    }

    .countdown-label {
        font-size: 12px;
        color: var(--text-gray);
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 8px;
    }

    .reviews-section {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 40px 30px;
        margin-bottom: 40px;
        box-shadow: var(--shadow-sm);
    }

    .review-card {
        border-bottom: 1px solid #f0f0f0;
        padding: 24px 0;
    }

    .review-card:last-child {
        border-bottom: none;
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 12px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary-color);
    }

    .review-info h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .review-stars {
        color: #ffc107;
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
        color: var(--text-gray);
        line-height: 1.7;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 9990;
        text-decoration: none;
        animation: pulse-whatsapp 2s infinite;
    }

    @keyframes pulse-whatsapp {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }
    }

    .whatsapp-float:hover {
        transform: scale(1.15);
    }

    .geo-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .geo-modal.active {
        display: flex;
    }

    .geo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }

    .geo-content {
        position: relative;
        background: var(--white);
        border-radius: 20px;
        padding: 40px 30px;
        max-width: 450px;
        width: 90%;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        text-align: center;
        animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .geo-step {
        display: none;
    }

    .geo-step.active {
        display: block;
        animation: fadeInStep 0.3s ease;
    }

    @keyframes fadeInStep {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .geo-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    }

    .geo-icon i {
        font-size: 36px;
        color: var(--white);
    }

    .geo-icon.loading {
        background: linear-gradient(135deg, #ffd54f, #ffb300);
        animation: pulse-geo 1.5s infinite;
    }

    .geo-icon.success {
        background: linear-gradient(135deg, var(--secondary-color), #00e676);
        box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
    }

    @keyframes pulse-geo {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 8px 24px rgba(255, 179, 0, 0.3);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(255, 179, 0, 0.5);
        }
    }

    .geo-spinner {
        width: 36px;
        height: 36px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid var(--white);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    .geo-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .geo-subtitle {
        font-size: 15px;
        color: var(--text-gray);
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .geo-subtitle strong {
        color: var(--primary-color);
        font-weight: 700;
    }

    .geo-select {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        background: var(--white);
        margin-bottom: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    .geo-select:hover {
        border-color: var(--primary-color);
    }

    .geo-select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    }

    .geo-button {
        width: 100%;
        padding: 18px 24px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: none;
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    }

    .geo-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
    }

    .geo-button:active {
        transform: translateY(0);
    }

    .geo-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .geo-button.success {
        background: linear-gradient(135deg, var(--secondary-color), #00e676);
        box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
    }

    .geo-button.success:hover {
        box-shadow: 0 8px 28px rgba(0, 200, 83, 0.4);
    }

    @media (max-width: 768px) {
        .geo-content {
            padding: 32px 24px;
            max-width: 90%;
        }

        .geo-icon {
            width: 70px;
            height: 70px;
        }

        .geo-icon i {
            font-size: 32px;
        }

        .geo-title {
            font-size: 22px;
        }

        .geo-subtitle {
            font-size: 14px;
        }

        .geo-select {
            padding: 14px 18px;
            font-size: 14px;
        }

        .geo-button {
            padding: 16px 20px;
            font-size: 15px;
        }
    }

    .custom-toast {
        position: fixed;
        bottom: 24px;
        right: 24px;
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
        border-left: 4px solid var(--secondary-color);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 12px 18px;
        max-width: 320px;
        min-width: 280px;
        z-index: 99998;
        opacity: 0;
        transform: translateX(400px) scale(0.8);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: none;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Poppins', sans-serif;
        backdrop-filter: blur(10px);
    }

    .custom-toast.show {
        opacity: 1;
        transform: translateX(0) scale(1);
        pointer-events: auto;
    }

    .custom-toast.hide {
        opacity: 0;
        transform: translateX(400px) scale(0.8);
    }

    .toast-icon {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, var(--secondary-color), #00e676);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 16px;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
        animation: pulse-icon 2s infinite;
    }

    @keyframes pulse-icon {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 200, 83, 0.5);
        }
    }

    .toast-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .toast-message {
        font-size: 13px;
        color: var(--text-dark);
        line-height: 1.4;
        font-weight: 500;
    }

    .toast-message b {
        font-weight: 700;
        color: var(--primary-color);
    }

    .toast-timestamp {
        font-size: 10px;
        color: var(--text-gray);
        font-weight: 400;
    }

    .toast-close {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: transparent;
        border: none;
        color: var(--text-gray);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .toast-close:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
        transform: rotate(90deg);
    }

    .toast-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--secondary-color), #00e676);
        border-radius: 0 0 0 12px;
        animation: progress 5000ms linear;
        transform-origin: left;
    }

    @keyframes progress {
        from {
            width: 100%;
        }

        to {
            width: 0%;
        }
    }

    @media (max-width: 768px) {
        .custom-toast {
            bottom: 16px;
            right: 16px;
            max-width: calc(100vw - 32px);
            min-width: 260px;
            padding: 10px 14px;
        }

        .toast-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

        .toast-message {
            font-size: 12px;
        }
    }

    .cookie-consent {
        position: fixed;
        z-index: 99997;
        display: none;
        transition: all 0.3s ease;
    }

    .cookie-consent.show {
        display: flex;
    }

    .cookie-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        z-index: 99996;
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .cookie-overlay.show {
        display: block;
    }

    .cookie-consent.position-footer {
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        animation: slideUpCookie 0.4s ease;
    }

    @keyframes slideUpCookie {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .cookie-consent.position-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        padding: 40px;
        max-width: 600px;
        width: 90%;
        animation: slideUpCenter 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .cookie-consent.position-center.show {
        display: block;
    }

    @keyframes slideUpCenter {
        from {
            opacity: 0;
            transform: translate(-50%, -40%) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .cookie-consent.position-fullscreen {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.4s ease;
    }

    .cookie-consent.position-fullscreen.show {
        display: flex;
    }

    .cookie-consent.position-fullscreen .cookie-content {
        max-width: 700px;
        padding: 60px 40px;
        text-align: center;
    }

    .cookie-consent.position-fullscreen .cookie-message {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .cookie-consent.position-fullscreen .cookie-actions {
        justify-content: center;
    }

    .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    .cookie-consent.position-center .cookie-content,
    .cookie-consent.position-fullscreen .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    }

    .cookie-consent.position-center .cookie-icon,
    .cookie-consent.position-fullscreen .cookie-icon {
        display: flex;
    }

    .cookie-icon i {
        font-size: 32px;
        color: var(--white);
    }

    .cookie-message {
        flex: 1;
        font-size: 14px;
        color: var(--text-dark);
        line-height: 1.6;
        min-width: 250px;
    }

    .cookie-consent.position-center .cookie-message,
    .cookie-consent.position-fullscreen .cookie-message {
        min-width: auto;
    }

    .cookie-actions {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }

    .cookie-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .cookie-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .exit-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999998;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .exit-modal.show {
        display: flex;
    }

    .exit-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }

    .exit-content {
        position: relative;
        background: var(--white);
        border-radius: 20px;
        padding: 50px 40px;
        max-width: 550px;
        width: 90%;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        text-align: center;
        animation: slideUpExit 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideUpExit {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .exit-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: linear-gradient(135deg, #ff6b35, #f97316);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    }

    .exit-icon i {
        font-size: 40px;
        color: var(--white);
    }

    .exit-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .exit-subtitle {
        font-size: 16px;
        color: var(--text-gray);
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .exit-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .exit-btn-primary {
        width: 100%;
        padding: 18px 32px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    }

    .exit-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
    }

    .exit-btn-close {
        background: transparent;
        color: var(--text-gray);
        border: none;
        padding: 12px;
        font-size: 15px;
        cursor: pointer;
        transition: color 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .exit-btn-close:hover {
        color: var(--text-dark);
    }

    .checkout-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .checkout-modal.show {
        display: flex;
    }

    .checkout-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }

    .checkout-content {
        position: relative;
        background: var(--white);
        border-radius: 20px;
        padding: 30px 24px;
        max-width: 400px;
        width: 90%;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUpCheckout 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideUpCheckout {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .checkout-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        color: var(--text-gray);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .checkout-close:hover {
        background: rgba(0, 0, 0, 0.1);
        color: var(--text-dark);
        transform: rotate(90deg);
    }

    .checkout-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
        text-align: center;
    }

    .checkout-product {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 16px;
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .checkout-product-img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--white);
        padding: 8px;
    }

    .checkout-product-info {
        flex: 1;
    }

    .checkout-product-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .checkout-product-price {
        font-size: 18px;
        font-weight: 800;
        color: var(--secondary-color);
    }

    .checkout-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .checkout-btn {
        width: 100%;
        padding: 16px 24px;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .checkout-btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: var(--white);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    }

    .checkout-btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    }

    .checkout-btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    }

    .checkout-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
    }

    .filter-section {
        margin-bottom: 30px;
    }

    .filter-container {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 24px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 24px;
    }

    .filter-search {
        width: 100%;
        padding: 14px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        background: var(--white);
        transition: all 0.3s ease;
    }

    .filter-search:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    }

    .filter-search::placeholder {
        color: var(--text-gray);
    }

    .cart-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .cart-modal.show {
        display: flex;
    }

    .cart-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
    }

    .cart-content {
        position: relative;
        background: var(--white);
        border-radius: 20px;
        padding: 30px 24px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUpCart 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideUpCart {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #f0f0f0;
    }

    .cart-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cart-close {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        color: var(--text-gray);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .cart-close:hover {
        background: rgba(0, 0, 0, 0.1);
        color: var(--text-dark);
        transform: rotate(90deg);
    }

    .cart-items {
        margin-bottom: 24px;
    }

    .cart-item {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
        display: flex;
        gap: 16px;
    }

    .cart-item-img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--white);
        padding: 8px;
        flex-shrink: 0;
    }

    .cart-item-details {
        flex: 1;
    }

    .cart-item-name {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .cart-item-price {
        font-size: 18px;
        font-weight: 800;
        color: var(--secondary-color);
        margin-bottom: 12px;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .quantity-btn:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
    }

    .quantity-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .quantity-value {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        min-width: 32px;
        text-align: center;
    }

    .cart-item-remove {
        background: transparent;
        border: none;
        color: #ff3d00;
        cursor: pointer;
        font-size: 20px;
        padding: 8px;
        transition: all 0.3s ease;
        margin-left: 8px;
    }

    .cart-item-remove:hover {
        transform: scale(1.2);
    }

    .cart-empty {
        text-align: center;
        padding: 40px 20px;
    }

    .cart-empty-icon {
        font-size: 64px;
        color: #e0e0e0;
        margin-bottom: 16px;
    }

    .cart-empty-text {
        font-size: 16px;
        color: var(--text-gray);
        margin-bottom: 8px;
    }

    .cart-summary {
        border-top: 2px solid #f0f0f0;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .cart-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .cart-summary-label {
        font-size: 14px;
        color: var(--text-gray);
    }

    .cart-summary-value {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8f9fa;
        padding: 16px;
        border-radius: 12px;
        margin-top: 16px;
    }

    .cart-total-label {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .cart-total-value {
        font-size: 24px;
        font-weight: 900;
        color: var(--secondary-color);
    }

    .cart-checkout-btn {
        width: 100%;
        padding: 18px 24px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    }

    .cart-checkout-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
    }

    .cart-checkout-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .newsletter-section {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: var(--border-radius);
        padding: 40px 30px;
        margin-bottom: 40px;
        text-align: center;
        box-shadow: var(--shadow-lg);
    }

    .newsletter-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px;
    }

    .newsletter-form {
        display: flex;
        gap: 12px;
        max-width: 500px;
        margin: 0 auto;
    }

    .newsletter-input {
        flex: 1;
        padding: 14px 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        background: rgba(255, 255, 255, 0.9);
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .newsletter-input:focus {
        outline: none;
        background: var(--white);
        border-color: var(--white);
    }

    .newsletter-btn {
        padding: 14px 32px;
        background: var(--white);
        color: var(--primary-color);
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        white-space: nowrap;
    }

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .contact-form-section {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 40px 30px;
        margin-bottom: 40px;
        box-shadow: var(--shadow-sm);
    }

    .contact-form-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 24px;
        text-align: center;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .form-label.required::after {
        content: '*';
        color: #ff3d00;
        margin-left: 4px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 14px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        background: var(--white);
        transition: all 0.3s ease;
    }

    .form-textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    }

    .form-submit {
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
    }

    .footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 50px 0 30px;
        margin-top: 60px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--white);
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 2;
        text-decoration: none;
        display: block;
    }

    .footer-section a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        text-align: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 768px) {
        .header {
            padding: 16px 0 24px;
        }

        .logo-circular {
            width: 100px;
            height: 100px;
        }

        .store-title {
            font-size: 22px;
        }

        .header-info-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .product-badge-top {
            top: 8px;
            left: 8px;
            padding: 4px 8px;
            font-size: 8px;
            gap: 3px;
            border-radius: 16px;
        }

        .badge-icon {
            font-size: 9px;
        }

        .product-image-wrapper {
            padding: 15px;
            height: 180px;
        }

        .status-badge.fixed {
            top: 12px;
            left: 12px;
            padding: 6px 14px;
            font-size: 12px;
            gap: 6px;
        }

        .status-badge.fixed .status-dot {
            width: 8px;
            height: 8px;
        }

        #status-badge-fixed {
            top: 12px;
            left: 12px;
            padding: 6px 14px;
            font-size: 12px;
            gap: 6px;
        }

        #status-badge-fixed .status-dot {
            width: 8px;
            height: 8px;
        }

        .slider-wrapper {
            padding: 0 12px;
            margin-bottom: 24px;
        }

        .banner-slider,
        .banner {
            height: 250px;
            border-radius: 12px;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .section-title {
            font-size: 22px;
        }

        .countdown-timer {
            gap: 12px;
        }

        .countdown-box {
            padding: 16px 20px;
            min-width: 80px;
        }

        .countdown-value {
            font-size: 36px;
        }

        .countdown-title {
            font-size: 24px;
        }

        .whatsapp-float {
            width: 55px;
            height: 55px;
            font-size: 26px;
            bottom: 16px;
            right: 16px;
        }
    }

    @media (max-width: 768px) {
        .cookie-content {
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }

        .cookie-actions {
            flex-direction: column;
            width: 100%;
        }

        .cookie-btn {
            width: 100%;
        }

        .cookie-consent.position-center {
            padding: 32px 24px;
            max-width: 90%;
        }

        .cookie-consent.position-fullscreen .cookie-content {
            padding: 40px 24px;
        }

        .cookie-consent.position-fullscreen .cookie-message {
            font-size: 16px;
        }

        .exit-content {
            padding: 40px 24px;
            max-width: 90%;
        }

        .exit-icon {
            width: 70px;
            height: 70px;
        }

        .exit-icon i {
            font-size: 32px;
        }

        .exit-title {
            font-size: 26px;
        }

        .exit-subtitle {
            font-size: 14px;
        }

        .exit-btn-primary {
            padding: 16px 24px;
            font-size: 16px;
        }

        .checkout-content {
            padding: 24px 20px;
            max-width: 90%;
        }

        .checkout-product {
            padding: 12px;
        }

        .checkout-product-img {
            width: 50px;
            height: 50px;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-btn {
            width: 100%;
        }

        .cart-content {
            max-width: 90%;
        }

        .cart-item-img {
            width: 70px;
            height: 70px;
        }
    }

    @media (max-width: 480px) {
        .slider-wrapper {
            padding: 0 8px;
            margin-bottom: 20px;
        }

        .banner-slider,
        .banner {
            height: 200px;
        }

        .container {
            padding: 0 12px;
        }

        .product-body {
            padding: 16px;
        }

        .countdown-box {
            padding: 12px 16px;
            min-width: 70px;
        }

        .countdown-value {
            font-size: 28px;
        }

        .countdown-label {
            font-size: 10px;
        }

        .cookie-consent.position-footer {
            padding: 16px;
        }

        .cookie-consent.position-center {
            padding: 24px 20px;
            max-width: 95%;
        }

        .cookie-consent.position-fullscreen .cookie-content {
            padding: 32px 20px;
        }

        .cookie-consent.position-fullscreen .cookie-message {
            font-size: 15px;
        }

        .cookie-message {
            font-size: 13px;
        }

        .cookie-btn {
            padding: 10px 20px;
            font-size: 13px;
        }

        .exit-content {
            padding: 32px 20px;
        }

        .exit-title {
            font-size: 22px;
        }

        .exit-subtitle {
            font-size: 13px;
        }

        .checkout-content {
            padding: 20px 16px;
        }

        .checkout-title {
            font-size: 18px;
        }

        .checkout-product-name {
            font-size: 13px;
        }

        .checkout-product-price {
            font-size: 16px;
        }

        .checkout-btn {
            padding: 14px 20px;
            font-size: 14px;
        }

        .filter-container {
            padding: 16px;
        }

        .filter-search {
            padding: 12px 16px;
            font-size: 14px;
        }

        .newsletter-section {
            padding: 32px 20px;
        }

        .newsletter-title {
            font-size: 22px;
        }

        .newsletter-input,
        .newsletter-btn {
            padding: 12px 16px;
            font-size: 14px;
        }

        .contact-form-section {
            padding: 32px 20px;
        }

        .contact-form-title {
            font-size: 22px;
        }

        .form-input,
        .form-textarea {
            padding: 12px 16px;
            font-size: 14px;
        }

        .cart-item {
            padding: 12px;
        }

        .cart-item-img {
            width: 60px;
            height: 60px;
        }

        .cart-item-name {
            font-size: 14px;
        }

        .cart-item-price {
            font-size: 16px;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            font-size: 14px;
        }
    }