:root {
    --bg-header-light: #DFEAD8;
    --text-primary: #1E1E1E;
    --brand-green-dark: #1B5C2D;
    --brand-green-light: #90B643;
    --hover-active: var(--brand-green-dark);
    --header-height-mobile: 70px;
    --header-height-desktop: 80px;

    --banner-bg-dark: #164a27;
    --banner-glow: rgba(43, 140, 77, 0.8);

    --text-white: #FFFFFF;
    --text-green: #00D26A;
    --btn-lime: #B8D03B;

    --bg-section-dark: #205030;
    --card-bg-light: #d6e5d0;
    --badge-red: #FF3B30;
    --text-dark: #1E1E1E;

    --cta-btn-bg: #B8D03B;
    --cta-text-green: #2B6239;

    --about-bg-main: #164A27;
    --about-bg-darker: #0E2C17;
    --about-icon-lime: #B8D03B;

    --promo-bg-green: #1A542D;
    --btn-lime: #B8D03B;
    --text-white: #FFFFFF;


    --footer-bg: #FAFCFA;
    --footer-text: #1E1E1E;
    --footer-text-muted: #666;
    --btn-light-green: #D6E5D0;
    --footer-border: #E0E0E0;

    --qr-bg-dark: #0E351F;
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;

}

.home main {
    padding-top: var(--header-height-desktop);
    min-height: 100vh;
}


.site-header {
    background-color: var(--bg-header-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}


.site-header.scroll-up {
    transform: translateY(0);
}

.site-header.scroll-down {

    transform: translateY(-100%);
}


.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .home main {
        padding-top: var(--header-height-mobile);
    }
}


@media (max-width: 1023px) {
    .site-header {
        height: var(--header-height-mobile);
    }

    .header-top-bar {
        height: var(--header-height-mobile);
    }


    .header-desktop-nav {
        display: none;
    }


    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .icon-actions {
        display: flex;
        gap: 15px;
    }

    .header-logo {
        height: 40px;
    }

    .header-logo img {
        height: 100%;
        width: auto;
    }
}



@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}


.hamburger {
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--banner-bg-dark);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
}

.mobile-menu-panel {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile));
    background-color: var(--bg-header-light);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 30px;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.mobile-menu-panel a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-panel a:hover {
    color: var(--brand-green-dark);
}

.mobile-menu-panel .sub-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 2px solid var(--brand-green-dark);
}

.mobile-menu-panel .sub-menu a {
    font-size: 15px;
    font-weight: 400;
}


@media (min-width: 1024px) {
    .site-header {
        height: var(--header-height-desktop);
    }

    .header-top-bar {
        height: var(--header-height-desktop);
        padding: 0 40px;
    }


    .mobile-menu-panel {
        display: none;
    }


    .header-desktop-nav ul {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .header-desktop-nav li {
        position: relative;
    }

    .header-desktop-nav a {
        text-decoration: none;
        color: var(--text-primary);
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .header-desktop-nav a:hover {
        color: var(--brand-green-dark);
    }

    .header-desktop-nav .sub-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        list-style: none;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 190px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        padding: 10px;
        z-index: 50;
    }

    .header-desktop-nav li:hover > .sub-menu,
    .header-desktop-nav li:focus-within > .sub-menu {
        display: flex;
    }

    .header-desktop-nav .sub-menu a {
        display: block;
        padding: 10px 12px;
        white-space: nowrap;
        border-radius: 8px;
    }

    .header-desktop-nav .sub-menu a:hover {
        background-color: var(--card-bg-light);
    }


    .header-right {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 40px;
    }

    .icon-actions {
        display: flex;
        gap: 20px;
    }

    .header-logo {
        height: 45px;
    }

    .header-logo img {
        height: 100%;
        width: auto;
    }
}


.action-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: var(--brand-green-dark);
}





.hero-banner {
    background-color: var(--banner-bg-dark, #164a27);
    width: 100%;
    margin: 0 auto 20px auto;
    border-bottom-left-radius: 70px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 550px;
}

.hero-col-image {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.hero-col-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    object-position: left center;
}

.hero-col-image img.mobile {
    display: none;
}

.bg-glow-circle {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
    width: 550px;
    height: 550px;
    
    background: radial-gradient(circle, #00c652 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-col-text {
    flex: 1 1 50%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: var(--text-white, #fff);
    width: max-content;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -20px;
}

.home .hero-title {
    font-size: 70px;
}

.hero-title.second {
    font-size: 38px;
    margin-bottom: 20px;
}

.yellow-text {
    color: var(--cta-btn-bg);
}

.hero-subtitle {
    font-size: 70px;
    font-weight: 800;
    color: var(--text-green, #00D26A);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: var(--btn-lime, #B8D03B);
    color: var(--text-white, #fff);
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.hero-btn:hover {
    background-color: #a4ba32;
    transform: translateY(-2px);
}


.mobile-ticker {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #DFEAD8;
    padding: 10px 20px;
    z-index: 10;
    border-top-right-radius: 20px;

    overflow: hidden;
    scrollbar-width: none;
}


.mobile-ticker::-webkit-scrollbar {
    display: none;
}

.ticker-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 0;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 600;

    flex-shrink: 0;
}

.ticker-item img {
    height: 30px;
    width: auto;
    object-fit: contain;
}





@media (max-width: 992px) {

    .hero-content {
        width: auto;
    }

    .hero-banner {
        padding-bottom: 60px;
        min-height: 70vh;
    }

    .hero-container {
        min-height: auto;
        flex-direction: column;

    }

    .home .hero-title {
        font-size: 40px;
    }

    .home .hero-subtitle {
        font-size: 50px;
    }


    .hero-col-text {
        flex: none;
        width: 100%;
        padding: 40px 10px 20px 40px;
        align-items: center;

        text-align: center;

    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: start;

    }


    .hero-title {
        font-size: 42px;
        margin-bottom: -15px;
    }

    .hero-subtitle {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }


    .hero-col-image {
        position: absolute;
        flex: none;
        width: 100%;
        height: auto;
        display: flex;
        bottom: 0;
        left: 0;
        justify-content: end;

        margin-top: 10px;
    }

    .hero-col-image img.desktop {
        display: none;
    }

    .hero-col-image img.mobile {
        display: block;
    }

    .hero-col-image img {
        position: relative;
        bottom: 0;
        width: 60%;

        max-width: 400px;
        height: auto;
        padding-bottom: 0;
    }

    .hero-col-image img.second {
        width: 100%;
    }

    .bg-glow-circle {
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
        width: 300px;
        height: 300px;
    }

    .mobile-ticker {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #DFEAD8;
        padding: 10px 20px;
        z-index: 10;
        border-top-right-radius: 20px;

    }
}


.products-section {
    background-color: var(--bg-section-dark);
    padding: 60px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin: 80px auto;

    color: #fff;
    font-family: sans-serif;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}


.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}


.products-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: rgba(214, 229, 208, 0.6);
    color: var(--text-dark);
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--card-bg-light);
}

.filter-btn.active {
    background-color: var(--brand-green-dark);
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: -2px;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}


.product-card {
    background-color: var(--card-bg-light);
    border-radius: 20px;
    padding: 15px;
    flex-direction: column;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 15px;
    background-color: #dceddd;
}


.card-image-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}


.card-image-wrap a img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: auto;
    min-width: 100px;
    min-height: 100px;
    object-fit: contain;
}

.product-image-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    z-index: 2;
}

.badge-spicy {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.card-image-wrap .sushi-spicy-badge {
    top: 10px;
    left: 10px;
}

.badge-discount {
    right: 10px;
    background: var(--badge-red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}


.btn-favorite {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.btn-favorite:hover {
    background: rgba(0, 0, 0, 0.7);
}


.card-content {
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: auto;
}


.card-content h3 a {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
    color: var(--footer-text);
    text-decoration: none;
}

.card-content h3 a:hover {
    text-decoration: underline;
}

.card-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: right;
    color: #555;
    flex-grow: 1;
}


.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-price {
    font-size: 20px;
}

.card-qty {
    font-size: 14px;
    color: #444;
}


.add-to-cart-btn {
    text-align: center;
    background-color: var(--btn-lime, #B8D03B) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #a4ba32 !important;
}


.load-more-container {
    text-align: center;
}

.show-more-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.show-more-btn:hover {
    opacity: 0.7;
}


@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-section {
        border-radius: 20px;
        padding: 40px 15px;
    }
}


.promo-menu-section {
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 1400px;
    color: var(--text-dark, #1E1E1E);
    font-family: sans-serif;
}


.promo-header {
    text-align: center;
    margin-bottom: 40px;
}

.promo-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E1E1E;
}

.promo-header p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}


.filter-btn-outline {
    background-color: transparent;
    border: 1px solid var(--btn-lime);
    color: #1E1E1E;
}

.filter-btn-outline:hover {
    background-color: rgba(214, 229, 208, 0.4);
    border-color: var(--bg-section-dark);
    color: #1E1E1E;
}

.filter-btn-outline.active {
    background-color: var(--brand-green-dark);
    border-color: #fff;
    color: #fff;
}


.cta-banner {
    position: relative;
    width: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}


.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px;
    width: 100%;
}


.cta-title-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
}

.cta-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.title-white {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.title-green {
    color: var(--cta-text-green);
}


.cta-btn {
    background-color: var(--cta-btn-bg);
    color: #ffffff;
    border: none;
    text-decoration: none;
    padding: 12px 60px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #a4ba32;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .cta-banner {
        min-height: 200px;
    }

    .cta-title-wrapper {
        padding: 15px 25px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
}


.about-us-section {
    padding: 100px 0 40px;
    margin: 0 auto;
    font-family: sans-serif;
}


.about-container {
    background-color: var(--about-bg-main);
    border-radius: 40px;
    border-bottom-left-radius: 0;
    display: flex;
    justify-content: space-between;
    position: relative;


    overflow: visible;
}


.about-content {
    flex: 1 1 50%;
    padding: 10px 80px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}


.features-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    background-color: var(--about-bg-darker);
    flex: 1;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
}


.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: auto;
}

.about-content .feature-icon {
    width: auto;
    height: auto;
}

.about-content .feature-icon img {
    width: 70px;
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}


.about-action {
    text-align: center;
}

.show-more-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 3px;
    transition: opacity 0.2s;
}

.show-more-link:hover {
    opacity: 0.7;
}


.about-image-wrapper {
    flex: 1 1 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding-left: 20px;
}


.protruding-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: -100px;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}


@media (max-width: 1024px) {
    .about-content {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding-top: 150px;
    }

    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content {
        padding: 40px 20px;
    }

    .features-grid {
        flex-direction: row;
    }

    .about-image-wrapper {
        align-items: center;
        padding-left: 0;
    }

    .protruding-image {
        width: 85%;
        margin-top: -120px;
        margin-bottom: -20px;
    }
}


.placeholder-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: sans-serif;
}


.placeholder-container {
    max-width: 700px;
}


