/* ==================================================
   NOGA MENU SHOP
================================================== */

:root {

    --noga-blue: #2465a8;
    --noga-blue-dark: #103f70;

    --noga-yellow: #ffbd00;
    --noga-yellow-hover: #ffc933;

    --noga-white: #ffffff;

    --noga-text: #092b4e;

    --noga-muted: #697887;

    --noga-border: #eee7da;

}


/* ==================================================
   PAGE
================================================== */

.noga-menu-page {

    width: 100%;

    min-height: 100vh;

    background: var(--noga-blue);

    padding: 45px 0 80px;

}


.noga-menu-container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 30px;

}


/* ==================================================
   CATEGORY WRAPPER
================================================== */

.noga-category-wrapper {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 40px;

}


/* ==================================================
   CATEGORY CAROUSEL
================================================== */

.noga-category-carousel {

    flex: 1;

    min-width: 0;

    display: flex;

    align-items: stretch;

    gap: 12px;

    overflow-x: auto;

    overflow-y: hidden;

    padding: 3px;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

}


.noga-category-carousel::-webkit-scrollbar {

    display: none;

}


/* ==================================================
   CATEGORY BUTTON
================================================== */

.noga-category {

    flex: 0 0 auto;

    min-width: 190px;

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 12px 25px;

    border: 2px solid var(--noga-yellow);

    border-radius: 7px;

    background: transparent;

    color: var(--noga-yellow) !important;

    text-decoration: none !important;

    text-align: center;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.25;

    text-transform: uppercase;

    transition:

        background .2s ease,
        color .2s ease,
        transform .2s ease;

}


.noga-category:hover {

    background: rgba(255, 189, 0, .10);

    color: var(--noga-yellow) !important;

    transform: translateY(-2px);

}


.noga-category.active {

    background: var(--noga-yellow);

    color: var(--noga-blue) !important;

}


/* ==================================================
   CATEGORY ARROWS
================================================== */

.noga-cat-arrow {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: var(--noga-yellow);

    color: var(--noga-blue);

    font-size: 22px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:

        transform .2s ease,
        background .2s ease;

}


.noga-cat-arrow:hover {

    background: var(--noga-yellow-hover);

    transform: scale(1.07);

}


/* ==================================================
   PRODUCTS GRID
================================================== */

.noga-products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

}


/* ==================================================
   PRODUCT CARD
================================================== */

.noga-product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--noga-white);

    border: 1px solid
        rgba(255,255,255,.2);

    border-radius: 14px;

    box-shadow:

        0 12px 35px
        rgba(0,0,0,.12);

    transition:

        transform .25s ease,
        box-shadow .25s ease;

}


.noga-product-card:hover {

    transform: translateY(-5px);

    box-shadow:

        0 20px 45px
        rgba(0,0,0,.18);

}


/* ==================================================
   PRODUCT IMAGE
================================================== */

.noga-product-image {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / .76;

    overflow: hidden;

    background: #f4f4f4;

}


.noga-product-image a {

    display: block;

    width: 100%;

    height: 100%;

}


.noga-product-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.noga-product-card:hover
.noga-product-image img {

    transform: scale(1.045);

}


/* ==================================================
   BADGE
================================================== */

.noga-badge {

    position: absolute;

    left: 18px;

    bottom: 17px;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    border-radius: 50px;

    background:
        rgba(9,43,78,.88);

    backdrop-filter: blur(5px);

    color: white;

    font-size: 11px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .7px;

    text-transform: uppercase;

}


.noga-badge::before {

    content: "";

    width: 7px;

    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background:
        var(--noga-yellow);

}


/* ==================================================
   PRODUCT CONTENT
================================================== */

.noga-product-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 23px 24px 25px;

}


/* ==================================================
   TITLE
================================================== */

.noga-product-heading h3 {

    margin: 0 0 10px;

    padding: 0;

    color:
        var(--noga-text);

    font-size: 22px;

    font-weight: 700;

    line-height: 1.3;

}


.noga-product-heading h3 a {

    color:
        var(--noga-text) !important;

    text-decoration: none !important;

}


.noga-product-heading h3 a:hover {

    color:
        var(--noga-blue) !important;

}


/* ==================================================
   DESCRIPTION
================================================== */

.noga-description {

    flex: 1;

    margin-bottom: 22px;

    color:
        var(--noga-muted);

    font-size: 15px;

    line-height: 1.6;

}


