﻿:root {
    --top-header-bg: #36622e;
    --mid-header-bg-color: #36622e;
    --mid-header-menu-hover-color: #78A96C;
    --mid-header-menu-active-font-color: #1d1d1d;
    --desktop-menu-bg-color: #36622e;
    --desktop-nav-menu-font-color: #000;
    --desktop-nav-menu-hover-color: #f1f1f1;
    --mobile-nav-menu-font-color: #253d4e;
    --mobile-sub-menu-hover-bg-color: #78A96C;
    --mobile-sub-menu-hover-font-color: #f1f1f1;
    --scroll-to-top-bg-color: #018034;
    --scroll-to-top-font-color: #f1f1f1;
    --scroll-website-thumb: #018034;
    --scroll-website-track: #f1f1f1;
    --scroll-modal-thumb: #018034;
    --scroll-modal-track: #f1f1f1;
    --main-page-bg-color: #36622e14;
    --footer-bg-color: radial-gradient(circle at center, #f9f6f0 0%, #FFD389 100%);
    --cart-btn-color: #008343;
    --cart-btn--hover-color: #a7e0e2;
    --cart-added-bg-color: #00c8ff;
    --modal-bg-color: #E2FFDA;
    --modal-header-bg: #36622e;
    --modal-header-color: #36622e;
    --modal-footer-bg: #36622e;
    --modal-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    --modal-border-radius: 12px;
    --modal-title-font-size: 1rem;
    --contact-icon-bg-color: #36622e;
    --contact-icon-hover: #78A96C;
    --hero-section-bg: none;
    --section-bg-clr: #b7dbad;
    --page-heading-color: #008343;
    --uv-bg: #0f172a;
    --uv-accent: #7c3aed;
}

html {
    scroll-behavior: smooth;
}

    html.sr .load-hidden {
        visibility: hidden;
    }

/* Scrollbar - Website (Works in Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scroll-website-track);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-website-thumb);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--scroll-website-thumb);
    }

/* Firefox - Website */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-website-thumb) var(--scroll-website-track);
}

/* Scrollbar - Modal/Custom Scroll */
.custom-scroll {
    max-height: 80vh; /* Scroll within modal */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-modal-thumb) var(--scroll-modal-track);
}

    .custom-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background: var(--scroll-modal-thumb);
        border-radius: 6px;
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: var(--scroll-modal-track);
    }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--main-page-bg-color);
    overflow-x: hidden;
}

.pagebg-global-decoration {
    position: absolute;
    width: 400px;
    height: 300px;
    background-image: url('../Img/page_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.pagebg-left {
    left: -4px;
}

.pagebg-right {
    right: -11px;
}

@media (max-width: 576px) {
    .pagebg-global-decoration {
        display: none;
    }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 27px;
    right: 30px;
    display: none;
    z-index: 9999;
    background-color: var(--scroll-to-top-bg-color);
    border: none;
    height: 40px;
    width: 40px;
}

    #scrollToTopBtn > i {
        color: var(--scroll-to-top-font-color);
    }

.header-top-bar {
    background: var(--top-header-bg);
    font-weight: 600;
}

.header-mid-bg-color {
    background-color: var(--mid-header-bg-color);
}

.top-strip {
    font-size: 12px;
    padding: 9px 20px;
}

.cart-bg-color {
    background: var(--cart-added-bg-color);
}

.main-header {
    padding: 9px 20px;
    border-top: 1px solid #eee;
}

.header-cart {
    width: 67%;
}

.nav-links a {
    margin: 0 14px;
    font-weight: 600;
    font-size: 14px;
    color: var(--menu-font-color);
    text-decoration: none;
}

@keyframes pulse-bg {
    0% {
        background-color: var(--main-color);
    }

    50% {
        background-color: #48cee7;
    }

    100% {
        background-color: #3193a5;
    }
}

.nav-links a.btn-skin-top:hover {
    background-color: var(--mid-header-menu-hover-color);
}

