:root {
    --primary: #487d74;
    --primary-dark: #487d74;
    --primary-light: #e7f3f3;
    --footer-bg: #487d74;
    --form-bg: #fdfdfd;
    --input-icon-bg: #f2f9f9;
    --secondary: #2c3e50;
    --accent: #e52e2e;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --border: #eeeeee;
    --text-main: #333333;
    --text-muted: #777777;
    --black: #000000;
    --radius: 8px;
    --main-font: 'Cairo', sans-serif;

    /* Dynamic Component Variables */
    --ann-padding-d: 10px;
    --ann-padding-m: 8px;
    --ann-font-size-d: 14px;
    --ann-font-size-m: 12px;

    --wa-size: 35px;
    --wa-bottom: 20px;
    --wa-side: 20px;

    --cat-icon-size-d: 85px;
    --cat-icon-size-m: 70px;
    --cat-title-size: 18px;
    --cat-name-size: 14px;

    --slider-h-d: 500px;
    --slider-h-m: 400px;
    --slider-overlay: #000;
    --slider-opacity: 0.3;

    --v-height-d: 600px;
    --v-height-m: 400px;
    --v-overlay: #000;
    --v-opacity: 0.4;
    --v-title-size-d: 48px;
    --v-title-size-m: 28px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

body {
    font-family: var(--main-font);
    background: var(--white);
    color: var(--text-main);
    direction: ltr;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}


button,
a,
.action-icon-v2,
.product-card-v3,
.cat-icon-v3,
.service-item-v3,
img {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    box-shadow: none !important;
}

button:hover,
a:hover,
img:hover {
    transform: none !important;
}




.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


.skip-link {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    left: 50%;
    padding: 12px 24px;
    position: fixed;
    top: -100px;
    transform: translateX(-50%);
    z-index: 100000;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px !important;
}


.product-card-v3:focus-within,
.cat-item-v3:focus-within,
.service-item-v3:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius);
}


.btn-v2:focus-visible,
.btn-teal:focus-visible,
.btn-view-more:focus-visible {
    outline: 3px solid var(--secondary) !important;
    outline-offset: 2px !important;
}


input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary) !important;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


.top-bar-v2 {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 700;
    width: 100%;
}


.site-header-v2 {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
}


.header-actions-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    order: 3;
}

.logo-wrapper-v2 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    order: 1;
}

.nav-menu-v2 {
    display: flex;
    justify-content: center;
    order: 2;
}


.action-icon-v2 {
    background: none !important;
    color: var(--black) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border: none;
    padding: 0;
}

.action-icon-v2 svg {
    width: 22px;
    height: 22px;
}

.cart-count-v2 {
    position: absolute;
    top: -7px;
    right: -9px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 1.5px solid white;
}


.main-nav-ul-v2 {
    display: flex;
    gap: 20px;
    list-style: none;
}

.main-nav-ul-v2 a {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.mobile-only-v2 {
    display: none;
}


.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 110000;
    transition: none !important;
    visibility: hidden;
    opacity: 0;
}

.drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.drawer {
    position: fixed;
    top: 0;
    width: 380px;
    max-width: 90%;
    height: 100%;
    background: white;
    z-index: 110001;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: none !important;
    visibility: hidden;
}

.drawer-left {
    left: 0;
    right: auto;
    transform: translateX(-101%);
}

.drawer-right {
    right: 0;
    left: auto;
    transform: translateX(101%);
}

#menu-drawer {
    display: none !important;
}

@media (max-width: 768px) {
    #menu-drawer {
        display: flex !important;
    }
}


@media (max-width: 768px) {
    .nav-menu-v2 {
        display: none;
    }

    .header-actions-v2 {
        gap: 12px;
    }

    .action-icon-v2 {
        width: auto;
        height: auto;
        padding: 4px;
    }

    .site-header-v2 {
        padding: 6px 0;
    }


    .navbar-v2 {
        position: relative;
        justify-content: space-between;
    }

    .mobile-only-v2 {
        display: flex;
    }

    .drawer {
        width: 280px;
        max-width: 80%;
    }
}


.home-title-banner div,
.shop-title-banner div {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}


.py-8 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-slider {
    margin-bottom: 20px;
}


.products-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 768px) {
    .products-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;

    }
}


.product-card-v3 {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1px;

    background: white;
    text-align: center;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

}

.product-img-v3 {
    display: block;
    margin-bottom: 10px;
    border-radius: 7px 7px 0 0;

    width: 100%;
}

.product-img-v3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-title-v3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    height: 2.8em;
    overflow: hidden;
    padding: 0 5px;

}