/* ==================================================
   PRODUCT BOTTOM
================================================== */

.noga-product-bottom {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;

    margin-top: auto;

}


/* ==================================================
   PRICE
================================================== */

.noga-price {

    color:
        var(--noga-text);

    font-size: 24px;

    font-weight: 800;

    line-height: 1.2;

}


.noga-price .woocommerce-Price-amount {

    color:
        var(--noga-text);

}


.noga-price del {

    display: block;

    margin-bottom: 3px;

    opacity: .45;

    font-size: 15px;

    font-weight: 500;

}


.noga-price ins {

    text-decoration: none;

}


/* ==================================================
   ACTIONS
================================================== */

.noga-product-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 9px;

}


/* ==================================================
   ADD TO CART
================================================== */

.noga-cart-btn,
.noga-cart-btn.button {

    width: 50px !important;

    min-width: 50px !important;

    height: 50px !important;

    min-height: 50px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    margin: 0 !important;

    padding: 0 !important;

    border: none !important;

    border-radius: 50% !important;

    background:
        var(--noga-blue) !important;

    color:
        var(--noga-white) !important;

    text-decoration: none !important;

    box-shadow: none !important;

    transition:

        background .2s ease,
        color .2s ease,
        transform .2s ease !important;

}


.noga-cart-btn:hover,
.noga-cart-btn.button:hover {

    background:
        var(--noga-yellow) !important;

    color:
        var(--noga-blue) !important;

    transform: scale(1.06);

}


.noga-cart-btn svg {

    display: block;

}


/* WooCommerce loading */

.noga-cart-btn.loading {

    opacity: .55;

}


/* WooCommerce added */

.noga-cart-btn.added {

    background:
        var(--noga-yellow) !important;

    color:
        var(--noga-blue) !important;

}


/* Hide default added-to-cart text */

.noga-product-actions
.added_to_cart {

    display: none !important;

}


/* ==================================================
   BUY NOW
================================================== */

.noga-buy-btn {

    height: 50px;

    min-width: 100px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 20px;

    border-radius: 50px;

    background:
        var(--noga-yellow);

    color:
        var(--noga-blue) !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 800;

    line-height: 1;

    transition:

        background .2s ease,
        color .2s ease,
        transform .2s ease;

}


.noga-buy-btn:hover {

    background:
        var(--noga-blue-dark);

    color:
        white !important;

    transform:
        translateY(-2px);

}


/* ==================================================
   PAGINATION
================================================== */

.noga-pagination {

    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 50px;

}


.noga-pagination ul {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.noga-pagination li {

    margin: 0;

    padding: 0;

}


.noga-pagination a,
.noga-pagination span {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0;

    padding: 0;

    border: 2px solid
        var(--noga-yellow);

    border-radius: 50%;

    background: transparent;

    color:
        var(--noga-yellow) !important;

    text-decoration: none !important;

    font-size: 15px;

    font-weight: 700;

    line-height: 1;

    transition:

        background .2s ease,
        color .2s ease,
        transform .2s ease;

}


.noga-pagination a:hover {

    background:
        var(--noga-yellow);

    color:
        var(--noga-blue) !important;

    transform:
        translateY(-2px);

}


.noga-pagination .current {

    background:
        var(--noga-yellow);

    color:
        var(--noga-blue) !important;

    box-shadow:

        0 6px 18px
        rgba(0,0,0,.15);

}


.noga-pagination .prev,
.noga-pagination .next {

    font-size: 24px;

}


/* ==================================================
   EMPTY
================================================== */

.noga-empty {

    max-width: 600px;

    margin: 60px auto;

    padding: 50px 30px;

    border-radius: 15px;

    background: white;

    text-align: center;

}


.noga-empty-icon {

    margin-bottom: 15px;

    font-size: 40px;

}


.noga-empty h3 {

    margin: 0 0 10px;

    color:
        var(--noga-text);

}


.noga-empty p {

    margin-bottom: 20px;

    color:
        var(--noga-muted);

}


.noga-empty a {

    display: inline-flex;

    padding: 13px 25px;

    border-radius: 50px;

    background:
        var(--noga-yellow);

    color:
        var(--noga-blue) !important;

    text-decoration: none !important;

    font-weight: 700;

}

.noga-product-card .added_to_cart.wc-forward {
    display: none !important;
}


/* =====================================================
   BOTTOM CART BAR
===================================================== */

.noga-cart-bar {
    position: fixed;

    left: 50%;
    bottom: 20px;

    transform:
        translate(-50%, 130%);

    width: calc(100% - 40px);
    max-width: 760px;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        transform .4s ease,
        opacity .35s ease,
        visibility .35s ease;
}


/* SHOW */

.noga-cart-bar.is-visible {

    transform:
        translate(-50%, 0);

    opacity: 1;
    visibility: visible;
}


/* INNER */

.noga-cart-bar-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 14px 12px 18px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, .20);

    border: 1px solid
        rgba(0, 0, 0, .06);
}