.btn-skin-top {
    background-color: #fbc200;
    color: var(--mid-header-menu-active-font-color) !important;
    font-weight: bold;
    border-radius: 20px;
    font-size: 12px;
    padding: 9px 14px;
}

.search-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 15px;
    width: auto;
    max-width: 300px;
}

.icon-label {
    text-align: center;
    margin-left: 15px;
    font-size: 14px;
}

    .icon-label i {
        display: block;
        font-size: 18px;
    }



.navigation-bar-desktop {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 20px;
    background-color: var(--desktop-menu-bg-color)
}

.d-nav-bar-desktop {
    gap: 3rem;
    text-align: center;
}

    .d-nav-bar-desktop > .nav-item > .nav-link {
        color: white;
        text-transform: uppercase;
        font-weight: 600;
    }

        .d-nav-bar-desktop > .nav-item > .nav-link:hover {
            color: var(--desktop-nav-menu-hover-color);
        }

/* Scope dropdown positioning to TOYS submenu only */
.navigation-bar-desktop .nav-item.dropdown {
    position: relative;
}

.navigation-bar-desktop .dropdown-menu {
    position: absolute;
    left: 0;
    z-index: 1000;
    display: none;
}

/* Show dropdown on hover - only for desktop (d-md-flex) */
@media (min-width: 768px) {
    .navigation-bar-desktop .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}



.mobile-nav-bar > .nav-item > a {
    color: var(--mobile-nav-menu-font-color) !important;
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.5rem;
        display: none;
        min-width: 180px;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

        .dropdown-submenu > .dropdown-menu.show {
            display: block;
        }

.dropdown-item {
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

    .dropdown-item:hover {
        background-color: var(--mobile-sub-menu-hover-bg-color);
        color: var(--mobile-sub-menu-hover-font-color) !important;
    }

/* Optional: Improve spacing and look for the main menu */

.mobile-nav-bar .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

.dropdown-menu.mobile-nav-bar-submenu {
    padding: 0.5rem;
}


.carousel-item {
    cursor: pointer !important;
}


@media (min-width: 992px) {
    #carouselExampleIndicators {
        height: 480px; /* or whatever height you want */
    }

        #carouselExampleIndicators .carousel-item,
        #carouselExampleIndicators .carousel-item img {
            height: 480px;
        }
}

.footer-bg-color {
    position: relative;
    z-index: 1;
    background: none;
}

    .footer-bg-color::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: url(../Img/footer-bg.jpg) no-repeat center;
        background-size: 100% 450px;
        opacity: 0.4;
        z-index: -1;
        pointer-events: none;
    }

.footer-links a {
    text-decoration: none;
    color: #505050;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: #138c99;
        font-weight: 500;
        transform: translateX(5px);
    }

.footer-social {
    list-style: none;
}

    .footer-social li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        font-size: 18px;
        color: black;
        background-color: var(--contact-icon-bg-color);
        border-radius: 50%;
        transition: background-color 0.3s, color 0.3s, transform 0.2s;
        text-decoration: none;
    }

        .footer-social li a:hover {
            background-color: var(--contact-icon-hover);
            color: white;
            transform: scale(1.1);
        }