.placeholder-title {
    font-size: 46px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.placeholder-status {
    margin-bottom: 30px;
}

.placeholder-status p {
    font-size: 18px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 5px;
}

.placeholder-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #777777;
    max-width: 600px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .placeholder-section {
        padding: 80px 20px;
    }

    .placeholder-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .placeholder-status p {
        font-size: 16px;
    }

    .placeholder-desc {
        font-size: 14px;
    }
}


.triple-promo-banner {
    background-color: var(--promo-bg-green);
    width: 100%;
    overflow: hidden;
    margin: 40px 0 0;
}


.triple-promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 350px;
}


.promo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}


.promo-right {
    justify-content: flex-start;
}

.promo-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;


}


.promo-left {
    align-self: flex-end;
    justify-content: flex-start;
}

.promo-left img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: -5px;
}


.promo-text-center {
    flex: 1.5;
    text-align: center;
    color: var(--text-white);
    padding: 40px 20px;
    z-index: 2;
}

.promo-text-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-text-center p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}


.promo-btn {
    background-color: var(--btn-lime);
    color: #ffffff;
    border: none;
    padding: 12px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.promo-btn:hover {
    background-color: var(--btn-lime);
    transform: translateY(-2px);
}


@media (max-width: 1024px) {
    .promo-text-center h2 {
        font-size: 32px;
    }

    .promo-text-center p {
        font-size: 14px;
    }

    .promo-right img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .triple-promo-container {

        flex-wrap: wrap;
        padding-top: 40px;
        align-items: flex-end;

    }


    .promo-text-center {
        order: 1;
        padding: 0 20px 30px;
    }

    .promo-right {
        order: 2;
        justify-content: center;
    }

    .promo-text-center {
        min-width: 100%;
        max-width: 100%;
    }

    .promo-left {
        min-width: 45%;
        max-width: 45%;
    }

    .promo-right {
        min-width: 45%;
        max-width: 45%;
    }

    .promo-left {
        order: 3;
        align-self: center;
        margin-top: 20px;
    }
}

.site-footer {
    background-color: var(--footer-bg, #FAFCFA);
    color: var(--footer-text, #1E1E1E);
    padding: 60px 20px 20px;
    font-family: sans-serif;
    border-top: 1px solid var(--footer-border, #E0E0E0);
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.wallet-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-btn {
    background-color: var(--btn-light-green, #D6E5D0);
    border: none;
    padding: 8px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 130px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.wallet-btn:hover {
    background-color: #c4d7bc;
}


.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--footer-text, #1E1E1E);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #2B6239;
}


.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact p a {
    color: var(--btn-lime);
    text-decoration: none;
}

.footer-contact p a:hover {
    text-decoration: underline;
}

.working-hours {
    margin-top: 15px;
}

.working-hours p {
    margin-bottom: 5px;
    color: #444;
}


.social-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-block span {
    font-size: 14px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #123524;
    font-size: 20px;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-cards {
    display: flex;
    gap: 10px;
}

.cash-badge {
    background-color: var(--btn-light-green);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 600;
    height: 40px !important;
}

.card-icon {
    width: auto;
}


.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--footer-border, #E0E0E0);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom a {
    color: var(--footer-text-muted, #666);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--footer-text, #1E1E1E);
}


@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cash-badge {
        width: stretch;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-container {

        grid-template-columns: 1fr 1fr;

        grid-template-areas:
            "brand nav"
            "social nav"
            "contact contact";
        gap: 20px;
        text-align: right;
    }


    .footer-nav {
        grid-area: nav;
    }

    .footer-brand {
        grid-area: brand;
        align-items: center;
        margin-bottom: -15px;
    }

    .footer-social-payment {
        grid-area: social;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        grid-area: contact;
        text-align: center;
        margin-top: 20px;
    }


    .wallet-buttons {
        display: none;
    }


    .social-block {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }


    .payment-methods {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}


.corner-btn {
    position: fixed;
    z-index: 9999;
    display: flex;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.corner-btn:hover {
    transform: scale(1.05);
    filter: brightness(0.95);
}


.top-left-btn,
.top-right-btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #DFEAD8;
    color: #1E1E1E;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.top-left-btn {
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    left: 0;
    top: 100px;
}

.top-right-btn {
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    right: 0;
    top: 100px
}


.icon-wrapper {
    position: relative;
    font-size: 22px;
    margin-bottom: 2px;
}


.btn-text {
    font-size: 12px;
    font-weight: 600;
}


.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #FF3B30;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.circle-btn {
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.bottom-left-btn {
    left: 20px;
    background-color: #1A73E8;
}


.bottom-right-btn {
    right: 20px;
    background-color: #25D366;
}

.bottom-right-btn.circle-btn:not(.scroll-top-btn) {
    bottom: 90px;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top-btn {
    bottom: 20px;
    background-color: var(--brand-green-dark, #1B5C2D);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.bottom-left-btn:hover,
.bottom-right-btn:hover {
    color: white;
}


@media (max-width: 480px) {

    .top-left-btn {
        left: 10px;
    }

    .top-right-btn {
        right: 10px;
    }

    .bottom-left-btn {
        left: 10px;
        bottom: 15px;
    }

    .bottom-right-btn {
        right: 10px;
        bottom: 15px;
    }

    .bottom-right-btn.circle-btn:not(.scroll-top-btn) {
        bottom: 75px;
    }

    .scroll-top-btn {
        bottom: 15px;
    }

    .circle-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}


.side-menu-drawer,
.side-cart-drawer {
    position: fixed;
    top: 0;
    width: 320px;
    height: 100vh;
    z-index: 10001;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drawer-inner-scroll {
    width: 100%;
    height: 100%;
    background-color: #DFEAD8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}


.drawer-trigger-tab {
    position: absolute;
    top: 100px;
    background-color: #DFEAD8;
    color: #1E1E1E;
    padding: 12px 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s ease;
}


.side-menu-drawer {
    right: 0;
    transform: translateX(100%);
}

.side-menu-drawer.open {
    transform: translateX(0);
}

.menu-scroll {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    direction: ltr;
}

.menu-tab {
    right: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1);
}


.side-cart-drawer {
    left: 0;
    transform: translateX(-100%);

}

.side-cart-drawer.open {
    transform: translateX(0);
}

.cart-scroll {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    direction: rtl;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.cart-tab {
    left: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.cart-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0;
}



.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}


ul.woocommerce-mini-cart {
    flex-grow: 1;
    padding: 20px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}



li.woocommerce-mini-cart-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    text-align: right;


    padding: 0 0 20px 30px !important;
    position: relative;
    min-height: 100px;


    margin-bottom: 20px !important;


    border-bottom: none !important;
}


li.woocommerce-mini-cart-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(to left, var(--brand-green-dark), transparent);

    opacity: 0.3;
}


li.woocommerce-mini-cart-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

li.woocommerce-mini-cart-item:last-child::after {
    display: none;
}


li.woocommerce-mini-cart-item a:not(.remove) {
    display: block;
    width: 100%;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding-right: 145px;
    margin-bottom: 5px;
    line-height: 1.2;
}



li.woocommerce-mini-cart-item a:not(.remove) img {
    position: absolute;
    right: 0;
    top: 0;
    width: 130px !important;
    height: 100px !important;
    border-radius: 8px;
    object-fit: scale-down !important;
    object-position: center !important;
    margin: 0 !important;
}


li.woocommerce-mini-cart-item .quantity {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 145px;
    color: #1A542D;
    font-size: 15px;
    font-weight: 700;
    margin-top: 0;
}


li.woocommerce-mini-cart-item a.remove {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1E1E1E !important;
    font-size: 26px;
    font-weight: 300;
    text-decoration: none !important;
    background: transparent !important;
    line-height: 1;
    z-index: 10;
}

li.woocommerce-mini-cart-item a.remove:hover {
    color: #ff0000 !important;
    background: transparent !important;
}


.widget_shopping_cart_content .woocommerce-mini-cart__total,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    background-color: rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 !important;
}


.widget_shopping_cart_content .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: #1E1E1E;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    padding-bottom: 20px;
}


.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}


.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 0 !important;
    text-decoration: none;
}


.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout {
    background-color: #B8D03B !important;
    order: -1;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout:hover {
    background-color: #a4ba34 !important;
}


.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout) {
    background-color: #0E2C17 !important;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
    background-color: #0a1f10 !important;
}


.drawer-trigger-tab .icon-wrapper {
    font-size: 22px;
    margin-bottom: 2px;
}

.drawer-trigger-tab .btn-text {
    font-size: 12px;
    font-weight: 600;
}


.drawer-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 20px 25px 0;
}

.close-drawer-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #1E1E1E;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-drawer-btn:hover {
    transform: rotate(90deg);
}


.drawer-nav-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    direction: rtl;
}

.drawer-nav-list li a {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 30px;
    text-decoration: none;
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.drawer-nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.drawer-icon {
    width: 45px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 0px white) drop-shadow(-2px -2px 0px white) drop-shadow(2px -2px 0px white) drop-shadow(-2px 2px 0px white);
}


.qr-promo-section {
    padding: 80px 0;
    margin: 0 auto;
    font-family: sans-serif;
}


.qr-promo-container {
    background-color: var(--qr-bg-dark, #0E351F);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    position: relative;


    overflow: visible;
}


.qr-image-col {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.protruding-ribbon-img {
    width: 100%;
    max-width: 450px;

    height: auto;

    margin-bottom: -80px;

    position: relative;
    z-index: 2;

    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));

}


.qr-content-col {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: start;
    color: #ffffff;
    padding-left: 20px;

}

.qr-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.qr-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 30px;
    max-width: 700px;

}


.qr-code-wrapper {
    background-color: #ffffff;

    padding: 10px;

    border-radius: 15px;

    display: inline-block;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.qr-code-wrapper img {
    display: block;
    width: 120px;

    height: 120px;
}


@media (max-width: 992px) {
    .qr-promo-container {
        flex-direction: column;
        padding: 40px 30px 50px;
        text-align: center;
    }

    .qr-image-col {
        order: 1;
        position: absolute;
        margin-bottom: 30px;
        bottom: 0;
        left: 0;
    }


    .protruding-ribbon-img {
        margin-bottom: -70px;

        max-width: 250px;
    }

    .qr-content-col {
        order: 2;

        padding-left: 0;
    }

    .qr-title {
        font-size: 32px;
    }

    .side-menu-drawer {
        display: none;
    }
}


.info-section {
    padding: 0 20px 20px;
    font-family: sans-serif;
    color: #1E1E1E;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
}


.breadcrumbs {
    text-align: right;
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #1E1E1E;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #90B643;
}

.breadcrumbs .current {
    color: #90B643;
    font-weight: 600;
}


.info-block {
    margin-bottom: 40px;
}

.info-main-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1E1E1E;
    letter-spacing: 1px;
}


.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


.info-card {
    background-color: #DFEAD8;
    border-radius: 25px;
    padding: 40px;
    text-align: right;
}

.info-card-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1E1E1E;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.info-card p:last-child {
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .info-grid {
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .info-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .info-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .info-card-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .info-card p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}


.delivery-map-section {
    padding: 0 20px 80px;
    font-family: sans-serif;
    color: #1E1E1E;
}

.delivery-map-container {
    max-width: 1400px;
    margin: 0 auto;
}


.map-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #333333;
}


.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    background-color: #eee;
}

.map-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    display: block;
    object-fit: cover;
}


