:root {
    --color-new-primary: #FCA60A;
    --color-new-accent: #0A5FFB;
    --color-new-text-dark: #1A1A1A;
    --color-new-text-gray: #3A3A3A;
    --color-new-bg-light: #F7F7F7;
    --color-new-border: #E0E0E0;
    --color-new-primary-hover: #E69300;
    --new-radius: 10px;
}
.footer_store_info {
    display: none;
}
@media(max-width: 767px) {
    .sphinx_header nav {
        padding: 4px 0;
    }
    .sphinx_header > nav > div > div:nth-of-type(2) {
    left: 50%;
    position: absolute;
    width: 40%;
    top: 10px;
    transform: translateX(-50%);
    margin: 0;
    }
    /* .product_description .ql-editor{
        height: 0;
        overflow: hidden;
        transition: .3s;
    }
    .product_description:hover .ql-editor{
        height: fit-content;
    } */
}
@media(max-width: 400px) {
    .home_grid_section_card button {
        padding: 0.475rem 1rem;
        border-radius: 10px;
    }
}



/* all screen styles */
/* home page */
.sphinx_header>nav>div .flow-root {
    color: var(--color-new-primary);
}

#tabs {
    padding: 7px 0;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#tabs .text-\[\#010101\] {
    --tw-text-opacity: 1;
    color: #fca60a;
}
.home_banner_img img {
    margin: 0;
}
.home_grid_section_card img{
    transition: .3s ease-in-out !important;
}
.home_grid_section_card:hover img {
    transform: rotate(-10deg) scale(1.2) !important;
    opacity: .6 !important;
}


/* product page */
.checkout_btn,
.home_grid_section_card button,
.form_checkout_btn {
    background-color: var(--color-new-primary);
    transition: .2s;
    animation: pulse 3s infinite ease-in-out;
}

.checkout_btn:hover,
.home_grid_section_card button:hover,
.form_checkout_btn:hover {
    background-color: var(--color-new-primary-hover);
}


/* floating tabs */ 
section.fixed.inset-x-5 {
    transition: transform .3s ease;
    transform: translateY(50%);
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 166, 10, 0.6);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(252, 166, 10, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 166, 10, 0);
    }
}