.footer-bottom-icons {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

.login-box {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.input-group-text {
    cursor: pointer;
}

/*home section*/
.carousel-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-item-custom {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 160px;
}

.category-img {
    max-width: 100px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .hover-card:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

/* Badge styling */
.discount-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #ff5c5c;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Carousel container: center content */
.product-images-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}

    .product-images-carousel img {
        height: 100%;
        width: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        transition: transform 0.3s ease;
        transform-origin: center center;
        backface-visibility: hidden;
        will-change: transform;
    }

        .product-images-carousel img:hover {
            transform: scale(1.05);
        }

@media (max-width: 576px) {
    .product-images-carousel {
        height: 131px;
    }

        .product-images-carousel img {
            height: 100%;
        }
}


.collection-card {
    border-radius: 12px;
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

    .collection-card img {
        position: absolute;
        bottom: 0;
        left: 10px;
        height: 150px;
        object-fit: contain;
    }

.card-purple {
    background-color: #9b4dff;
}

.card-red {
    background-color: #ff6666;
}

.card-orange {
    background-color: #ff944d;
}

h2.section-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.collection-text {
    position: relative;
    z-index: 2;
    padding-left: 160px; /* leaves space for image */
    text-align: left;
}

@media (max-width: 767px) {
    .collection-text {
        padding-left: 0;
        text-align: center;
    }

    .collection-card img {
        position: static;
        display: block;
        margin: 0 auto 15px;
    }

    .footer-bg-color {
        position: relative;
        z-index: 1;
        background: none;
    }

        .footer-bg-color::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url(../Img/footer-bg.jpg) no-repeat right;
            background-size: cover;
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
        }
}


.mobile-download-section {
    position: relative;
    z-index: 1;
    background: #d3ffc0;
    padding: 60px 20px;
}

    .mobile-download-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /*background: url(/assets/Img/home-page-app-bg.jpg) no-repeat center;*/
        background-size: cover;
        /*opacity: 0.9;*/
        z-index: -1;
        pointer-events: none;
    }

    .mobile-download-section h2 {
        font-weight: 700;
        color: #1d1d1d;
    }

    .mobile-download-section p {
        color: #2c2c2c;
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 5px !important;
    }

    .mobile-download-section small {
        color: #2c2c2c;
        font-size: 0.8rem;
        line-height: 1.6;
        max-width: 500px;
    }

.btn-vew-more {
    background: var(--cart-btn-color);
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.mobile-app-buttons img {
    height: 44px !important;
    margin-right: 15px;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

    .mobile-app-buttons img:hover {
        transform: scale(1.05);
    }

.product-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

@media (max-width: 768px) {
    .mobile-app-buttons {
        justify-content: center !important;
    }

    .product-image {
        text-align: center;
        margin-bottom: 30px;
    }

    .mobile-download-section {
        position: relative;
        z-index: 1;
        background: #d3ffc0;
        padding: 60px 20px;
    }

        .mobile-download-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            /*background: url(/assets/Img/home-page-app-bg.jpg) no-repeat center;*/
            background-size: cover;
            /*opacity: 0.9;*/
            z-index: -1;
            pointer-events: none;
        }
}

.features-section {
    padding: 40px 0;
}

.feature-box {
    border: 1px solid var(--section-bg-clr);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 36px;
    /*color: var(--contact-icon-bg-color);*/
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.4s ease, color 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: #007bff;
}

.feature-title {
    font-weight: 600;
    color: var(--page-heading-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-subtitle {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-title,
.feature-box:hover .feature-subtitle {
    color: var(--page-heading-color);
}

.add-to-cart-btn {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    border: 1px solid var(--cart-btn-color);
    background-color: var(--cart-btn-color);
    transition: all 0.3s ease;
}

    .add-to-cart-btn:hover {
        background-color: var(--cart-btn--hover-color);
        color: black;
        border-color: #935c00;
    }


.highlight-image-card {
    position: relative;
    width: 100%;
    /*aspect-ratio: 4 / 3;*/
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.highlight-image-card:hover .highlight-img {
    transform: scale(1.08);
    filter: brightness(75%);
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1rem;
}

.highlight-image-card:hover .highlight-overlay {
    opacity: 1;
}

.highlight-text {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

/* Modal dialog */
.modal-content {
    background-color: var(--modal-bg-color);
    border-radius: var(--modal-border-radius);
    box-shadow: var(--modal-shadow);
    border: none;
}

/* Modal header */
.modal-header {
    background-color: var(--modal-header-bg);
    color: var(--modal-header-color);
    border-top-left-radius: var(--modal-border-radius);
    border-top-right-radius: var(--modal-border-radius);
}

.modal-title {
    font-size: var(--modal-title-font-size);
    font-weight: 600;
}

.modal-footer {
    background-color: var(--modal-footer-bg);
    border-bottom-left-radius: var(--modal-border-radius);
    border-bottom-right-radius: var(--modal-border-radius);
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-section {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-info i {
    color: var(--contact-icon-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: var(--contact-icon-bg-color);
    color: black;
    transition: 0.3s;
    text-decoration: none;
}

    .social-icons a:hover {
        background-color: var(--contact-icon-hover);
        color: white !important;
        transform: scale(1.1);
    }


.map-responsive iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}


/*listing css*/
.filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.product-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.2s ease;
    height: 100%;
    position: relative;
    background-color: #fff;
}

    .product-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

.product-img-container {
    overflow: hidden;
    border-radius: 8px;
    height: 206px; /* Ensure height is fixed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
    will-change: transform;
    display: block;
    backface-visibility: hidden;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .product-img-container {
        height: 160px;
    }
}


.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc3545;
    background-color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

    .wishlist-btn:hover {
        background-color: #f8d7da;
        transform: scale(1.05);
    }

    .wishlist-btn.active {
        color: #e63946;
    }

    .wishlist-btn i {
        font-size: 16px;
    }

.sort-select {
    max-width: 220px;
}

.hover-zoom {
    transition: transform 0.4s ease-in-out;
}

    .hover-zoom:hover {
        transform: scale(1.05);
    }

/*pages*/
.hero-bg-color {
    background: var(--hero-section-bg);
}

.aboutus-philosophy {
    background: var(--section-bg-clr);
}

.about-contact-section {
    background: #f5f5f5;
}

.select2-selection {
    height: 38px !important;
    border-color: #ced4da !important;
}

.select2-selection__rendered {
    line-height: 35px !important;
}

.stock-badge {
    position: absolute;
    top: 7px;
    right: 10px;
    background-color: #ffc107;
    color: #000;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: medium;
    z-index: 10;
}

.cart-popup {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    position: fixed;
    top: 10%;
    right: 20px;
    width: 380px;
    max-width: 90%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 20px;
    transform: translateY(-20px);
}

    .cart-popup.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

.cart-popup-content {
    position: relative;
}

    .cart-popup-content p, .cart-popup-content p i {
        font-size: medium;
    }

.cart-popup .close-cart {
    position: absolute;
    right: 12px;
    top: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.cart-popup-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .cart-popup-actions a {
        flex: 1 1 45%;
        text-align: center;
        text-decoration: none;
    }

@media screen and (max-width: 480px) {
    .cart-popup {
        top: 5%;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 95%;
        border-radius: 0 0 12px 12px;
    }

    .cart-popup-actions {
        flex-direction: column;
    }

        .cart-popup-actions a {
            flex: 1 1 100%;
        }
}

.continue-btn {
    background-color: #ffcb7c;
    border: none;
    color: #4e2e00;
    transition: all 0.3s ease;
}

    .continue-btn:hover {
        background-color: #f5b94c;
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        color: #3a1f00;
    }


.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel] {
    height: calc(1.5em + 0.75rem + 2px) !important;
    padding: 0.375rem 0.75rem 0.375rem 5.5rem !important;
    border-radius: 0.5rem;
    font-size: 1rem;
    box-sizing: border-box;
}

.iti--allow-dropdown .iti__flag-container {
    top: 0 !important;
    bottom: 0 !important;
    height: auto !important;
}

.iti__flag-container {
    height: 100% !important;
    display: flex;
    align-items: center;
}

.iti--separate-dial-code input {
    padding-left: 4.5rem !important;
}

.iti {
    width: 100% !important;
}

.country-search input {
    padding: 4px 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.visitor-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 0.6rem; /* spacing between badges */
    align-items: flex-start; /* align to left */
}

.uv-badge {
    display: inline-flex; /* pill look preserved */
    align-items: center;
    gap: .4rem;
    font-size: 0.95rem;
    padding: 0.2rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(200, 200, 200, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uv-pill strong {
    color: #007bff;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

.uv-badge:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
}