.product-price-v3 {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price-regular-v3 {
    font-size: 0.9rem;
    color: #9ea1a4;
    text-decoration: line-through;

    text-decoration-color: #9ea1a4;

    text-decoration-thickness: 1px;

}

.price-sale-v3 {
    color: var(--black);
}


.btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-teal {
    background: var(--primary);
    color: white;
    width: 100%;
}

.btn-grey {
    background: #f1f3f5;
    color: var(--secondary);
    width: 100%;
}


.loader-spinner {
    width: 25px;
    height: 25px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




.home-services {
    padding-bottom: 60px;
    margin-bottom: 0;
}

.home-services-v3 {
    padding-bottom: 40px;
}

.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item-v3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon-wrapper-v3 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.inner-circle-v3 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-v3 h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.service-item-v3 p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .service-icon-wrapper-v3 {
        width: 60px;
        height: 60px;
    }

    .inner-circle-v3 {
        width: 45px;
        height: 45px;
    }

    .service-item-v3 h3 {
        font-size: 0.85rem;
    }

    .service-item-v3 p {
        font-size: 0.8rem;
    }
}


.cat-section-header-v3 {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title-v3 {
    font-size: var(--cat-title-size);
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
}

.view-all-link-v3 {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    gap: 5px;
}

.cat-grid-v3 {
    display: grid;
    grid-template-columns: repeat(var(--cat-per-row, 6), 1fr);
    gap: 30px;
    justify-items: center;
}

.cat-item-v3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: var(--cat-icon-size-d);
    text-align: center;
    flex-shrink: 0;
}

.cat-circle-img {
    width: var(--cat-icon-size-d);
    height: var(--cat-icon-size-d);
    border-radius: var(--cat-border-radius, 50%);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f9f9f9;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}



.cat-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-name-v3 {
    font-size: var(--cat-name-size);
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .cat-section-header-v3 {
        display: flex;
    }

    .cat-grid-v3 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 15px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .cat-grid-v3::-webkit-scrollbar {
        display: none;
    }

    .cat-item-v3 {
        flex: 0 0 calc((100% - (var(--cat-per-row-m, 4) - 1) * 15px) / var(--cat-per-row-m, 4));
        scroll-snap-align: start;
        gap: 6px;
        pointer-events: auto;
    }

    .cat-circle-img {
        width: var(--cat-icon-size-m);
        height: var(--cat-icon-size-m);
    }

    .cat-name-v3 {
        font-size: 11px !important;
    }
}


.footer-grid-revamped {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-col-brand {
    text-align: left;
    padding-right: 20px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-desc-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 320px;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-list li a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-links-list li a:hover {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding-right: 8px;
}

.social-icons-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-item {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-item.fb {
    background-color: #1877F2;
}

.social-item.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-item.tiktok {
    background-color: #000000;
}

.social-item.whatsapp {
    background-color: #25D366;
}

.footer-bottom-new {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .footer-grid-revamped {
        grid-template-columns: 1fr;
        gap: 0;
        display: block;
    }

    .footer-col-brand {
        text-align: center;
        padding-left: 0;
        padding-bottom: 30px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons-modern {
        justify-content: center;
    }

    .footer-desc-text {
        text-align: center;
        margin: 0 auto 20px;
    }

    .footer-col-nav {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-nav-title {
        margin: 0;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .footer-nav-title::after {
        content: '+';
        font-size: 1.2rem;
        transition: 0.3s;
    }

    .footer-col-nav.active .footer-nav-title::after {
        content: '-';
        transform: rotate(180deg);
    }

    .footer-links-list {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .footer-col-nav.active .footer-links-list {
        max-height: 300px;
        padding-bottom: 15px;
    }

    .footer-col-nav.active .footer-links-list li a:first-child {
        margin-top: 10px;
    }
}


@media (max-width: 1024px) {
    .products-grid-v3 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .products-grid-v3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 5px !important;
    }
}




.discount-badge-v3 {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #e52e2e;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.product-info-v3 {
    padding-bottom: 5px;

}

.product-title-v3 {
    margin-bottom: 2px !important;

    height: 2.6em;

}

.product-price-v3 {
    margin-bottom: 12px;
}


.price-regular-v3 {
    font-size: 0.85rem;
    color: #9ea1a4 !important;
    font-weight: 500 !important;
    text-decoration: line-through;
    text-decoration-color: #9ea1a4 !important;
    text-decoration-thickness: 1px;
    position: relative;
    top: 1px;
}


.product-actions-v3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px 10px;

    width: 100%;
}

.product-actions-v3 .btn-v2 {
    width: 100%;

    font-size: 0.85rem;
    border-radius: 4px;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .product-actions-v3 {
        padding: 0 5px 8px;

    }

    .discount-badge-v3 {
        font-size: 0.7rem;
        padding: 1px 5px;
    }

    .product-title-v3 {
        font-size: 0.8rem;
    }
}


.cart-count-v2 {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);

    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;

}


.remove-cart-item-ajax {
    background: #fff0f0;
    color: #ff5c5c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid #ffebeb;
    cursor: pointer;
    transition: 0.2s;
}

.remove-cart-item-ajax:hover {
    background: #ff5c5c;
    color: white;
    transform: rotate(90deg);
}


.fly-img-anim {
    position: fixed;
    z-index: 120000;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.drawer-close-modern {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary);

    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.drawer-close-modern:hover {
    background: transparent;
    color: var(--black);
}

.drawer-close-modern svg {
    width: 22px;
    height: 22px;
    display: block;
}


.mobile-menu-list-clean {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-menu-list-clean li {
    border-bottom: 1px solid #f7f7f7;
}

.mobile-menu-list-clean li a {
    display: block;
    padding: 12px 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: none !important;
}

.mobile-menu-list-clean li a:hover {
    color: var(--secondary);
}


.cat-item-v3 .cat-circle-img {
    border: 1px solid var(--border) !important;

    padding: 1px !important;


    background: white;

}

.cat-item-v3 .cat-circle-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;

}


.social-icons-modern .social-item {
    background: white !important;
    color: var(--primary) !important;
    border: none !important;
}

.social-icons-modern .social-item:hover {
    background: #f0f0f0 !important;

    transform: translateY(-3px);
}


.product-grid-section-v3 {
    padding-top: 10px;
    padding-bottom: 20px;
    width: 100%;
}

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

    gap: 10px;
}

@media (max-width: 1024px) {
    .products-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

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

    }
}


.product-img-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}


.text-content-v3 {
    max-width: 900px;

    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.text-content-v3 p {
    margin-bottom: 20px;
}

.text-content-v3 h1,
.text-content-v3 h2,
.text-content-v3 h3,
.text-content-v3 h4 {
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-content-v3 ul,
.text-content-v3 ol {
    margin-bottom: 20px;
    padding-right: 20px;

}

.text-content-v3 li {
    margin-bottom: 10px;
}


@media (max-width: 900px) {
    .product-single-wrapper {
        align-items: stretch !important;

    }

    .product-gallery {
        position: static !important;

    }
}


.cod-saudi-form-wrapper {
    background: var(--form-bg);
    border: 2px solid #8e8eeb;

    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    font-family: var(--main-font);
}

.cod-form-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}


.cod-offers-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.cod-offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.cod-offer-card:hover {
    border-color: #8e8eeb;
}

.cod-offer-card.selected {
    border: 2px solid #8e8eeb;
    background: #f4f4ff;
    box-shadow: 0 4px 10px rgba(142, 142, 235, 0.15);
}

.cod-offer-card input[type="radio"] {
    display: none;

}

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

.offer-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.offer-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary);
}

.offer-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-top: 5px;
}

.offer-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;

    margin-left: 0;
}

[dir="rtl"] .offer-img {
    margin-right: 0;
    margin-left: 15px;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cod-variations-wrap {
    margin-bottom: 25px;
}

.cod-variation-row {
    margin-bottom: 15px;
}

.var-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.var-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.var-option-item {
    cursor: pointer;
    position: relative;
}

.var-option-item input {
    display: none;
}


.swatch-text {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-weight: 600;
    transition: 0.2s;
}

.var-option-item input:checked+.swatch-text {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}


.swatch-color {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #ddd;
    transition: 0.2s;
}

.var-option-item input:checked+.swatch-color {
    box-shadow: 0 0 0 2px var(--secondary);
    transform: scale(1.1);
}


.cod-inputs-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}


.cod-input-wrap {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

.cod-input-wrap input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px 12px 75px !important;

    border: 1px solid #eeeeee !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    font-family: var(--main-font) !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
    color: #333 !important;
    height: 52px !important;
    min-height: 52px !important;
}

[dir="rtl"] .cod-input-wrap input {
    padding: 12px 75px 12px 15px !important;

    text-align: right !important;
}