.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}


.zones-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.zone-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}


.zone-badge {
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.zone-1 {
    background-color: #D6E5D0;
    color: #1E1E1E;
}

.zone-2 {
    background-color: #1A542D;
    color: #ffffff;
}

.zone-3 {
    background-color: #0E2C17;
    color: #ffffff;
}


.zone-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    text-align: right;
}


@media (max-width: 992px) {
    .zones-wrapper {
        flex-direction: column;
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .delivery-map-section {
        padding: 0 20px 40px;
    }

    .map-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .map-wrapper {
        border-radius: 15px;
    }

    .map-image {
        min-height: 300px;
    }

    .zone-badge {
        font-size: 14px;
        padding: 5px 12px;
    }

    .zone-text {
        font-size: 13px;
    }
}


.about-history-section {
    background-image: url('path-to-your-pattern.png');
    background-repeat: repeat;
    background-position: center top;
    background-color: #FAFCFA;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #1E1E1E;
}

.history-container {
    max-width: 1400px;
    margin: 0 auto;
}


.history-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: right;
    color: #333;
}


.history-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}


.history-row.reverse-row {
    flex-direction: row-reverse;
}


.history-content {
    flex: 1;
    text-align: right;
}

.history-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.history-image {
    height: -webkit-fill-available;
    flex: 1;
    display: flex;
}

.big-cover-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}


.polaroid-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}


.polaroid {
    background-color: #D6E5D0;
    padding: 10px;
    height: fit-content;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.polaroid img {
    display: block;
    width: 200px;
    object-fit: cover;
    border-radius: 4px;
}


.tilt-left {
    transform: rotate(-4deg) translateY(10px);
}

.tilt-right {
    transform: rotate(5deg) translateY(-10px);
}


.history-footer-text {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-top: 60px;
    color: #333;
}


@media (max-width: 992px) {
    .history-row {
        gap: 30px;
    }

    .polaroid img {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .history-main-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 30px;
    }

    .history-row,
    .history-row.reverse-row {
        flex-direction: column;
        margin-bottom: 60px;
    }


    .history-image {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
    }

    .history-content {
        text-align: center;
    }


    .polaroid img {
        width: 120px;
        height: 100px;
    }

    .polaroid-gallery {
        gap: 15px;
        margin: 25px 0;
    }


    .tilt-left {
        transform: rotate(-2deg);
    }

    .tilt-right {
        transform: rotate(3deg);
    }
}


.features-cards-section {
    padding: 0 20px 0;
    margin-bottom: 30px;
}


.features-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.feature-dark-card {
    background-color: #0E2C17;

    border-radius: 15px;

    padding: 50px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.feature-dark-card:hover {
    transform: translateY(-5px);

}


.feature-icon {

    margin-bottom: 25px;
    display: block;
}


.feature-text {
    color: #ffffff;

    font-size: 15px;
    line-height: 1.6;
    margin: 0;

    color: rgba(255, 255, 255, 0.9);
}




@media (max-width: 992px) {
    .features-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }


    .feature-dark-card:nth-child(3) {
        grid-column: span 2;

        max-width: 50%;

        margin: 0 auto;

    }
}


@media (max-width: 768px) {
    .features-cards-section {
        padding: 40px 20px;
    }

    .features-cards-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .feature-dark-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .feature-dark-card {
        padding: 35px 20px;
    }

    .feature-icon {
        width: 50px;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 14px;
    }
}


.contact-page-section {

    background-image: url('path-to-your-pattern.png');
    background-repeat: repeat;
    background-position: center top;
    background-color: #FAFCFA;

    padding: 40px 20px 80px;
    font-family: sans-serif;
    color: #1E1E1E;
}

.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
}


.breadcrumbs {
    text-align: right;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #1E1E1E;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #90B643;
}

.breadcrumbs .current {
    color: #90B643;
    font-weight: 600;
}


.page-main-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #333333;
}


.map-full-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-full-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    display: block;
    object-fit: cover;
}


.contact-details-wrapper {
    display: flex;
    justify-content: flex-start;
}

.contact-text-block {
    max-width: 650px;
    text-align: right;
}

.mobile-break {
    display: none;
}

.contact-text-block h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1E1E1E;
}

.contact-text-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}


.phone-block {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-label {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 26px;
    font-weight: 800;
    color: #1E1E1E;
}


@media (max-width: 768px) {
    .page-main-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .map-full-wrapper {
        border-radius: 15px;
        margin-bottom: 40px;
    }


    .contact-details-wrapper {
        justify-content: center;
    }

    .contact-text-block {
        text-align: center;
    }

    .contact-text-block h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .mobile-break {
        display: inline;
    }

    .contact-text-block p {
        font-size: 14px;
    }

    .phone-block {
        align-items: center;
        margin-top: 40px;
    }
}

.custom-sushi-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 50px;
    max-width: 1400px;
    margin: 40px auto;
    flex-direction: row;
    padding-bottom: 40px;
    align-items: flex-start;
}

.sushi-info-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.sushi-gallery-column {
    flex: 1.2;
    min-width: 300px;
    position: relative;
}



.sushi-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.sushi-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}



.sushi-allergens {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.allergens-label {
    font-weight: 600;
    color: #333;
}

.allergens-icons {
    display: flex;
    gap: 10px;
}

.allergens-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.allergen-badge {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}



.sushi-meta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sushi-price {

    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 15px;
    flex-wrap: wrap;
}

.sushi-price .amount {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #222 !important;
}


.sushi-price del {
    text-decoration: line-through !important;
    color: #7f8c8d !important;
}

.sushi-price del .amount {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    color: inherit !important;
    text-decoration: none !important;
}


.sushi-price ins {
    text-decoration: none;
}

.sushi-weight {
    margin: auto 0 20px 0;
    font-size: 16px;
}


.sushi-add-to-cart-wrapper form.cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sushi-add-to-cart-wrapper .quantity {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #7f8c8d;
    border-radius: 8px;
    background: transparent;
    height: 45px;
    width: 110px;
    overflow: hidden;

    direction: ltr;
}

.woocommerce div.product form.cart::before {
    content: none !important;
}


.sushi-add-to-cart-wrapper .quantity input.qty {
    width: 40px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    background: transparent;
    padding: 0;
    color: #222;
    -moz-appearance: textfield;
}

.sushi-add-to-cart-wrapper .quantity input.qty::-webkit-outer-spin-button,
.sushi-add-to-cart-wrapper .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.sushi-add-to-cart-wrapper .quantity .qty-btn {
    background: transparent;
    border: none;
    width: 35px;
    height: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s;
}

.sushi-add-to-cart-wrapper .quantity .qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}


.sushi-add-to-cart-wrapper button.single_add_to_cart_button {
    background-color: #B8D03B !important;
    color: white !important;
    border: none;
    padding: 0 30px;
    height: 45px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sushi-add-to-cart-wrapper button.single_add_to_cart_button:hover {
    background-color: #6c42a3 !important;
}



.sushi-image-slider {
    border-radius: 15px;
    overflow: hidden;
    background: #f9f9f9;
}

.sushi-image-slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}


.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #a4b0be !important;
}


.sushi-sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}


.sushi-spicy-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sushi-spicy-badge img {
    width: 24px;
    height: 24px;
}

.panda-sushi-page-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: right;
}


.sushi-main-category-title {
    display: none;
}

.panda-category-description strong {
    display: block;
    font-size: 32px;
    margin: 30px 0;
}


@media (max-width: 992px) {
    .custom-sushi-layout {
        gap: 30px;
    }

    .sushi-main-category-title {
        font-size: 42px;
    }
}


@media (max-width: 768px) {
    .custom-sushi-layout {
        flex-direction: column;
        gap: 20px;
        margin: 10px auto 40px auto;
        padding: 0 15px;
    }


    .sushi-gallery-column,
    .sushi-info-column {
        width: 100%;
        min-width: unset;
        flex: none;
    }


    .sushi-title {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: right;
    }


    .sushi-meta-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .sushi-weight {
        margin: 0;
        font-size: 16px;
    }

    .sushi-price {
        width: min-content;
        margin: 0;
    }

    .sushi-price .amount {
        font-size: 2rem !important;
    }


    .sushi-add-to-cart-wrapper form.cart {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }


    .sushi-add-to-cart-wrapper .quantity {
        height: 50px;
        margin: 0 !important;
    }


    .sushi-add-to-cart-wrapper button.single_add_to_cart_button {

        height: 50px;
        padding: 0 15px;
        font-size: 1.1rem;
        border-radius: 25px;
        margin: 0;
    }
}


@media (max-width: 400px) {
    .sushi-main-category-title {
        font-size: 36px;
    }

    .sushi-add-to-cart-wrapper .quantity {
        flex: 0 0 100px;
    }

    .sushi-price .amount {
        font-size: 1.6rem !important;
    }
}


.sushi-wishlist-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.custom-wishlist-btn {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.custom-wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    transition: all 0.3s ease;
}


.custom-wishlist-btn:hover,
.custom-wishlist-btn.is-active {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
}

.custom-wishlist-btn:hover svg,
.custom-wishlist-btn.is-active svg {
    fill: #ff4757;
    stroke: #ff4757;
}



@media (max-width: 768px) {
    .custom-sushi-layout {
        gap: 25px;
    }

    .sushi-allergens {
        flex-direction: column;
    }

    .sushi-title {
        font-size: 2rem;
    }

    .sushi-price {

        justify-content: flex-end;
    }

    .sushi-price .amount {
        font-size: 1.8rem !important;
    }
}

.custom-sauces-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.sauce-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sauce-info-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sauce-info-right img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transform: rotate(-30deg);
}

.sauce-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
}

.sauce-action-left {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 15px;
}

.sauce-price {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.sauce-add-btn {
    background: transparent;
    border: 1px solid #7f8c8d;
    border-radius: 8px;
    width: 50px !important;
    min-width: 50px;
    min-height: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    color: #222;
    transition: 0.3s;
}

.sauce-add-btn:hover {
    background: #f4f4f4;
}


.sauce-add-btn.is-added {
    background: #9bc53d;
    color: white;
    border-color: #9bc53d;
    font-size: 1.1rem;
}


.panda-cart-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 40px auto;
    align-items: flex-start;
}


.panda-cart-main-column {
    flex: 1;
    min-width: 60%;
}

.panda-cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.panda-cart-table th {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.panda-cart-table td {
    padding: 20px 0;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #111;
}


.product-thumbnail img {
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 70px;
    width: auto !important;
    height: auto !important;
    border-radius: 8px;
}

.product-name a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
}

.remove-cart-item {
    display: block;
    color: #ff4757;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
}


.panda-qty-wrapper {
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.panda-qty-wrapper input.qty {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
}

.panda-qty-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
}


.panda-cart-actions td {
    border-bottom: none;
    padding-top: 30px;
}