/* LEFT */

.noga-cart-info {

    display: flex;
    align-items: center;

    gap: 12px;
}


.noga-cart-icon {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2869a7;

    color: #ffffff;
}


.noga-cart-text {

    display: flex;
    flex-direction: column;

    line-height: 1.25;
}


.noga-cart-text strong {

    font-size: 15px;

    color: #08294d;
}


.noga-cart-text span {

    margin-top: 3px;

    font-size: 12px;

    color: #7a8797;
}


/* BUTTON */

.noga-view-cart-btn {

    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 12px;

    background: #ffb900;

    color: #08294d !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        transform .2s ease,
        background .2s ease;
}


.noga-view-cart-btn:hover {

    transform: translateY(-2px);

    background: #ffc62f;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .noga-products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .noga-menu-page {

        padding:
            25px 0 55px;

    }
    
    a.pxl-scroll-top.on {
    bottom: 79PX !important;
}

a.noga-category {
    min-width: 25vw;
    min-height: 32px;
    font-size: 10px;
}

    
    h1.main-title span {
    font-size: 46px;
}


    .noga-menu-container {

        padding:
            0 14px;

    }


    /* Categories */

    .noga-category-wrapper {

        margin-bottom: 25px;

    }


    .noga-cat-arrow {

        display: none;

    }


    .noga-category-carousel {

        gap: 9px;

        padding:
            3px 1px 8px;

    }


    .noga-category {

        min-width: 45vw;

        min-height: 54px;

        padding:
            10px 18px;

        font-size: 14px;

    }


    /* Grid */

    .noga-products-grid {

        grid-template-columns: 1fr 1fr;

        gap: 20px;

    }


    /* Card */

    .noga-product-card {

        border-radius: 12px;

    }


    .noga-product-image {

        aspect-ratio:
            1 / .72;

    }


    .noga-product-content {

        padding:
            19px 19px 21px;

    }


    .noga-product-heading h3 {

        font-size: 20px;

    }


    .noga-description {

        margin-bottom: 7px;
        font-size: 11px;

    }
    
    a {
    font-size: 16px;
}

.noga-cart-btn, .noga-cart-btn.button {
    width: 29px !important;
    min-width: 29px !important;
    height: 29px !important;
    min-height: 29px !important;
}

a.noga-buy-btn {
    font-size: 8px;
    min-width: fit-content;
    height: fit-content;
    padding: 10px;
}

.noga-cart-btn svg {
    width: 15px;
}

span.woocommerce-Price-amount.amount {
    font-size: 12px;
}


    .noga-price {

        font-size: 22px;

    }


    .noga-product-bottom {

        align-items:
            flex-end;

    }


    /* Pagination */

    .noga-pagination {

        margin-top: 35px;

    }


    .noga-pagination ul {

        gap: 7px;

    }


    .noga-pagination a,
    .noga-pagination span {

        width: 40px;

        height: 40px;

        font-size: 14px;

    }
    
    .noga-cart-bar {

        width: calc(100% - 24px);

        bottom: 12px;
    }


    .noga-cart-bar-inner {

        padding: 10px 10px 10px 14px;

        gap: 10px;

        border-radius: 16px;
    }


    .noga-cart-icon {

        width: 40px;
        height: 40px;
    }


    .noga-cart-text strong {

        font-size: 13px;
    }


    .noga-cart-text span {

        display: none;
    }


    .noga-view-cart-btn {

        min-height: 42px;

        padding: 0 15px;

        font-size: 12px;
    }


}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .noga-product-content {

        padding: 17px;

    }


    .noga-cart-btn,
    .noga-cart-btn.button {

        width: 46px !important;

        min-width: 46px !important;

        height: 46px !important;

        min-height: 46px !important;

    }


    .noga-buy-btn {

        height: 46px;

        min-width: 90px;

        padding: 0 15px;

        font-size: 13px;

    }

}