.cod-input-wrap input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(19, 133, 133, 0.08) !important;
    background: #fff !important;
    outline: none !important;
}

.cod-input-wrap .input-icon {
    position: absolute !important;
    top: 50% !important;
    left: 8px !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    background: var(--input-icon-bg) !important;
    border-radius: 11px !important;
    color: var(--primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

[dir="rtl"] .cod-input-wrap .input-icon {
    left: auto !important;
    right: 8px !important;
}

.cod-input-wrap .input-icon svg {
    width: 20px !important;
    height: 20px !important;
}


.cod-order-summary {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.summary-row.total {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .summary-row.total {
        font-size: 0.75rem;
    }
}

.summary-row .value.success {
    color: #27ae60;
    font-weight: 700;
}


.cod-submit-btn {
    width: 100%;
    background: #8e8eeb;

    color: white;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;

    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(142, 142, 235, 0.4);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cod-submit-btn:hover {
    background: #7676d6;
    transform: translateY(-2px);
}



.cod-saudi-form-wrapper {
    background: rgba(19, 133, 133, 0.03);

    border: 2px solid var(--primary);

    border-radius: var(--radius);

    padding: 15px;

}

.cod-form-title {
    color: var(--primary);
}


.cod-offers-grid {
    gap: 10px;

}

.cod-offer-card {
    padding: 8px 10px;

    border-radius: var(--radius);
    flex-direction: row-reverse;

    border: 1px solid #e0e0e0;
}

.cod-offer-card.selected {
    border: 2px solid var(--primary);
    background: rgba(19, 133, 133, 0.08);

    box-shadow: none;
}

.offer-content {
    flex-direction: row-reverse;

    justify-content: flex-start;
    gap: 12px;
}

.offer-img {
    margin: 0 !important;

    width: 50px;

    height: 50px;
    flex-shrink: 0;
}

.offer-text {
    text-align: right;

    line-height: 1.2;
}

.offer-title {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.offer-price-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
}

.offer-compare-price {
    color: #e52e2e;
    text-decoration: line-through;
    font-size: 0.8rem;
    opacity: 0.8;
}


.cod-inputs-group {
    gap: 10px;

    margin-bottom: 15px;
}




.cod-submit-btn {
    background: var(--primary);

    border-radius: var(--radius);

    font-size: 1.1rem;
    padding: 14px;
}

.cod-submit-btn:hover {
    background: var(--primary-dark);
}

.cod-submit-btn span.price-in-btn {
    display: none;

}






.cod-saudi-form-wrapper,
.cod-saudi-form-wrapper input,
.cod-saudi-form-wrapper button,
.cod-saudi-form-wrapper .cod-offer-card {
    font-family: inherit !important;

}





.cod-offers-grid .cod-offer-card {
    border-radius: var(--radius);
    padding: 10px;
    align-items: center;

    flex-direction: row !important;
}

.cod-offers-grid .offer-content {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row !important;

}


.cod-offers-grid .offer-img {
    width: 50px;
    height: 50px;
    margin-left: 12px !important;

    margin-right: 0 !important;
}


.cod-offers-grid .offer-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-direction: row !important;
    width: 100%;
}


.cod-offers-grid .offer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}


.cod-offers-grid .offer-price-wrap {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    text-align: left;
    gap: 2px;
}

.cod-offers-grid .offer-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.cod-offers-grid .offer-compare-price {
    font-size: 0.8rem;
    color: #e52e2e;
    text-decoration: line-through;
    font-weight: 400;
}


.cod-offers-grid .cod-offer-card:hover {
    border-color: var(--primary) !important;
    background: transparent !important;

}

.cod-offers-grid .cod-offer-card.selected:hover {
    background: rgba(19, 133, 133, 0.08) !important;

}




.cod-offer-variations {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    width: 100%;
    text-align: right;

}


.cod-variation-row-inline {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 12px;
    width: 100%;
}

.var-inline-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    display: inline-block;
}


.var-options-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;

}


.var-option-small {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    margin: 0;
}


.swatch-color-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-left: 6px;

}

.swatch-name-text {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}


.swatch-text-small {
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;

    min-width: 35px;
    text-align: center;
    font-weight: 500;
}


.var-option-small:hover .swatch-text-small {
    border-color: var(--primary);
}


@media (max-width: 480px) {
    .cod-offer-variations {
        margin-top: 10px;
        padding-top: 10px;
    }

    .var-options-inline {
        gap: 8px;
    }

    .swatch-text-small {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}



.cod-offer-variations.bundle-style {
    margin-top: 20px !important;
    padding-top: 10px;
    width: 100%;

    text-align: right;
}


.cod-bundle-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0 5px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #000;
}

.bundle-head-label {
    flex: 1;

    text-align: center;
}

.bundle-head-spacer {
    width: 30px;

}


.cod-bundle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}


.cod-bundle-select-wrap {
    flex: 1;
    position: relative;
}

.cod-bundle-select {
    width: 100%;
    appearance: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

}

.cod-bundle-select:focus {
    border-color: #000;
    outline: none;
}


.custom-arrow {
    position: absolute;
    left: 10px;

    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}


[dir="rtl"] .custom-arrow {
    left: 10px;
    right: auto;
}

[dir="ltr"] .custom-arrow {
    right: 10px;
    left: auto;
}


.cod-item-num {
    width: 30px;
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    text-align: center;
}


@media (max-width: 480px) {
    .cod-bundle-header {
        font-size: 0.8rem;
    }

    .cod-bundle-select {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .cod-bundle-row {
        gap: 6px;
    }
}




.cod-offers-grid .cod-offer-card {
    justify-content: space-between !important;
    padding: 12px !important;
    border: 2px solid #e0e0e0;

}

.cod-offers-grid .cod-offer-card.selected {
    border-color: var(--primary) !important;

    background: #f0f8ff;

}


.cod-offers-grid .cod-offer-card input[type="radio"] {
    display: none;
}


.cod-offers-grid .offer-content {
    width: 100%;
    justify-content: space-between;
}


.cod-offers-grid .offer-text {
    flex-direction: row-reverse !important;

    justify-content: flex-start;
    gap: 10px;
}


.cod-offers-grid .offer-img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 6px;
    margin: 0 !important;
    order: 2;

}


.cod-offers-grid .offer-title {
    text-align: right;
    font-size: 1rem !important;
    color: #000 !important;
    order: 1;

    margin-right: 0 !important;
}


.cod-offers-grid .offer-price-wrap {
    position: absolute;
    left: 15px;
    top: 15px;

    text-align: left;
    display: flex;
    flex-direction: column;
}

.cod-offers-grid .offer-price {
    font-size: 1.1rem !important;
    color: #000 !important;
    font-weight: 900 !important;
}