.panda-coupon-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.panda-cart-sidebar {
    width: 350px;
}

.sidebar-inner-box {
    background-color: #dceddd;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #111;
}

.sidebar-totals-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.sidebar-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.sidebar-subtitle {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.sidebar-red-text {
    color: #d63031;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
}


.panda-btn {
    background-color: #b8d03b;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
}

.panda-btn:hover {
    background-color: #a4ba34;
}

.checkout-btn {
    width: 100%;
}


@media (max-width: 992px) {
    .panda-cart-page-wrapper {
        flex-direction: column;
    }

    .panda-cart-sidebar {
        width: 100%;
    }
}




.woocommerce table.shop_table {
    border: 0;
}


.panda-cart-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto;
    align-items: flex-start;
    direction: rtl;
}


.panda-cart-main-column {
    flex: 1;
    min-width: 60%;
}

.panda-cart-table {
    width: 100%;
    border-collapse: collapse !important;
}


.panda-cart-table thead th {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-transform: lowercase;

}


.panda-cart-table th.product-name {
    text-align: right;
}

.panda-cart-table th.product-price {
    text-align: center;
}

.panda-cart-table th.product-quantity {
    text-align: center;
}

.panda-cart-table th.product-subtotal {
    text-align: left;
}


.panda-cart-table tbody td {
    padding: 20px 0;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
    color: #111;
    font-size: 16px;
}

.panda-cart-table td .quantity {
    display: flex;
}


.panda-cart-table td.product-thumbnail {
    width: 200px;
    text-align: right;
}

.panda-cart-table td.product-name {
    text-align: right;
    padding-left: 20px;
}

.panda-cart-table td.product-price {
    text-align: center;
}

.panda-cart-table td.product-quantity {
    text-align: center;
}

.panda-cart-table td.product-subtotal {
    text-align: left;
}





.product-name a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
}


.remove-cart-item {
    display: none !important;
}


.panda-qty-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 2px 12px;
    width: 100px;
    height: 38px;
    direction: ltr;

}

.panda-qty-wrapper input.qty {
    width: 30px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    background: transparent;
    padding: 0;
    color: #111;
    -moz-appearance: textfield;
}


.panda-qty-wrapper input.qty::-webkit-outer-spin-button,
.panda-qty-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    color: #111;
}


.panda-cart-actions td {
    border-bottom: none;
    padding-top: 25px;
}

.panda-coupon-box {
    display: flex;
    align-items: center;
    gap: 15px;
}


.panda-coupon-box input {
    order: 1;
}

.panda-coupon-box button {
    order: 2;
}


.panda-coupon-box input {
    border: 1px solid #62c47a;

    border-radius: 8px;
    padding: 13px 20px;
    width: 70% !important;
    height: stretch;
    outline: none;
    background: transparent;
    font-size: 14px;
    text-align: right;
    color: #333;
}


.panda-coupon-box .panda-btn {
    background-color: var(--about-icon-lime) !important;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.panda-coupon-box .panda-btn:hover {
    background-color: #e2e2e5;
}


.panda-cart-sidebar {
    width: 340px;
}

.sidebar-inner-box {
    background-color: #e2ede4;

    border-radius: 12px;
    padding: 35px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #111;
}

.sidebar-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.sidebar-divider {
    border: 0;
    border-top: 1px solid #111;

    margin: 25px 0;
    opacity: 0.2;
}

.sidebar-subtitle {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: right;
}

.sidebar-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: right;
}

.sidebar-red-text {
    color: #e74c3c;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: right;
}


.checkout-btn {
    background-color: #bcd934;

    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
}

.checkout-btn:hover {
    background-color: #a8c42a;
}


@media (max-width: 992px) {
    .panda-cart-page-wrapper {
        flex-direction: column;
    }

    .panda-cart-main-column,
    .panda-cart-sidebar {
        width: 100%;
    }

    .panda-coupon-box {
        justify-content: center;
        flex-wrap: wrap;
    }


    /* ось базове рішення для скролу */
    .panda-cart-main-column {
        overflow-x: auto;
    }

    .panda-cart-table {
        min-width: 600px;
    }
}




.panda-shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 0;
}


.panda-categories-slider-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
}

.products-container .panda-categories-scroll {
    justify-content: center;
    padding: 0 40px;
}

.panda-categories-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;

    -ms-overflow-style: none;

    scrollbar-width: none;
    cursor: grab;

}

.panda-categories-scroll.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.filter-btn span {
    white-space: nowrap;
}

.panda-categories-scroll::-webkit-scrollbar {
    display: none;

}


.panda-shop-page .filter-btn {
    white-space: nowrap;
    border: 1px solid #111;
    background: transparent;
    border-radius: 30px;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-filter-img {
    width: 40px;
    height: 40px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.panda-shop-page .filter-btn:hover,
.panda-shop-page .filter-btn.is-active {
    background-color: #dceddd;

    border-color: #dceddd;
}


.panda-shop-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}





@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;

    }

    .home .panda-categories-scroll button:first-child {
        margin-right: 100%;
    }
}

.panda-pagination-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 50px 0 !important;
}


.panda-ajax-pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}


.panda-ajax-pagination .page-numbers,
.woocommerce-pagination .page-numbers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 45px !important;
    height: 45px !important;
    padding: 0 15px !important;
    border-radius: 50px !important;
    background-color: var(--card-bg-light) !important;
    color: var(--text-primary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}


.panda-ajax-pagination a.page-numbers:hover,
.woocommerce-pagination a.page-numbers:hover {
    background-color: var(--btn-lime) !important;
    color: var(--text-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(184, 208, 59, 0.4) !important;
}


.panda-ajax-pagination span.current.page-numbers,
.woocommerce-pagination span.current.page-numbers {
    background-color: var(--brand-green-dark) !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 12px rgba(43, 98, 57, 0.3) !important;
    cursor: default !important;
}


.panda-ajax-pagination .prev.page-numbers,
.panda-ajax-pagination .next.page-numbers,
.woocommerce-pagination .prev.page-numbers,
.woocommerce-pagination .next.page-numbers {
    background-color: transparent !important;
    border: 2px solid var(--card-bg-light) !important;
    color: var(--brand-green-dark) !important;
    font-size: 18px !important;
    min-width: 45px !important;
    padding: 0 !important;
}


.panda-ajax-pagination .prev.page-numbers:hover,
.panda-ajax-pagination .next.page-numbers:hover,
.woocommerce-pagination .prev.page-numbers:hover,
.woocommerce-pagination .next.page-numbers:hover {
    background-color: var(--card-bg-light) !important;
    border-color: var(--card-bg-light) !important;
    color: var(--brand-green-dark) !important;
    transform: translateX(0) translateY(-3px) !important;
    box-shadow: none !important;
}

.panda-custom-empty-cart {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: inherit;
}


.empty-cart-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--brand-green-light);
    margin-bottom: 20px;
}

.empty-cart-breadcrumbs a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.empty-cart-breadcrumbs a:hover {
    color: var(--brand-green-light);
}

.empty-cart-breadcrumbs .current {
    color: var(--brand-green-light);
}


.empty-cart-info-box {
    border-top: 1px solid var(--card-bg-light);
    border-bottom: 1px solid var(--card-bg-light);
    margin-bottom: 40px;
}

.empty-cart-info-box .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}


.empty-cart-info-box .info-row:first-child {
    border-bottom: 1px solid var(--card-bg-light);
}

.empty-cart-info-box .info-text {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.5;
}

.empty-cart-info-box .info-label {
    color: var(--brand-green-dark);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 5px;
}


.empty-cart-action {
    display: flex;
    justify-content: flex-start;
}

.btn-order-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-lime);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-order-now:hover {
    background-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 98, 57, 0.2);
}


.panda-breadcrumbs-wrapper {
    width: 100%;
    padding: var(--header-height-desktop) 0 0;
    background-color: transparent;
}

.panda-breadcrumbs {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.panda-breadcrumbs .breadcrumb-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.panda-breadcrumbs .breadcrumb-link:hover {
    color: var(--about-icon-lime);
}

.panda-breadcrumbs .breadcrumb-separator {
    color: var(--text-primary);
    font-weight: 400;
}

.panda-breadcrumbs .breadcrumb-current {
    color: var(--btn-lime);
    font-weight: 600;
}


@media (max-width: 1023px) {
    .panda-breadcrumbs-wrapper {
        padding-top: var(--header-height-mobile);
    }
}

.panda-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    align-items: start;
}

@media (max-width: 991px) {
    .panda-checkout-grid {
        grid-template-columns: 1fr;
    }

    .panda-checkout-grid>*:nth-child(1) {
        order: 2;
    }

    .panda-checkout-grid>*:nth-child(2) {
        order: 1;
    }
}


.panda-checkout-box {
    background-color: var(--card-bg-light, #dceddd);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}


.billing-box .box-title {
    text-align: right;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}


.woocommerce-checkout .panda-field input,
.woocommerce-checkout .notes-box textarea {
    width: 100%;
    background-color: transparent !important;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: right;
    box-shadow: none !important;
}

.woocommerce-checkout .panda-field input:focus,
.woocommerce-checkout .notes-box textarea:focus {
    outline: none;
    border-color: var(--brand-green-dark, #2B6239) !important;
}


.woocommerce-checkout .panda-field label {
    display: none !important;
}


.btn-lime-large {
    width: 100%;
    background-color: var(--btn-lime, #B8D03B);
    color: var(--text-white);
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-lime-large:hover {
    background-color: var(--brand-green-dark);
}

.btn-dark-green-large,
.btn-dark-green {
    width: 100%;
    background-color: #0c2d1c;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-dark-green-large:hover,
.btn-dark-green:hover {
    opacity: 0.8;
}


#payment .place-order {
    display: none !important;
}


.checkout-review-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.panda-bonus-block {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.panda-bonus-block .bonus-icon {
    color: var(--btn-lime, #B8D03B);
    font-size: 24px;
    margin-bottom: 10px;
}

.panda-bonus-block h3 {
    font-size: 16px;
    font-weight: bold;
}

.panda-bonus-block p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.bonus-notice {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.bonus-progress-bar {
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 12px;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.bonus-progress-fill {
    height: 100%;
    background: repeating-linear-gradient(45deg,
            var(--brand-green-dark),
            var(--brand-green-dark) 10px,
            #1e4428 10px,
            #1e4428 20px);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
div.shipping_address,
#ship-to-different-address {
    display: none !important;
}

.woocommerce-checkout label {
    display: none !important;
}


.woocommerce-checkout .panda-field input,
.woocommerce-checkout .panda-field textarea {
    width: 100%;
    background-color: transparent !important;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 15px;
    box-shadow: none !important;
}


.woocommerce-checkout .form-row {
    padding: 0;
    margin-bottom: 5px;
}

.woocommerce-checkout .product-quantity {
    color: var(--brand-green-dark);
}

.panda-checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-item-img {
    border-radius: 8px;
    object-fit: cover;
    width: 60px;
    height: 60px;
}



.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    vertical-align: middle;
    border-bottom: 1px solid var(--brand-green-light, #90B643);
    padding: 15px 0;
}





#customer_login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    direction: rtl;
}


#customer_login .u-column1,
#customer_login .u-column2 {
    background-color: var(--card-bg-light, #dceddd) !important;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    float: none;
}


#customer_login h2 {
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}


#customer_login .woocommerce-form-row label:not(.woocommerce-form__label-for-checkbox) {
    display: none !important;
}


#customer_login input[type="text"],
#customer_login input[type="email"],
#customer_login input[type="password"] {
    width: 100%;
    background-color: transparent !important;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-primary);
    box-shadow: none !important;
    text-align: right;
    margin-bottom: 15px;
    height: 50px;
    transition: 0.3s;
}

#customer_login input:focus {
    border-color: var(--brand-green-dark, #2B6239) !important;
    outline: none;
}


#customer_login .login .form-row:not(.woocommerce-form-row) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    padding: 0;
}


#customer_login .woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

#customer_login input[type="checkbox"] {
    margin-left: 8px;
}


#customer_login .woocommerce-LostPassword {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

#customer_login .woocommerce-LostPassword a {
    color: var(--text-primary);
    text-decoration: none;
}


#customer_login .woocommerce-Button {
    width: 100%;
    background-color: var(--btn-lime, #B8D03B);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

#customer_login .woocommerce-Button:hover {
    background-color: var(--brand-green-dark, #2B6239);
    transform: translateY(-2px);
}


.woocommerce-privacy-policy-text {
    font-size: 12px;
    color: var(--text-primary);
    text-align: right;
    margin-bottom: 15px;
    line-height: 1.5;
}


.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
    display: none;
}


@media (max-width: 768px) {
    #customer_login {
        grid-template-columns: 1fr;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        padding: 25px;
    }
}





.woocommerce-MyAccount-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
}


