    /* 
    Theme Name: qogitoTheme
    Theme Uri: https://127.0.0.1/qogitoTheme
    Author: Jordy Brian
    Author URI: https://www.nexgendev.com/
    Description: Theme "qogito"
    Version: 1.0
    */
    
    
    body {
        font-family: "poppins", sans-serif;
        overflow-x: hidden;
    }

    .material-symbols-outlined.fill {
        font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Cinzel", sans-serif;
    }

    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }

    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .accordion-content {
        transition: max-height 0.3s ease-out;
    }

    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    }

    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease-out;
    }

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .account-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease-out;
    }

    .account-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item:hover {
        background-color: #f8fafc;
    }

    .filter-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease-out;
        overflow: hidden;
    }

    .filter-content[data-open="true"] {
        grid-template-rows: 1fr;
    }

    .filter-inner {
        min-height: 0;
    }

    .accordion-trigger .chevron {
        transition: transform 0.3s ease;
    }

    .accordion-trigger[aria-expanded="true"] .chevron {
        transform: rotate(180deg);
    }

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #size-guide-modal {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    #size-guide-modal.show {
        display: flex;
        opacity: 1;
    }

    .modal-content-anim {
        transform: translateY(20px);
        transition: transform 0.3s ease-out;
    }

    #size-guide-modal.show .modal-content-anim {
        transform: translateY(0);
    }

    .size-table th {
        @apply text-slate-400 font-bold text-[10px] uppercase tracking-widest py-4 border-b border-slate-100 dark:border-slate-800;
    }

    .size-table td {
        @apply py-4 text-sm border-b border-slate-50 dark:border-slate-900;
    }

    @keyframes borderShrink {
        100% {
            width: 0;
        }
    }

    @keyframes sideLeft {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(0);
        }
    }

    #toastNotification {
        position: absolute;
        bottom: 0;
        right: 20px;
        z-index: 9999;
    }

    .toast {
        background: #fff;
        padding: 20px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 400px;
        font-size: 18px;
        z-index: 9999;
        position: relative;
        animation: sideLeft 1s linear forwards;
    }

    .toast .icon {
        font-size: 28px;
        color: #086108;

    }

    .toast.error .icon {
        font-size: 28px;
        color: #dc1414;

    }

    .toast::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #086108;
        animation: borderShrink 5s linear forwards;
    }

    .toast.error::after {
        background: #dc1414;
    }

    @media print {
        .no-print {
            display: none;
        }

        body {
            background-color: white;
        }
    }
    
        @keyframes pulse-whatsapp {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    .whatsapp-float {
        position: fixed;
        bottom: 90px;
        right: 30px;
        background-color: #25D366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        z-index: 1000;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        animation: pulse-whatsapp 2s infinite;
        transition: all 0.3s ease;
    }
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    .whatsapp-tooltip {
        visibility: hidden;
        width: 120px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1001;
        right: 75px;
        bottom: 15px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 12px;
        font-weight: 600;
    }
    .whatsapp-float:hover + .whatsapp-tooltip {
        visibility: visible;
        opacity: 1;
    }

    /* .mega-menu-trigger:hover .mega-menu {
        display: block;
    }

    .mega-menu {
        display: none;
    } */
    /* 
       .search-overlay {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .search-results-modal {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .search-results-modal.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .search-item:hover {
        background-color: rgba(236, 91, 19, 0.05);
    } */