.cod-offers-grid .offer-compare-price {
    font-size: 0.85rem !important;
    color: #e52e2e !important;
    margin-top: -2px;
}


.cod-offers-grid .cod-offer-card {
    position: relative;
    min-height: 80px;

}



.cod-offer-variations.bundle-style {
    margin-top: 50px !important;

}

.cod-bundle-header {
    padding: 0 45px 0 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
    text-align: center;
}

.bundle-head-label {
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.bundle-head-spacer {
    display: none;
}



.cod-bundle-row {
    display: grid;
    grid-template-columns: 1fr 1fr 30px;

    gap: 10px;
    align-items: center;
}


.cod-item-num {
    text-align: left;

    font-weight: 900;
    font-size: 1.1rem;
}


.cod-bundle-select {
    height: 42px;

    text-align: center;
    text-align-last: center;

    font-size: 1rem;
    font-weight: 700;
}


input[name="cod_qty_offer"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}


@media (max-width: 480px) {
    .cod-bundle-select {
        height: 38px;
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .cod-offers-grid .offer-price {
        font-size: 1rem !important;
    }

    .cod-offers-grid .offer-title {
        font-size: 0.9rem !important;
        max-width: 140px;

    }
}



.cod-bundle-header {

    grid-template-columns: 30px 1fr 1fr !important;
    padding: 0 !important;
}

.bundle-head-label {
    text-align: center;
}

.bundle-head-spacer {
    display: block !important;

    width: auto;
}

.cod-bundle-row {

    grid-template-columns: 30px 1fr 1fr !important;
}

.cod-item-num {
    text-align: center !important;

    font-size: 1.1rem;
    padding-top: 2px;
}


.cod-bundle-select {
    height: 44px !important;
    line-height: 1.5;
}


@media (max-width: 360px) {
    .cod-bundle-row {
        grid-template-columns: 25px 1fr 1fr !important;
    }

    .cod-bundle-header {
        grid-template-columns: 25px 1fr 1fr !important;
    }
}




.cod-offers-grid .cod-offer-card {
    display: flex !important;
    flex-direction: column !important;

    padding: 15px !important;
    align-items: stretch !important;
}


.cod-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;




    flex-direction: row-reverse;
}


.cod-card-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: left;
    min-width: 80px;
}

.cod-card-price-col .offer-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
}

.cod-card-price-col .offer-compare-price {
    font-size: 0.9rem;
    color: #e52e2e;
    text-decoration: line-through;
    opacity: 0.8;
}


.cod-card-info-col {
    display: flex;
    align-items: center;

    gap: 12px;
    flex-grow: 1;
    justify-content: flex-start;

}


.offer-img-wrap img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}


.offer-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: right;
}

.offer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 4px;
}

.badge-popular {
    background: #444;

    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}


.cod-offer-variations.bundle-style {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: none !important;

}


@media (max-width: 400px) {
    .offer-img-wrap img {
        width: 40px;
        height: 40px;
    }

    .offer-title {
        font-size: 0.95rem;
    }

    .cod-card-price-col .offer-price {
        font-size: 1.1rem;
    }
}




.cod-card-info-col {
    justify-content: flex-start !important;

    gap: 12px;
}


.offer-text-wrap {
    align-items: flex-start !important;

    text-align: right !important;
}


.offer-img-wrap {
    margin: 0 !important;
    flex-shrink: 0;
}


.cod-bundle-select option[selected] {
    font-weight: bold;
}




.badge-popular {
    background: #e52e2e !important;

    font-size: 0.65rem !important;

    padding: 1px 5px !important;

    line-height: 1.2;
    border-radius: 3px;
    margin-top: 3px;
    font-weight: normal;
}




.cod-bundle-header {
    margin-bottom: 4px !important;
}

.bundle-head-label {
    font-size: 0.8rem !important;

    font-weight: 700;
}


.cod-bundle-select {
    height: 34px !important;

    padding: 0 5px 0 5px !important;

    font-size: 0.85rem !important;

    line-height: 1.2 !important;
    border-radius: 4px !important;
}


.cod-bundle-row {
    gap: 6px !important;

    margin-bottom: 6px !important;
}


.cod-item-num {
    font-size: 0.9rem !important;

}


.custom-arrow {
    transform: translateY(-50%) scale(0.8);

}



.cod-std-variations-wrap {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: right;

}

.cod-std-var-row {
    margin-bottom: 15px;
}

.cod-std-var-row:last-child {
    margin-bottom: 0;
}

.std-var-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.std-var-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.std-var-option {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}


.std-var-option input[type="radio"] {
    display: none;
}


.std-swatch-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.std-swatch-name {
    margin-right: 8px;

    font-size: 0.9rem;
    color: #555;
}


.std-var-option input:checked+.std-swatch-color {
    border-color: #333;
    transform: scale(1.1);
}

.std-var-option input:checked~.std-swatch-name {
    font-weight: 700;
    color: #000;
}


.std-swatch-text {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
}


.std-var-option input:checked+.std-swatch-text {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}


.drawer.active {

    visibility: visible;
}

.drawer-left.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.drawer-right.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}






.fly-img-clone {
    position: fixed !important;

    pointer-events: none;
    z-index: 100000;
}


a.added_to_cart,
a.added_to_cart.wc-forward {
    display: none !important;

}


.btn-v2 {
    transition: all 0.3s ease;
}

.btn-v2.loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.btn-v2.loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.fly-item-wrapper {
    position: fixed;
    z-index: 100000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;

    background: #fff;
}

.fly-item-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fly-item-qty {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    z-index: 2;
}


.fly-item-wrapper {

    border: 3px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.cart-item-v3.removing {
    opacity: 0.5;
    transform: translateX(10px);
    transition: all 0.3s ease;
}


.cart-item-v3 {
    position: relative;
    transition: all 0.3s ease;
}

.cart-item-v3.deleting::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
    z-index: 5;
    border-radius: 12px;
}

.cart-item-v3.deleting::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 6;
}