.woocommerce-MyAccount-content p strong,
.woocommerce-MyAccount-content p mark {
    color: var(--brand-green-dark, #2B6239);
    background: transparent;
    font-weight: bold;
}


.woocommerce-MyAccount-content a {
    color: var(--brand-green-dark, #2B6239);
    font-weight: 600;
    text-decoration: underline;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--btn-lime, #B8D03B);
}


.woocommerce-EditAccountForm .form-row {
    margin-bottom: 20px;
}


.woocommerce-EditAccountForm fieldset {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
    margin-bottom: 20px;
}

.woocommerce-EditAccountForm fieldset legend {
    font-size: 18px;
    font-weight: bold;
    color: var(--brand-green-dark, #2B6239);
    padding: 0 15px;
    border: none;
    margin-bottom: 0;
    width: auto;
}


.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select {
    width: 100%;
    background-color: transparent !important;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: var(--text-primary);
    box-shadow: none !important;
    height: 50px;
    text-align: right;
    transition: 0.3s;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus {
    border-color: var(--brand-green-dark, #2B6239) !important;
    outline: none;
}


.woocommerce-MyAccount-content label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}


.woocommerce-MyAccount-content button[type="submit"] {
    background-color: var(--btn-lime, #B8D03B);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.woocommerce-MyAccount-content button[type="submit"]:hover {
    background-color: var(--brand-green-dark, #2B6239);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 98, 57, 0.2);
}


.woocommerce-Address-title h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-primary);
}

.woocommerce-Address-title .edit {
    float: left;
    background-color: rgba(184, 208, 59, 0.2);
    color: var(--brand-green-dark);
    padding: 5px 15px;
    margin-top: 20px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

.woocommerce-Address-title .edit:hover {
    background-color: var(--btn-lime);
    color: #fff;
}

.woocommerce-Address address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}


.woocommerce-order-details {
    margin-top: 30px;
}

.woocommerce-order-details__title {
    font-size: 22px;
    margin-bottom: 20px;
}

.woocommerce-customer-details {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.woocommerce {
    width: 90%;
    margin: 20px 5%;
}




.panda-empty-wishlist-wrap {
    margin-top: 20px;
    background-color: var(--brand-green-dark, #2B6239);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    border-bottom-left-radius: 70px;
    position: relative;
    overflow: hidden;
}

.wishlist-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}


.wishlist-icon-glow {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}


.wishlist-icon-glow::before {
    content: '';
    position: absolute;

    width: 400px;
    height: 400px;


    background-color: #00BF63;


    border-radius: 50%;


    filter: blur(100px);


    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 0;


    opacity: 0.7;
}


.wishlist-icon-glow .heart-icon {
    width: 140px;
    height: 140px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.wishlist-subtitle {
    margin-bottom: 40px;
}

.wishlist-subtitle p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}


.btn-lime-wishlist {
    display: inline-block;
    background-color: var(--btn-lime, #B8D03B);
    color: var(--text-dark, #000000);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-lime-wishlist:hover {
    background-color: #ffffff;
    color: var(--brand-green-dark, #2B6239);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.panda-404-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 60px 20px;



    background-color: transparent;
}


.panda-404-circle {
    z-index: 1;
    background-color: #ffffff;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
}


.error-title {
    z-index: 2;
    font-size: 64px;
    font-weight: 800;
    color: var(--brand-green-dark, #2B6239);
    margin: 0 0 10px 0;
    line-height: 1;
}

.error-subtitle {
    z-index: 2;
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 30px 0;
    font-weight: 600;
}


.error-image-wrap {
    width: 100%;
    max-width: 350px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.error-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}


.error-home-btn {
    z-index: 2;
    background-color: var(--btn-lime, #B8D03B);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.error-home-btn:hover {
    background-color: var(--brand-green-dark, #2B6239);
    transform: translateY(-3px);
    color: #fff;
}


@media (max-width: 768px) {
    .panda-404-circle {
        width: 90vw;
        height: 90vw;
        border-width: 3px;
        padding: 20px;
    }

    .error-title {
        font-size: 42px;
    }

    .error-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .error-image-wrap {
        max-width: 250px;
        margin-bottom: 25px;
    }

    .error-home-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

.panda-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;


    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.panda-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
}


.panda-popup-content {
    background-color: var(--card-bg-light, #dceddd);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);


    transform: translateY(20px);
    transition: all 0.3s ease;
}

.panda-popup-overlay.is-active .panda-popup-content {
    transform: translateY(0);
}


.panda-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.panda-popup-close:hover {
    color: var(--brand-green-dark, #2B6239);
}


.panda-popup-body {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}


.panda-popup-image {
    flex-shrink: 0;
    width: 120px;
}

.panda-popup-image svg {
    width: auto;
    height: 300px;
}


.panda-popup-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panda-popup-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin: 0 0 20px 0;
}


.btn-wa-popup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--btn-lime, #B8D03B);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-wa-popup:hover {
    background-color: var(--brand-green-dark, #2B6239);
    color: #fff;
    transform: translateY(-2px);
}


@media (max-width: 576px) {
    .panda-popup-body {
        flex-direction: column;
        gap: 20px;
    }

    .panda-popup-content {
        padding: 40px 20px;
    }

    .panda-popup-title {
        font-size: 26px;
    }
}

.woocommerce img,
.woocommerce-page img {
    z-index: 2;
}


.woocommerce:has(.panda-thankyou-wrap) {
    margin: 0;
    width: 100%;
}

.panda-hidden-field {
    display: none !important;
}





@media (min-width: 769px) {

    .woocommerce-billing-fields__field-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .woocommerce-checkout .form-row-first {
        width: 48% !important;
        margin-right: 0 !important;
        float: right !important;
    }


    .woocommerce-checkout .form-row-last {
        width: 48% !important;
        float: left !important;
    }


    .woocommerce-checkout .form-row-wide {
        width: 100% !important;
        clear: both;
    }
}



@media (max-width: 768px) {

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }
}





.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


#billing_first_name_field {
    order: 1;
}

#billing_phone_field {
    order: 2;
}

#billing_city_field {
    order: 3;
}

#billing_address_1_field {
    order: 4;
}

#billing_address_2_field {
    order: 5;
}


#billing_first_name_field,
#billing_phone_field {
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
    margin: 0 !important;
}


#billing_city_field,
#billing_address_1_field,
#billing_address_2_field {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}


@media (max-width: 576px) {

    #billing_first_name_field,
    #billing_phone_field {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}





.woocommerce-MyAccount-navigation {
    background-color: var(--footer-bg, #FAFCFA);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 15px 0;
    border: 1px solid var(--footer-border, #E0E0E0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}


.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


.woocommerce-MyAccount-navigation-link {
    margin: 0 0 4px 0 !important;
}

.woocommerce-MyAccount-navigation-link:last-child {
    margin-bottom: 0 !important;
}


.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 14px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    border-right: 4px solid transparent;
    transition: all 0.3s ease;
}


.woocommerce-MyAccount-navigation-link a:hover {
    background-color: var(--bg-header-light);
    color: var(--brand-green-dark);
    border-right-color: var(--brand-green-light);
}


.woocommerce-MyAccount-navigation-link.is-active a {
    background-color: var(--brand-green-dark);
    color: var(--text-white);
    border-right-color: var(--btn-lime);
}


.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 15px !important;
    border-top: 1px solid var(--footer-border);
    padding-top: 15px;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: var(--badge-red);
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background-color: rgba(255, 59, 48, 0.08);
    border-right-color: var(--badge-red);
    color: var(--badge-red);
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);


    z-index: 99;


    opacity: 0;
    visibility: hidden;
    pointer-events: none;


    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.lang-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 999999;
}


.lang-dropdown {
    position: absolute;

    top: calc(100% + 14px);


    left: 50%;

    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 120px;
    z-index: 999999;


    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: all 0.3s ease;
}


.lang-dropdown::before {
    content: '';
    position: absolute;

    top: -6px;


    left: 50%;


    width: 14px;
    height: 14px;
    background-color: #ffffff;


    transform: translateX(-50%) rotate(45deg);


    box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.05);


    border-top-left-radius: 2px;

    z-index: -1;

}


.lang-dropdown.show {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}


.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #1D1D1B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
    color: #062B23;
}


.panda-category-description-wrapper {
    direction: rtl;
    text-align: right;
    padding: 40px 20px;
    background-color: #ffffff;
}

.panda-category-description {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Rubik', 'Heebo', sans-serif;
}


.panda-category-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 25px;
}


.panda-category-description p strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 1.2;
}


.panda-category-description p:first-child strong {
    margin-top: 0;
}

.text-center-card  {
	text-align: center !important;
	color: var(--bg-section-dark);
	margin-top: 5px;
}
.woocommerce-checkout-review-order-table th.product-quantity,
.woocommerce-checkout-review-order-table td.product-quantity {
    text-align: center;
    width: 110px;
}

.panda-checkout-qty {
    margin: 0 auto;
}

.panda-checkout-qty .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

.woocommerce-NoticeGroup-checkout {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-error {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    background: #fdecea;
    border: 1px solid #f5c2c0;
    border-right: 4px solid #e63946;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 0 0 20px;
    list-style: none;
    color: #611a15;
    font-size: 14px;
    line-height: 1.9;
}

.woocommerce-checkout .woocommerce-error li {
    list-style: none;
}

.woocommerce-checkout .woocommerce-error li strong {
    color: #b3261e;
}

.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid textarea {
    border: 1px solid #e63946 !important;
    background-color: #fdecea !important;
    animation: panda-shake 0.4s;
}

.woocommerce-checkout .form-row.woocommerce-validated input,
.woocommerce-checkout .form-row.woocommerce-validated textarea {
    border: 1px solid var(--brand-green-light, #90B643) !important;
}

@keyframes panda-shake {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}


.legal-page {
    padding: 60px 20px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 40px 45px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.legal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-green-dark, #0E351F);
    margin-bottom: 25px;
    text-align: center;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-green-dark, #0E351F);
    margin: 28px 0 10px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
}

.legal-content a {
    color: var(--brand-green-dark, #0E351F);
    text-decoration: underline;
}

.legal-content ul {
    margin: 0 20px 14px;
    padding-inline-start: 20px;
    list-style: disc;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 22px;
    }

    .legal-title {
        font-size: 26px;
    }
}

/* ── Hero banner: fluid text + mobile image clearance ── */
.home .hero-title {
    font-size: clamp(30px, 6.2vw, 70px);
    letter-spacing: 1px;
}

.home .hero-subtitle {
    font-size: clamp(30px, 6.2vw, 70px);
}

.hero-subtitle {
    font-size: clamp(28px, 5vw, 70px);
}

.hero-title:not(.second) {
    font-size: clamp(28px, 4.5vw, 52px);
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 18px);
}

@media (max-width: 992px) {
    .home .hero-title,
    .hero-title:not(.second) {
        font-size: clamp(26px, 6.5vw, 44px);
    }

    .home .hero-subtitle,
    .hero-subtitle {
        font-size: clamp(26px, 6.5vw, 46px);
    }

    /* reserve room so text sits above the absolutely-positioned image */
    .hero-col-text {
        padding-bottom: clamp(170px, 48vw, 280px);
    }
}

@media (max-width: 520px) {
    .home .hero-title,
    .hero-title:not(.second),
    .home .hero-subtitle,
    .hero-subtitle {
        font-size: clamp(26px, 8vw, 36px);
    }

    .hero-col-text {
        padding-bottom: clamp(150px, 52vw, 230px);
    }
}

/* ── Hero mobile image: full-width, no side gaps, capped height ── */
@media (max-width: 992px) {
    .hero-col-image {
        justify-content: center;
        height: clamp(230px, 62vw, 380px);
    }

    .hero-col-image img,
    .hero-col-image img.mobile,
    .hero-col-image img.second {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center top;
    }

    .hero-col-text {
        padding-bottom: clamp(250px, 66vw, 400px);
    }
}

/* ── Hero mobile: clean stacked flow (text above, image below) ── */
@media (max-width: 992px) {
    .hero-banner {
        padding-bottom: 0;
        min-height: 0;
    }

    .hero-col-text {
        padding: 40px 24px 28px;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* back to normal document flow — no absolute, no overlap */
    .hero-col-image {
        position: static;
        width: 100%;
        height: clamp(220px, 56vw, 340px);
        margin: 0;
        justify-content: center;
    }

    .hero-col-image img,
    .hero-col-image img.mobile,
    .hero-col-image img.second {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* ── Hero desktop→tablet: image fills column, never shrinks ── */
@media (min-width: 993px) {
    .hero-container {
        height: 550px;
    }

    .hero-col-image {
        height: 100%;
        align-items: stretch;
    }

    .hero-col-image img,
    .hero-col-image img.desktop,
    .hero-col-image img.second {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }
}

/* ── Hero desktop→tablet: lock 50/50 so image column never collapses ── */
@media (min-width: 993px) {
    .hero-col-text {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-col-image {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-content {
        width: auto;
        max-width: 100%;
    }
}

/* ── Hero mobile: tighter gap + bigger image ── */
@media (max-width: 992px) {
    .hero-col-text {
        padding: 34px 22px 14px;
    }

    .hero-title {
        letter-spacing: 0;
    }

    .hero-col-image {
        height: clamp(260px, 64vw, 400px);
    }
}

/* ── Hero image: show full cutout, never crop (PNG has transparent bg) ── */
.hero-col-image img,
.hero-col-image img.desktop,
.hero-col-image img.mobile,
.hero-col-image img.second {
    object-fit: contain;
}

@media (min-width: 993px) {
    .hero-col-image img,
    .hero-col-image img.desktop,
    .hero-col-image img.second {
        object-fit: contain;
        object-position: left bottom;
    }
}

@media (max-width: 992px) {
    .hero-col-image {
        height: clamp(240px, 60vw, 380px);
    }

    .hero-col-image img,
    .hero-col-image img.mobile,
    .hero-col-image img.second {
        object-fit: contain;
        object-position: center bottom;
    }
}

/* ── Hero mobile: use the landscape transparent cutout, show it whole ── */
@media (max-width: 992px) {
    .hero-col-image {
        height: auto;
        align-items: center;
    }

    .hero-col-image img.desktop {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-col-image img.mobile {
        display: none;
    }
}

/* ── Hero mobile: banner/container grow to fit image (was clipped at 550) ── */
@media (max-width: 992px) {
    .hero-banner {
        height: auto;
    }

    .hero-container {
        height: auto;
        min-height: 0;
    }
}

/* ── Checkout: payment + shipping as clear selectable rows ── */
.woocommerce-checkout ul.payment_methods,
.woocommerce-checkout #shipping_method {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-checkout ul.payment_methods li.wc_payment_method,
.woocommerce-checkout #shipping_method li {
    margin: 0;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 10px;
    padding: 13px 16px;
    background: #fff;
    transition: border-color .2s, background .2s;
}

.woocommerce-checkout ul.payment_methods li.wc_payment_method:has(input:checked),
.woocommerce-checkout #shipping_method li:has(input:checked) {
    border-color: var(--brand-green-dark, #0E351F);
    background: #eef6e6;
}

.woocommerce-checkout ul.payment_methods li.wc_payment_method label,
.woocommerce-checkout #shipping_method li label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.woocommerce-checkout ul.payment_methods li.wc_payment_method input.input-radio,
.woocommerce-checkout #shipping_method li input.shipping_method {
    accent-color: var(--brand-green-dark, #0E351F);
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex: 0 0 auto;
}

.woocommerce-checkout ul.payment_methods li.wc_payment_method {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.woocommerce-checkout ul.payment_methods .payment_box {
    font-size: 13px;
    color: #555;
    padding: 4px 28px 0;
    background: transparent;
    margin: 0;
}

.woocommerce-checkout ul.payment_methods .payment_box::before {
    display: none;
}

/* shipping sits in the order-review table cell — let it breathe */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    padding-top: 8px;
}

/* ── Un-hide payment/shipping method labels (theme hides all checkout labels) ── */
.woocommerce-checkout ul.payment_methods li.wc_payment_method label,
.woocommerce-checkout #shipping_method li label {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

/* ── Panda checkout: contact / method / time blocks ── */
.panda-fields-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.panda-fields-row .form-row {
    flex: 1 1 45%;
    margin-bottom: 0;
}

/* toggle pills (delivery/pickup, asap/scheduled) */
.panda-method-toggle,
.panda-time-toggle {
    display: flex;
    gap: 8px;
    background: #eef3ea;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 16px;
}
.panda-method-btn,
.panda-time-btn {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 9px;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-green-dark, #0E351F);
    cursor: pointer;
    transition: background .2s, color .2s;
}
.panda-method-btn.is-active,
.panda-time-btn.is-active {
    background: var(--brand-green-dark, #0E351F);
    color: #fff;
}

/* pickup map */
.panda-pickup-address {
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.panda-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--brand-green-light, #90B643);
}
.panda-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* time selects */
.panda-time-fields {
    display: flex;
    gap: 12px;
}
.panda-field-select {
    flex: 1;
    background: transparent;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-primary, #111);
}

/* keep required billing fields WC still needs out of view */
.panda-hidden-billing {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* shipping method now driven by the toggle — hide the row in order review */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
    display: none;
}

/* ── Payment rows: clean, with GPay/ApplePay marks ── */
.woocommerce-checkout ul.payment_methods li.wc_payment_method label {
    justify-content: flex-start;
    width: 100%;
}
.panda-pay-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-inline-start: auto;
}
.panda-pay-icons .panda-pay-mark {
    display: block;
}
/* collapse the (now empty) description box, but keep it usable for the iframe */
.woocommerce-checkout ul.payment_methods .payment_box:empty {
    display: none;
}
.woocommerce-checkout ul.payment_methods .payment_box {
    background: transparent;
    padding: 0;
    margin: 0;
}
.woocommerce-checkout ul.payment_methods .payment_box::before {
    display: none;
}

/* ── Order-pay: center the order summary bar, wrap on small screens ── */
.woocommerce ul.order_details {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    margin: 24px auto;
    padding: 16px 20px;
    max-width: 1000px;
    text-align: center;
    background: #f4f8f0;
    border-radius: 12px;
}
.woocommerce ul.order_details li {
    float: none;
    border: 0 !important;
    margin: 0;
    padding: 0 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    border-inline-end: 1px solid rgba(0,0,0,.12) !important;
}
.woocommerce ul.order_details li:last-child {
    border-inline-end: 0 !important;
}
.woocommerce ul.order_details li strong {
    display: block;
    font-size: 15px;
    color: #111;
}
@media (max-width: 600px) {
    .woocommerce ul.order_details {
        gap: 10px 0;
        flex-direction: column;
    }
    .woocommerce ul.order_details li {
        border-inline-end: 0 !important;
    }
}

/* center the "view cart" link that WC appends in product cards */
.product-card .added_to_cart,
.product-card a.added_to_cart.wc-forward {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ── Cart mobile: stacked cards instead of wide scrolling table ── */
@media (max-width: 768px) {
    .panda-cart-main-column {
        overflow-x: visible;
    }

    .panda-cart-table {
        min-width: 0;
        width: 100%;
        border-collapse: collapse;
    }

    .panda-cart-table thead {
        display: none;
    }

    .panda-cart-table tbody,
    .panda-cart-table tr,
    .panda-cart-table td {
        display: block;
    }

    .panda-cart-table tr.woocommerce-cart-form__cart-item {
        display: grid;
        grid-template-columns: 70px 1fr auto;
        gap: 6px 12px;
        align-items: center;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 12px;
    }

    .panda-cart-table tr.woocommerce-cart-form__cart-item td {
        border: 0 !important;
        padding: 0;
        text-align: right;
    }

    .panda-cart-table td.product-thumbnail {
        display: block !important;
        grid-column: 1;
        grid-row: 1 / 4;
        width: 70px;
    }
    .panda-cart-table td.product-thumbnail img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    .panda-cart-table td.product-name {
        grid-column: 2 / 4;
        grid-row: 1;
        font-weight: 700;
    }
    .panda-cart-table td.product-price {
        grid-column: 2;
        grid-row: 2;
    }
    .panda-cart-table td.product-quantity {
        grid-column: 3;
        grid-row: 2;
        text-align: left;
    }
    .panda-cart-table td.product-subtotal {
        grid-column: 2 / 4;
        grid-row: 3;
        font-weight: 700;
    }

    .panda-cart-table tr.panda-cart-actions {
        display: block;
        border: 0;
        padding: 0;
        margin: 0;
    }
    .panda-cart-table tr.panda-cart-actions td.actions {
        padding: 0;
    }
}

@media (max-width:768px){
  .panda-cart-table tr.woocommerce-cart-form__cart-item{ display:grid !important; }
}

/* ── Quantity stepper: round +/- buttons (cart + checkout) ── */
.panda-qty-wrapper {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    width: auto !important;
    height: auto !important;
    padding: 4px 6px;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    border-radius: 30px;
    background: #fff;
    direction: ltr;
}
.panda-qty-wrapper .qty-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: none;
    border-radius: 50%;
    background: var(--brand-green-dark, #0E351F);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.panda-qty-wrapper .qty-btn:hover {
    background: #1e4428;
    color: #fff;
}
.panda-qty-wrapper input.qty {
    width: 34px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    padding: 0;
    -moz-appearance: textfield;
}
.panda-qty-wrapper input.qty::-webkit-outer-spin-button,
.panda-qty-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Quantity stepper (simplified, reference style): [trash | qty | +] ── */
.panda-qty-wrapper {
    display: inline-flex !important;
    align-items: center;
    gap: 2px;
    width: auto !important;
    height: auto !important;
    padding: 4px 6px;
    border: none !important;
    border-radius: 30px;
    background: #eef6e6;
    direction: ltr;
}
.panda-qty-wrapper .qty-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--brand-green-dark, #0E351F);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.panda-qty-wrapper .qty-btn:hover {
    background: rgba(14, 53, 31, 0.1);
}
/* minus shown as a trash/remove icon */
.panda-qty-wrapper .qty-btn.qty-minus {
    font-size: 0;
}
.panda-qty-wrapper .qty-btn.qty-minus::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E351F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3C/svg%3E") center/contain no-repeat;
    display: block;
}
.panda-qty-wrapper input.qty {
    width: 30px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    padding: 0;
    -moz-appearance: textfield;
}
.panda-qty-wrapper input.qty::-webkit-outer-spin-button,
.panda-qty-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Cart items as separate cards (all widths) ── */
.panda-cart-table {
    display: block;
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}
.panda-cart-table thead { display: none; }
.panda-cart-table tbody,
.panda-cart-table tr,
.panda-cart-table td { display: block; }

.panda-cart-table tr.woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    grid-template-areas:
        "thumb name qty"
        "thumb price qty";
    gap: 2px 18px;
    align-items: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 14px 18px;
    margin-bottom: 14px;
}
.panda-cart-table tr.woocommerce-cart-form__cart-item td {
    border: 0 !important;
    padding: 0;
    text-align: right;
}

.panda-cart-table td.product-thumbnail {
    grid-area: thumb;
    display: flex !important;
    align-items: center;
    width: 90px;
}
.panda-cart-table td.product-thumbnail img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.panda-cart-table td.product-name {
    grid-area: name;
    align-self: end;
    font-weight: 600;
    font-size: 15px;
}
.panda-cart-table td.product-name a {
    color: var(--brand-green-dark, #0E351F);
    text-decoration: none;
}
.panda-cart-table td.product-price {
    grid-area: price;
    align-self: start;
    font-weight: 700;
    font-size: 18px;
    color: #111;
}
.panda-cart-table td.product-quantity {
    grid-area: qty;
    align-self: center;
    text-align: center;
}
.panda-cart-table td.product-subtotal { display: none; }
.panda-cart-table .remove-cart-item { display: none !important; }

.panda-cart-table tr.panda-cart-actions {
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 6px 0 0;
}
.panda-cart-table tr.panda-cart-actions td.actions { padding: 0; }

@media (max-width: 480px) {
    .panda-cart-table tr.woocommerce-cart-form__cart-item {
        grid-template-columns: 70px 1fr auto;
        gap: 2px 12px;
        padding: 12px;
    }
    .panda-cart-table td.product-thumbnail,
    .panda-cart-table td.product-thumbnail img {
        width: 70px;
        height: 70px;
    }
    .panda-cart-table td.product-price { font-size: 16px; }
}

/* ── Checkout order review: stack items on small screens ── */
@media (max-width: 600px) {
    .woocommerce-checkout-review-order-table thead { display: none; }
    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table tbody,
    .woocommerce-checkout-review-order-table tr,
    .woocommerce-checkout-review-order-table td { display: block; }

    .woocommerce-checkout-review-order-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name name"
            "qty total";
        gap: 8px 12px;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid var(--brand-green-light, #90B643);
    }
    .woocommerce-checkout-review-order-table tbody td {
        border: 0 !important;
        padding: 0;
    }
    .woocommerce-checkout-review-order-table td.product-name {
        grid-area: name;
        font-weight: 600;
    }
    .woocommerce-checkout-review-order-table td.product-quantity {
        grid-area: qty;
        justify-self: start;
    }
    .woocommerce-checkout-review-order-table td.product-total {
        grid-area: total;
        justify-self: end;
        font-weight: 700;
    }

    /* footer totals stay as simple rows */
    .woocommerce-checkout-review-order-table tfoot tr {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
        padding: 8px 0;
    }
    .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout-review-order-table tfoot td {
        display: block;
        border: 0 !important;
        padding: 0;
        text-align: start;
    }
}

/* product image inside checkout name cell — keep small */
.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}
.panda-checkout-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Checkout order review: items as cards (all widths), like cart ── */
.woocommerce-checkout-review-order-table { display: block; width: 100%; }
.woocommerce-checkout-review-order-table thead { display: none; }
.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout-review-order-table tbody tr,
.woocommerce-checkout-review-order-table tbody td { display: block; }

.woocommerce-checkout-review-order-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "name qty total";
    align-items: center;
    gap: 10px 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    padding: 12px 14px;
    margin-bottom: 12px;
}
.woocommerce-checkout-review-order-table tbody td {
    border: 0 !important;
    padding: 0;
    text-align: right;
}
.woocommerce-checkout-review-order-table td.product-name {
    grid-area: name;
    font-weight: 600;
    min-width: 0;
}
.woocommerce-checkout-review-order-table td.product-quantity {
    grid-area: qty;
    justify-self: center;
}
.woocommerce-checkout-review-order-table td.product-total {
    grid-area: total;
    justify-self: end;
    font-weight: 700;
    white-space: nowrap;
}

.panda-checkout-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}
.panda-checkout-item-name {
    font-size: 14px;
    line-height: 1.3;
}

/* totals footer: clean rows, not cards */
.woocommerce-checkout-review-order-table tfoot { display: block; }
.woocommerce-checkout-review-order-table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    display: block;
    border: 0 !important;
    padding: 0;
    text-align: start;
    font-weight: 700;
}

@media (max-width: 420px) {
    .woocommerce-checkout-review-order-table tbody tr {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name name"
            "qty total";
    }
}

/* ── Checkout left column: drop outer green box, standalone blocks ── */
.panda-checkout-left > .panda-checkout-box {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.panda-checkout-left .checkout-review-header {
    display: none;
}

/* item cards → green background */
.woocommerce-checkout-review-order-table tbody tr {
    background: var(--card-bg-light, #dceddd) !important;
    border: none !important;
    box-shadow: none !important;
}

/* totals as their own white block */
.woocommerce-checkout-review-order-table tfoot {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    margin: 4px 0 16px;
}
.woocommerce-checkout-review-order-table tfoot tr {
    padding: 6px 0;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 17px;
}

/* payment: compact white card */
.woocommerce-checkout #payment.woocommerce-checkout-payment {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}
.woocommerce-checkout #payment ul.payment_methods {
    gap: 8px;
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
    padding: 11px 14px;
    border-radius: 10px;
}
.woocommerce-checkout #payment .place-order {
    padding: 0;
}

/* ── Checkout item card: price under the name ── */
.woocommerce-checkout-review-order-table tbody tr {
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "name qty"
        "total qty";
    gap: 4px 14px;
}
.woocommerce-checkout-review-order-table td.product-name {
    grid-area: name;
    align-self: end;
}
.woocommerce-checkout-review-order-table td.product-total {
    grid-area: total;
    align-self: start;
    justify-self: start;
    font-weight: 700;
    font-size: 16px;
    color: var(--brand-green-dark, #0E351F);
}
.woocommerce-checkout-review-order-table td.product-quantity {
    grid-area: qty;
    align-self: center;
    justify-self: start;
}
@media (max-width: 420px) {
    .woocommerce-checkout-review-order-table tbody tr {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name qty"
            "total qty";
    }
}

/* ── Checkout: item white+green border, totals green, fix qty overflow ── */
.woocommerce-checkout-review-order-table tbody tr {
    background: #fff !important;
    border: 1px solid var(--brand-green-light, #90B643) !important;
    box-shadow: none !important;
}
.woocommerce-checkout-review-order-table td.product-quantity {
    width: auto !important;
    justify-self: start;
    overflow: visible;
}
.woocommerce-checkout-review-order-table tfoot {
    background: var(--card-bg-light, #dceddd) !important;
    box-shadow: none !important;
    border: 1px solid var(--brand-green-light, #90B643);
}

/* ── Checkout cards: bigger image + mobile price/qty on one row ── */
.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
}

@media (max-width: 600px) {
    .woocommerce-checkout-review-order-table tbody tr {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name name"
            "total qty";
        gap: 10px 12px;
    }
    .woocommerce-checkout-review-order-table td.product-name {
        align-self: center;
    }
    .woocommerce-checkout-review-order-table td.product-total {
        align-self: center;
        justify-self: start;
    }
    .woocommerce-checkout-review-order-table td.product-quantity {
        align-self: center;
        justify-self: end;
    }
    .panda-checkout-item-name {
        font-size: 15px;
    }
}

.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img{ width:92px!important; height:92px!important; border-radius:14px; }

/* ── Cart cards: match checkout (green border, bigger image) ── */
.panda-cart-table tr.woocommerce-cart-form__cart-item {
    border: 1px solid var(--brand-green-light, #90B643) !important;
    box-shadow: none !important;
}
.panda-cart-table td.product-thumbnail,
.panda-cart-table td.product-thumbnail img {
    width: 92px;
}
.panda-cart-table td.product-thumbnail img {
    height: 92px;
    border-radius: 14px;
}
.panda-cart-table tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 92px 1fr auto;
}
@media (max-width: 480px) {
    .panda-cart-table tr.woocommerce-cart-form__cart-item {
        grid-template-columns: 80px 1fr auto;
    }
    .panda-cart-table td.product-thumbnail,
    .panda-cart-table td.product-thumbnail img {
        width: 80px;
        height: 80px;
    }
}

/* ── Cart mobile: kill WC data-title labels, clean coupon ── */
.panda-cart-table td::before,
.panda-cart-table td::after {
    content: none !important;
    display: none !important;
}
.panda-cart-table td.product-subtotal { display: none !important; }

.panda-cart-table tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "info thumb"
        "qtyprice thumb";
}
.panda-cart-table td.product-thumbnail { grid-area: thumb; }
.panda-cart-table td.product-name { grid-area: info; align-self: end; }
.panda-cart-table td.product-price { grid-area: qtyprice; align-self: start; display: inline-block; }
.panda-cart-table td.product-quantity {
    grid-area: qtyprice;
    align-self: start;
    justify-self: start;
    margin-top: 4px;
}

/* coupon box */
.panda-coupon-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 16px;
}
.panda-coupon-box input#coupon_code {
    flex: 1;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 30px;
    padding: 12px 18px;
    font-size: 14px;
    background: #fff;
}
.panda-coupon-box button {
    flex: 0 0 auto;
    border-radius: 30px;
    padding: 12px 24px;
    white-space: nowrap;
}

/* ── Cart card: correct 3-col layout (thumb | name+price | qty) ── */
.panda-cart-table tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 92px 1fr auto;
    grid-template-areas:
        "thumb name qty"
        "thumb price qty";
    gap: 4px 14px;
    align-items: center;
}
.panda-cart-table td.product-thumbnail { grid-area: thumb; align-self: center; }
.panda-cart-table td.product-name { grid-area: name; align-self: end; }
.panda-cart-table td.product-price { grid-area: price; align-self: start; display: block; margin-top: 0; }
.panda-cart-table td.product-quantity { grid-area: qty; align-self: center; justify-self: end; margin-top: 0; }
@media (max-width: 480px) {
    .panda-cart-table tr.woocommerce-cart-form__cart-item {
        grid-template-columns: 80px 1fr auto;
    }
}

/* ── Cart card: name full-width top, price+qty row below ── */
.panda-cart-table tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 80px 1fr auto;
    grid-template-areas:
        "thumb name name"
        "thumb price qty";
    gap: 6px 12px;
    align-items: center;
}
.panda-cart-table td.product-name { grid-area: name; align-self: end; }
.panda-cart-table td.product-price { grid-area: price; align-self: center; justify-self: start; }
.panda-cart-table td.product-quantity { grid-area: qty; align-self: center; justify-self: end; }
.panda-cart-table td.product-thumbnail { grid-area: thumb; align-self: center; }

/* coupon: clean white block, input + button in a row */
.panda-cart-actions td.actions { display: block; }
.panda-coupon-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 14px;
    margin-top: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,.04);
}
.panda-coupon-box input#coupon_code {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 30px;
    padding: 12px 18px;
    font-size: 14px;
    background: #fff;
}
.panda-coupon-box button {
    flex: 0 0 auto;
    width: auto !important;
    border-radius: 30px;
    padding: 12px 22px;
    white-space: nowrap;
}

/* ── qty minus: minus glyph when >1, trash icon when ==1 ── */
.panda-qty-wrapper .qty-btn.qty-minus { font-size: 20px; }
.panda-qty-wrapper .qty-btn.qty-minus::before { content: none !important; display: none !important; }
.panda-qty-wrapper .qty-btn.qty-minus.is-remove { font-size: 0; }
.panda-qty-wrapper .qty-btn.qty-minus.is-remove::before {
    content: '' !important;
    display: block !important;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E351F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Checkout item cards: compact ── */
.woocommerce-checkout-review-order-table tbody tr {
    padding: 10px 14px;
    gap: 4px 12px;
    align-items: center;
}
.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 12px;
}
.panda-checkout-item { align-items: center; gap: 10px; }
@media (max-width: 600px) {
    .woocommerce-checkout-review-order-table tbody tr {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name name"
            "total qty";
        gap: 6px 12px;
        padding: 10px 12px;
    }
    .woocommerce-checkout-review-order-table td.product-name { align-self: center; }
    .woocommerce-checkout-review-order-table td.product-total { align-self: center; }
    .woocommerce-checkout-review-order-table td.product-quantity { align-self: center; }
}

/* ── Restore big checkout image + coupon input radius = card radius ── */
.woocommerce-checkout-review-order-table .checkout-item-img,
.panda-checkout-item img {
    width: 92px !important;
    height: 92px !important;
    border-radius: 14px;
}
.panda-coupon-box input#coupon_code {
    border-radius: 16px;
}
.panda-coupon-box button {
    border-radius: 16px;
}