.fly-badge-only {
    position: fixed;
    z-index: 100005;
    background: var(--primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.fly-badge-only svg {
    width: 14px;
    height: 14px;
}


@media (max-width: 768px) {
    .product-title-v3 {
        font-size: 0.85rem !important;
        line-height: 1.3;
        margin-bottom: 4px !important;
    }

    .product-title-v3 a {
        font-size: 0.85rem !important;
    }

    .product-price-v3 {
        margin-top: 2px !important;
    }

    .product-info-v3 {
        padding: 8px 10px !important;
        gap: 4px !important;
    }

    .price-sale-v3 {
        font-size: 0.95rem !important;
    }

    .price-regular-v3 {
        font-size: 0.75rem !important;
    }
}


@media (min-width: 769px) {
    .product-title-v3 {
        margin-bottom: 5px;
    }

    .product-info-v3 {
        padding: 12px 14px;
        gap: 5px;
    }

    .product-price-v3 {
        margin-top: 3px;
    }
}


@media (max-width: 768px) {
    .product-title-v3 a {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


@media (min-width: 769px) {
    .product-title-v3 {
        font-size: 0.9rem;
        line-height: 1.4;
        min-height: 2.8em;

        margin-bottom: 8px;
    }

    .product-title-v3 a {
        font-size: 0.9rem;
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


.hide-page-title .entry-title,
.hide-page-title .page-title,
.hide-page-title article>header,
.hide-page-title .entry-header {
    display: none !important;
}


.cod-submit-btn.loading {
    pointer-events: none;
    opacity: 0.9;
    background: var(--primary);
}

.cod-submit-btn.success {
    background: #28a745 !important;
    pointer-events: none;
}

.cod-submit-btn .btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}

.cod-submit-btn .btn-check {
    display: inline-block;
    font-size: 1.1em;
    margin-left: 8px;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}


.cod-submit-btn.loading .btn-spinner {
    margin: 0 auto;
    display: block;
}


.woocommerce-pagination {
    margin: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    border: none;
    background: transparent;
}

.woocommerce-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    border: none;
}

.woocommerce-pagination ul.page-numbers li .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.15s ease;
}

.woocommerce-pagination ul.page-numbers li span.current {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #e5e5e5;
}


.woocommerce-pagination ul.page-numbers li a:hover {
    background: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
    transform: none !important;
    box-shadow: none !important;
}

.woocommerce-pagination ul.page-numbers li span.current:hover {
    background: #f0f0f0 !important;
}


.woocommerce-pagination .next,
.woocommerce-pagination .prev {
    font-size: 1.2rem;
    font-weight: 800;
}


.woocommerce-pagination ul.page-numbers li .dots {
    background: transparent;
    border: none;
    color: #666;
    min-width: 40px;
}


.pagination-v2 nav.woocommerce-pagination {
    display: flex;
    justify-content: center;
}

.pagination-v2 .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    gap: 8px;
    border: none !important;
    background: transparent !important;
}

.pagination-v2 .page-numbers li {
    margin: 0;
    padding: 0;
    border: none !important;
}

.pagination-v2 .page-numbers li a,
.pagination-v2 .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.15s ease;
}

.pagination-v2 .page-numbers li span.current {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #e5e5e5;
}

.pagination-v2 .page-numbers li a:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}


@media (max-width: 768px) {

    .woocommerce-pagination ul.page-numbers,
    .pagination-v2 .page-numbers {
        gap: 6px;
    }

    .woocommerce-pagination ul.page-numbers li .page-numbers,
    .pagination-v2 .page-numbers li a,
    .pagination-v2 .page-numbers li span {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}


.codleade-lander-mode .lander-container {
    direction: ltr;
}

[dir="rtl"] .cod-input-wrap input {
    text-align: right !important;
}


[dir="ltr"] .cod-input-wrap input[type="tel"] {
    text-align: left !important;
}


.shop-wrapper-v2 {
    padding: 0 10px;
    margin-top: 20px;
}


.pagination-v2 .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--primary);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.pagination-v2 .page-numbers li {
    margin: 0;
    border-left: 1px solid var(--primary);
}

.pagination-v2 .page-numbers li:last-child {
    border-left: none;
}

.pagination-v2 .page-numbers li a,
.pagination-v2 .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    text-decoration: none;
    transition: none !important;
}

.pagination-v2 .page-numbers li span.current {
    background: var(--primary-light);
    color: var(--primary);
}

.pagination-v2 .page-numbers li a:hover {
    background: var(--primary-light);
}


@media (max-width: 768px) {
    .shop-wrapper-v2 {
        padding: 0 5px;
        margin-top: 10px;
    }

    .shop-wrapper-v2 .products-grid-v3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .pagination-v2 .page-numbers li a,
    .pagination-v2 .page-numbers li span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.85rem;
    }
}




.products-wrap-v3 {
    padding: 0 10px;
}


.home-title-banner {
    margin-bottom: 5px;
}

.home-title-banner .banner-box {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1.1rem;
}


.view-more-wrap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.btn-view-more {
    display: inline-block;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-muted);
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
}

.btn-view-more:hover {
    background: var(--bg-light);
}


.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
}

.services-header p {
    color: var(--text-muted);
}


.categories-container {
    padding-top: 10px;
    padding-bottom: 20px;
}


.slider-placeholder {
    background: #f1f3f5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}


.video-slider-wrapper {
    position: relative;
    width: 100%;
    height: var(--v-height-d, 600px);
    overflow: hidden;
    background: #000;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.video-title {
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
}

.video-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

.video-btn {
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}


.theme-slider-v2 {
    width: 100%;
    overflow: hidden;
}

.slider-img-v2 {
    width: 100%;
    object-fit: cover;
    display: block;
}

.theme-slider-v2.hide-on-desktop {
    display: none;
}

@media (max-width: 768px) {
    .theme-slider-v2.hide-on-desktop {
        display: block;
    }

    .video-desc {
        font-size: 1rem;
    }
}






.home-main-slider .swiper-pagination-bullet {
    transition: background 0.3s ease !important;
}

.home-main-slider {
    width: 100%;
    height: var(--slider-h-d, 500px);
    position: relative;
    overflow: hidden;
}

.slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--slider-overlay, #000);
    opacity: var(--slider-opacity, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 30px;
}

.slide-btn {
    display: inline-block;
    padding: 10px 25px;

    background: var(--primary, #e90074);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
}

.slide-btn:hover {
    background: #000 !important;
    color: #fff !important;
}


.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-btn {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .home-main-slider {
        height: var(--slider-h-m, 400px);
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 8px 18px;

        font-size: 14px;
    }
}


.home-main-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.home-main-slider .swiper-pagination-bullet-active {
    background: var(--primary, #e90074);
    opacity: 1;
}

.home-main-slider .swiper-button-next,
.home-main-slider .swiper-button-prev {
    color: #fff;
    transform: none !important;
}

.home-main-slider .swiper-button-next::after,
.home-main-slider .swiper-button-prev::after {
    font-size: 24px;
}

@media (max-width: 768px) {

    .home-main-slider .swiper-button-next::after,
    .home-main-slider .swiper-button-prev::after {
        font-size: 16px;

    }

    .home-main-slider .swiper-button-next,
    .home-main-slider .swiper-button-prev {
        width: 30px;
        top: auto;
        bottom: 10px;

    }

    .home-main-slider .swiper-button-next {
        right: 15px;
    }

    .home-main-slider .swiper-button-prev {
        left: 15px;
    }


    .home-main-slider .swiper-pagination {
        bottom: 15px;
    }
}


.product-gallery-v4 {
    margin-bottom: 20px;
}

.product-main-slider {
    position: relative;
}

.product-main-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.product-slider-next,
.product-slider-prev {
    color: var(--secondary) !important;
    background: transparent !important;
    width: 40px !important;
    height: 40px !important;
    box-shadow: none !important;
    transition: none !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.product-slider-next:after,
.product-slider-prev:after {
    font-size: 24px !important;
    font-weight: 800;
}

.product-slider-next:hover,
.product-slider-prev:hover {
    background: transparent !important;
    transform: none !important;
    color: var(--primary) !important;
    opacity: 0.8;
}


.product-slider-dots {
    bottom: 15px !important;
}

.product-slider-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.2;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.product-slider-dots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .site-header-v2 {
        padding-bottom: 0 !important;
    }

    .product-single-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 30px !important;
        gap: 0 !important;
    }

    .product-gallery-v4 {
        margin-bottom: 0px;
        position: relative !important;
        top: 0 !important;

        align-self: stretch !important;
    }

    .product-main-slider {
        border-radius: 0 !important;
        border: none !important;
    }

    .product-summary {
        padding: 20px 15px;
    }

    .product-slider-next,
    .product-slider-prev {
        width: 26px !important;
        height: 26px !important;
        top: auto !important;
        bottom: 12px !important;
        background: white !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
        opacity: 1 !important;
        z-index: 50 !important;
        pointer-events: auto !important;
        display: flex !important;
    }

    .product-slider-prev {
        left: 12px !important;
    }

    .product-slider-next {
        right: 12px !important;
    }

    .product-slider-next:after,
    .product-slider-prev:after {
        font-size: 10px !important;
        font-weight: 900 !important;
    }

    .discount-badge-v3 {
        top: 10px !important;
        right: 10px !important;
        font-size: 0.65rem !important;
        padding: 2px 8px !important;
        min-width: 40px !important;
        text-align: center !important;
    }


    .product-slider-next:hover,
    .product-slider-prev:hover {
        background: white !important;
        color: var(--secondary) !important;
        transform: none !important;
        opacity: 1 !important;
    }
}


.thumbnails-carousel {
    display: none !important;
}

.special-products-section {
    margin-bottom: 50px !important;
}

.special-products-section .home-title-banner.simple-title {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
    justify-content: center !important;
    text-align: center !important;
}

.section-title-black {
    color: var(--black) !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    width: 100%;
}

/* Announcement Bar */
.announcement-bar-v2 {
    background: var(--primary);
    color: white;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: var(--ann-padding-d);
    padding-bottom: var(--ann-padding-d);
    font-size: var(--ann-font-size-d);
}

.announcement-bar-v2 .container {
    position: relative;
    height: 1.5em;
}

@media (max-width: 768px) {
    .announcement-bar-v2 {
        padding-top: var(--ann-padding-m);
        padding-bottom: var(--ann-padding-m);
        font-size: var(--ann-font-size-m);
    }
}

/* WhatsApp Button */
.whatsapp-btn-v2 {
    position: fixed;
    bottom: var(--wa-bottom);
    width: var(--wa-size);
    height: var(--wa-size);
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.whatsapp-btn-v2:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
    .whatsapp-btn-v2 {
        bottom: 15px;
    }
}

/* Video Slider Overrides */
.video-overlay {
    background: var(--v-overlay);
    opacity: var(--v-opacity);
}

.video-title {
    font-size: var(--v-title-size-d, 48px);
}

@media (max-width: 768px) {
    .video-slider-wrapper {
        height: var(--v-height-m, 400px);
    }

    .video-title {
        font-size: var(--v-title-size-m, 28px);
    }
}

/* Categories Grid */
.cat-container-v3 {
    margin-bottom: 40px;
}

.cat-circle-img {
    width: var(--cat-icon-size-d);
    height: var(--cat-icon-size-d);
}

@media (max-width: 768px) {
    .cat-circle-img {
        width: var(--cat-icon-size-m);
        height: var(--cat-icon-size-m);
    }
}

.section-title-v3 {
    font-size: var(--cat-title-size);
}

.cat-name-v3 {
    font-size: var(--cat-name-size);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Single Product Bits */
.tp-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    border: 1px solid #e1e8f0;
    padding: 5px 12px;
    border-radius: 50px;
    background: #fff;
}

.tp-stars-group {
    display: flex;
    gap: 2px;
}

.tp-star-sq {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.tp-text-wrap {
    color: #2c3e50;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    letter-spacing: -0.2px;
}

.tp-logo-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scalable-trust-icon {
    width: 100%;
    height: auto;
    max-width: 32px;
    color: #000;
}

@media (max-width: 480px) {
    .tp-rating-badge {
        gap: 5px !important;
        margin-bottom: 12px !important;
        padding: 4px 10px !important;
    }

    .tp-star-sq {
        width: 14px !important;
        height: 14px !important;
    }

    .tp-star-sq svg {
        width: 9px !important;
        height: 9px !important;
    }

    .tp-text-wrap {
        font-size: 10px !important;
    }

    .tp-logo-circle {
        width: 16px !important;
        height: 16px !important;
    }

    .tp-logo-circle svg {
        width: 10px !important;
        height: 10px !important;
    }
}

/* COD Form (Mini) */
.cod-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-v2 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--secondary);
}

.form-group-v2 input,
.form-group-v2 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafafa;
    outline: none;
    border: 2px solid transparent;
    transition: 0.3s;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
    border-color: var(--primary);
    background: white;
}

.order-summary-v2 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
}

.order-loader {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--primary);
    align-items: center;
    justify-content: center;
}

.popup-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

/* Popups Common */
.cod-popup-overlay,
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150000;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 10px;
}

.search-popup-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 160000;
}

.cod-popup-modal,
.search-popup-modal {
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    height: fit-content;
    margin: auto;
    position: relative;
    animation: popupFadeIn 0.25s ease-out;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.search-popup-modal {
    border: none;
    border-radius: 20px;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cod-popup-close,
.search-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f8ff;
    border: 1px solid #ced4da;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: #333;
    transition: all 0.2s ease;
}

.search-popup-close {
    background: none;
    border: none;
    color: #999;
}

.popup-product-card {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    gap: 10px;
    border-bottom: 1px solid #f0f0ff;
    position: relative;
}

.popup-product-card .item-image-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.popup-product-card .item-info {
    flex-grow: 1;
    min-width: 0;
    padding-left: 10px;
}

.popup-product-card .item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
}