/* ── Checkout items: same layout as cart (thumb | name/price | qty) ── */
.woocommerce-checkout-review-order-table tbody tr {
    grid-template-columns: 92px 1fr auto !important;
    grid-template-areas:
        "thumb name name"
        "thumb price qty" !important;
    align-items: center;
    gap: 4px 12px;
    padding: 12px 14px;
}
.woocommerce-checkout-review-order-table td.product-thumbnail {
    display: block !important;
    grid-area: thumb;
    align-self: center;
    width: 92px;
}
.woocommerce-checkout-review-order-table td.product-thumbnail .checkout-item-img,
.woocommerce-checkout-review-order-table td.product-thumbnail img {
    width: 92px !important;
    height: 92px !important;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}
.woocommerce-checkout-review-order-table td.product-name {
    grid-area: name;
    align-self: end;
    font-weight: 600;
    font-size: 15px;
}
.woocommerce-checkout-review-order-table td.product-total {
    grid-area: price;
    align-self: start;
    justify-self: start;
    font-weight: 700;
    font-size: 16px;
    color: var(--brand-green-dark, #0E351F);
}
.woocommerce-checkout-review-order-table td.product-quantity {
    grid-area: qty;
    align-self: center;
    justify-self: end;
}
@media (max-width: 480px) {
    .woocommerce-checkout-review-order-table tbody tr {
        grid-template-columns: 80px 1fr auto !important;
    }
    .woocommerce-checkout-review-order-table td.product-thumbnail,
    .woocommerce-checkout-review-order-table td.product-thumbnail img {
        width: 80px !important;
        height: 80px !important;
    }
}

/* ── Panda order extras block ── */
.panda-extras {
    background: #fff;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 16px;
    padding: 16px 18px;
    margin-top: 16px;
}
.panda-extras-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-green-dark, #0E351F);
    margin: 0 0 4px;
}
.panda-extras-note {
    font-size: 12px;
    color: #777;
    margin: 0 0 14px;
}
.panda-extra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}
.panda-extra-label {
    font-weight: 600;
    font-size: 15px;
    color: #111;
}
.panda-extra-qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eef6e6;
    border-radius: 30px;
    padding: 4px 6px;
    direction: ltr;
}
.panda-extra-qty .extra-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--brand-green-dark, #0E351F);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.panda-extra-qty .extra-btn:hover { background: rgba(14, 53, 31, 0.1); }
.panda-extra-qty .extra-val {
    min-width: 26px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

/* extras row inside review table — not a product card */
.woocommerce-checkout-review-order-table tr.panda-extras-row,
.woocommerce-checkout-review-order-table tr.panda-extras-row td {
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* extras label icon */
.panda-extra-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.panda-extra-icon {
    display: inline-flex;
    color: var(--brand-green-dark, #0E351F);
}
.panda-extra-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.panda-cart-table td.product-name{ text-align:right !important; }
.panda-cart-table td.product-price{ text-align:right; }

.panda-cart-table td.product-name{ justify-self:start !important; text-align:right !important; }
.panda-cart-table td.product-price{ justify-self:start !important; text-align:right !important; }

/* ── Contact box: labels above inputs ── */
.panda-contact-box .panda-fields-row .form-row {
    display: flex;
    flex-direction: column;
}
.panda-contact-box .form-row label {
    display: block !important;
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green-dark, #0E351F);
}
.panda-contact-box .form-row .required { color: #e63946; }

/* ── Account prompt / login-register ── */
.panda-account {
    background: #f4f8f0;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.panda-account-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.panda-account-msg { font-size: 13px; color: #333; }
.panda-account-toggle {
    border: none;
    background: var(--brand-green-dark, #0E351F);
    color: #fff;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.panda-account-forms { margin-top: 12px; }
.panda-account-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.panda-acc-tab {
    flex: 1;
    border: 1px solid var(--brand-green-light, #90B643);
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: var(--brand-green-dark, #0E351F);
}
.panda-acc-tab.is-active { background: var(--brand-green-dark, #0E351F); color: #fff; }
.panda-acc-input {
    width: 100%;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    margin-bottom: 8px;
    background: #fff;
}
.panda-acc-submit {
    width: 100%;
    border: none;
    background: var(--btn-lime, #B8D03B);
    color: #fff;
    border-radius: 8px;
    padding: 11px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}
.panda-acc-submit.is-loading { opacity: .6; }
.panda-acc-error { color: #e63946; font-size: 13px; margin-top: 6px; min-height: 16px; }
.panda-account-logged .panda-acc-hi { font-weight: 700; color: var(--brand-green-dark, #0E351F); }

/* ── My Account login/register ── */
.panda-myaccount-auth {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 30px auto;
    padding: 0 16px;
}
.panda-auth-col {
    flex: 1 1 320px;
    background: #fff;
    border: 1px solid var(--brand-green-light, #90B643);
    border-radius: 16px;
    padding: 24px;
}
.panda-auth-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-green-dark, #0E351F);
    margin: 0 0 16px;
}
.panda-myaccount-auth label {
    display: block;
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green-dark, #0E351F);
}
.panda-myaccount-auth .panda-acc-submit { margin-top: 6px; }
.panda-remember {
    font-weight: 400 !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.panda-myaccount-auth .lost_password a {
    color: var(--brand-green-dark, #0E351F);
    font-size: 13px;
}

/* ── Auth submit buttons: force brand lime (theme .button overrides) ── */
.panda-myaccount-auth .panda-acc-submit,
.panda-account .panda-acc-submit,
.woocommerce-form-login .panda-acc-submit,
.woocommerce-form-register .panda-acc-submit {
    background: var(--btn-lime, #B8D03B) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    width: 100% !important;
    cursor: pointer;
    box-shadow: none !important;
}
.panda-myaccount-auth .panda-acc-submit:hover,
.woocommerce-form-login .panda-acc-submit:hover,
.woocommerce-form-register .panda-acc-submit:hover {
    background: #a4ba34 !important;
    color: #fff !important;
}

/* ── Auth columns: green card bg + RTL-consistent inputs ── */
.panda-auth-col {
    background: var(--card-bg-light, #dceddd) !important;
}
.panda-myaccount-auth .panda-acc-input,
.panda-account .panda-acc-input {
    background: #fff;
    direction: rtl;
    text-align: right;
}
.panda-myaccount-auth .panda-acc-input::placeholder,
.panda-account .panda-acc-input::placeholder {
    text-align: right;
}

/* ── Sticky footer (stick to bottom on short pages e.g. account dashboard) ── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > main {
    flex: 1 0 auto;
}

/* ── My Account: constrain to site container width ── */
.woocommerce-account .woocommerce {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 50px;
    width: 100%;
    box-sizing: border-box;
}
.woocommerce-account > main {
    align-self: stretch;
}