/* Categories Slider/Grid */
.categories-grid-v3 {
    display: grid;
    grid-template-columns: repeat(var(--cat-per-row, 6), 1fr);
    gap: 40px;
    justify-items: center;
}

.cat-item-v3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cat-icon-v3,
.cat-circle-img {
    width: var(--cat-icon-size-d);
    height: var(--cat-icon-size-d);
    border-radius: var(--cat-border-radius, 50%);
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: none !important;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cat-icon-v3 img,
.cat-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media (max-width: 768px) {
    .categories-scroll-wrapper-v3 {
        overflow-x: auto;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .categories-scroll-wrapper-v3::-webkit-scrollbar {
        display: none;
    }

    .categories-grid-v3 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        gap: 20px;
        padding: 0 15px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .categories-grid-v3::-webkit-scrollbar {
        display: none;
    }

    .cat-item-v3 {
        flex: 0 0 calc((100% - (var(--cat-per-row-m, 4) - 1) * 20px) / var(--cat-per-row-m, 4));
        scroll-snap-align: start;
    }

    .cat-icon-v3,
    .cat-circle-img {
        width: var(--cat-icon-size-m);
        height: var(--cat-icon-size-m);
    }
}

/* Menu Drawer */
.drawer-header {
    background: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 50px;
}

.drawer-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary);
}

.drawer-content {
    padding: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-nav-menu-v2 {
    padding: 10px 25px;
}

.mobile-nav-menu-v2 li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.cod-saudi-form-wrapper {
    background: #ffffff !important;
    border: 1px solid var(--primary) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin-top: 25px;
    font-family: inherit !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
}


.cod-form-title {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%) !important;
    color: var(--primary) !important;
    text-align: center;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 16px 20px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: none !important;
}


.cod-form-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


.cod-form-v2 {
    padding: 15px 25px 25px !important;
}


.cod-std-variations-wrap {
    margin-bottom: 15px;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.cod-std-var-row {
    margin-bottom: 12px;
}

.cod-std-var-row:last-child {
    margin-bottom: 0;
}


.std-var-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.std-var-label .selected-value {
    font-weight: 600;
    color: var(--primary);
}

.std-var-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.std-var-option {
    cursor: pointer;
    position: relative;
}

.std-var-option input[type="radio"] {
    display: none;
}


.std-swatch-color,
.std-swatch-image {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.std-var-option:hover .std-swatch-color,
.std-var-option:hover .std-swatch-image {
    transform: translateY(-2px);
    border-color: #ff0000;
}

.std-var-option input[type="radio"]:checked+.std-swatch-color,
.std-var-option input[type="radio"]:checked+.std-swatch-image {
    border: 2px solid #ff0000 !important;
    box-shadow: inset 0 0 0 2px #fff !important;
    transform: none;
}

.std-swatch-text {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.25s ease;
    min-width: 40px;
    text-align: center;
}

.std-var-option:hover .std-swatch-text {
    border-color: #ff0000;
    color: #ff0000;
}

.std-var-option input[type="radio"]:checked+.std-swatch-text {
    border: 2px solid #ff0000 !important;
    background: #fff;
    color: #ff0000;
    box-shadow: none;
}


.cod-inputs-group {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    margin-bottom: 20px;
}


.cod-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 500px) {
    .cod-inputs-row {
        grid-template-columns: 1fr;
    }
}


.cod-input-wrap {
    position: relative !important;
    width: 100% !important;
    display: block !important;
    border-radius: 12px !important;
}

.cod-input-wrap input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 16px 14px 60px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
    color: var(--secondary) !important;
    height: 52px !important;
    min-height: 52px !important;
}


[dir="rtl"] .cod-input-wrap input {
    padding: 14px 60px 14px 16px !important;
    text-align: right !important;
}

.cod-input-wrap input::placeholder {
    color: #999999 !important;
    font-weight: 400 !important;
}

.cod-input-wrap input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1) !important;
    background: #fff !important;
    outline: none !important;
}


.cod-input-wrap .input-icon {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 52px !important;
    background: rgba(var(--primary-rgb), 0.08) !important;
    border-radius: 12px 0 0 12px !important;
    color: var(--primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    z-index: 10 !important;
    transform: none !important;
    border-right: 1px solid rgba(var(--primary-rgb, 19, 133, 133), 0.15) !important;
}

[dir="rtl"] .cod-input-wrap .input-icon {
    left: auto !important;
    right: 0 !important;
    border-radius: 0 12px 12px 0 !important;
    border-right: none !important;
    border-left: 1px solid rgba(var(--primary-rgb), 0.12) !important;
}

.cod-input-wrap .input-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.5 !important;
}

.cod-error-msg {
    color: #ff3b30;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 2px;
    margin-inline-start: 5px;
    display: flex;
    align-items: center;
    animation: fadeInError 0.3s ease-out;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cod-coupon-section {
    margin-bottom: 15px;
}

.cod-coupon-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cod-coupon-toggle .coupon-question {
    color: var(--secondary);
    font-weight: 600;
}

.cod-coupon-toggle .coupon-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cod-coupon-toggle .coupon-link:hover {
    opacity: 0.8;
}

.cod-coupon-field {
    margin-top: 10px;
}

.coupon-input-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.coupon-input-row input {
    flex: 1;
    padding: 10px 14px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    background: #ffffff !important;
    color: var(--secondary) !important;
    height: 44px !important;
    min-height: 44px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease !important;
}

.coupon-input-row input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1) !important;
    outline: none !important;
}

.coupon-input-row input::placeholder {
    color: #999 !important;
    font-weight: 400 !important;
}

.coupon-apply-btn {
    padding: 0 20px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    height: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.coupon-apply-btn:hover {
    opacity: 0.9 !important;
}

.coupon-apply-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.cod-coupon-msg {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: fadeInError 0.3s ease-out;
}

.cod-coupon-msg.success {
    background: rgba(39, 174, 96, 0.08);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.15);
}

.cod-coupon-msg.error {
    background: rgba(255, 59, 48, 0.08);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.15);
}

.cod-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 10px;
}

.cod-coupon-applied .coupon-applied-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #27ae60;
}

.cod-coupon-applied .coupon-applied-info .coupon-code-tag {
    background: #27ae60;
    color: #fff;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cod-coupon-applied .coupon-remove-btn {
    background: none;
    border: none;
    color: #ff3b30;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cod-coupon-applied .coupon-remove-btn:hover {
    background: rgba(255, 59, 48, 0.08);
}













.cod-manual-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cod-manual-qty-wrap:hover {
    border-color: #eeeeee;
    box-shadow: none;
}

.qty-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 4px;
    border-radius: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.qty-btn:active {
    transform: translateY(0);
}

.qty-controls input {
    width: 40px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

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


[dir="rtl"] .cod-manual-qty-wrap {
    flex-direction: row;
}


.cod-order-summary {
    background: #f9f9f9 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    margin-bottom: 12px !important;
    margin-top: 8px;
}


.shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.shipping-badge svg {
    width: 16px;
    height: 16px;
    color: #666666;
}


.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row .label {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.82rem;
}

.summary-row .value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.85rem;
}

.summary-row .value.success {
    color: #27ae60 !important;
}


.summary-row.total {
    border-top: none !important;
    padding-top: 8px;
    margin-top: 5px;
    margin-bottom: 0;
}

.summary-row.total .label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.summary-row.total .value {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary) !important;
}


.summary-row.total .value-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}


.summary-row.total .compare-price {
    font-size: 1rem;
    color: #bbbbbb;
    text-decoration: line-through;
    font-weight: 400;
}


.cod-submit-btn {
    width: 100% !important;
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    padding: 14px 25px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 19, 133, 133), 0.3) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.cod-submit-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 19, 133, 133), 0.4) !important;
}

.cod-submit-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 3px 12px rgba(var(--primary-rgb, 19, 133, 133), 0.25) !important;
}


.cod-offers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cod-offers-grid:empty,
.cod-std-variations-wrap:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cod-offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.cod-offer-card:hover {
    border-color: var(--primary);
}

.cod-offer-card.selected {
    border: 2px solid var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
}

.cod-offer-card input[type="radio"] {
    display: none;
}


.cod-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
}

.cod-card-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cod-card-price-col .offer-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.cod-card-price-col .offer-compare-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.cod-card-info-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-text-wrap {
    text-align: right;
}

.offer-text-wrap .offer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.badge-popular {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
    font-weight: 600;
}


.cod-offer-variations.bundle-style {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cod-bundle-header {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.bundle-head-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888888;
}

.cod-bundle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cod-item-num {
    width: 26px;
    height: 26px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cod-bundle-select-wrap {
    position: relative;
    flex: 1;
}

.cod-bundle-select {
    width: 100%;
    padding: 10px 14px;
    padding-right: 35px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    appearance: none;
    background: white;
    cursor: pointer;
}

.cod-bundle-select:focus {
    border-color: var(--primary);
    outline: none;
}

.cod-bundle-select-wrap .custom-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888888;
}

[dir="rtl"] .cod-bundle-select-wrap .custom-arrow {
    right: auto;
    left: 12px;
}


.popup-product-list {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.popup-product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 6px;
    position: relative;
}

.popup-product-card:last-child {
    margin-bottom: 0;
}

.popup-item-remove-btn {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff5252;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.8;
}

[dir="rtl"] .popup-item-remove-btn {
    left: auto;
    right: 8px;
}

.popup-item-remove-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.item-info {
    flex: 1;
    padding-right: 35px;
}

[dir="rtl"] .item-info {
    padding-right: 0;
    padding-left: 35px;
}

.item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2px;
}

.item-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-current-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.item-compare-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.item-image-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: visible;

}

.item-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}

.item-qty-badge {
    position: absolute;
    top: -8px;

    right: -8px;

    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 5;
}


#cod-form-error {
    background: rgba(var(--primary-rgb), 0.1) !important;
    border: 1px solid var(--primary) !important;
    color: #cc3333 !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin-bottom: 12px !important;
}


@media (max-width: 768px) {
    .cod-saudi-form-wrapper {
        border-radius: 16px !important;
        margin-top: 20px;
    }

    .cod-form-v2 {
        padding: 20px !important;
    }

    .cod-form-title {
        font-size: 0.85rem !important;
        padding: 14px 16px !important;
    }

    .cod-input-wrap input {
        height: 48px !important;
        min-height: 48px !important;
        font-size: 0.9rem !important;
    }

    .cod-input-wrap .input-icon {
        height: 48px !important;
    }

    .cod-submit-btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .cod-order-summary {
        padding: 10px 12px !important;
        margin-bottom: 10px !important;
        border-radius: 10px !important;
    }

    .summary-row {
        margin-bottom: 4px;
        font-size: 0.8rem;
    }

    .summary-row .label {
        font-size: 0.78rem;
    }

    .summary-row .value {
        font-size: 0.8rem;
    }

    .summary-row.total {
        padding-top: 6px;
        margin-top: 4px;
        border-top: 1px dashed rgba(0, 0, 0, 0.05) !important;
    }

    .summary-row.total .label {
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .summary-row.total .value {
        font-size: 0.95rem !important;
    }

    .summary-row.total .compare-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cod-form-v2 {
        padding: 16px !important;
    }

    .cod-inputs-group {
        gap: 10px !important;
    }

    .cod-offer-card {
        padding: 12px;
    }

    .cod-card-price-col .offer-price {
        font-size: 1.05rem;
    }

    .offer-img-wrap {
        width: 45px;
        height: 45px;
    }

    .cod-submit-btn {
        padding: 12px 18px !important;
    }
}




.cod-popup-overlay .cod-saudi-form-wrapper,
#cod-popup-content .cod-saudi-form-wrapper,
.cod-popup-content .cod-saudi-form-wrapper {
    border: none !important;
    box-shadow: none !important;
}


.cod-popup-overlay .cod-form-title,
#cod-popup-content .cod-form-title,
.cod-popup-content .cod-form-title {
    background: transparent !important;
    padding: 0 0 15px 0 !important;
    margin-bottom: 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}


.popup-item-remove-btn {
    left: auto !important;
    right: 8px !important;
}

[dir="rtl"] .popup-item-remove-btn {
    right: auto !important;
    left: 8px !important;
}


.item-info {
    padding-left: 30px !important;
    padding-right: 0 !important;
    gap: 2px;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .item-info {
    padding-right: 30px !important;
    padding-left: 0 !important;
}

.curr-prod-card {
    padding: 5px 8px !important;
}

.popup-product-card {
    gap: 8px !important;
}

/* Featured Banner V3 */
.featured-banner-v3 {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
}

.featured-banner-v3+.featured-banner-v3 {
    padding-top: 0;
}

.featured-banner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-reverse .featured-banner-inner {
    flex-direction: row-reverse;
}

.banner-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.banner-title {
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
}

.banner-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn-wrap {
    margin-top: 10px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.banner-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .featured-banner-inner {
        gap: 40px;
    }

    .banner-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .featured-banner-v3 {
        padding: 15px 0;
    }

    .featured-banner-inner,
    .banner-reverse .featured-banner-inner {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }

    .banner-media {
        order: 1;
    }

    .banner-content {
        order: 2;
        padding: 0 20px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .banner-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
}