* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Sans-serif !important;
}

   .container {
    padding-left: 25px;
    padding-right: 25px;
    }

   

    .w-100-btn {
        width: 96% !important;
        margin: auto;
    }

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-style: normal;
    /* background-color: rgb(255, 250, 242); */
    background-color: whitesmoke;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.woff2') format('woff2'),
        url('../fonts/HelveticaNeue.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.why-choose{
    background-color: #ffffff;
}
    .zoom-image {
        transition: transform 0.3s ease-in-out;
    }

    .zoom-image:hover {
        transform: scale(1.05); /* 5% zoom */
 }
/* ******************************************* */
/* login register  */
   .card {
        border-radius: 15px;
        background-color: #fcf9f5;
    }

    .input-group-text {
        background-color: #fcf9f5;
        border-right: none;
    }

    .form-control {
        background-color: #fcf9f5;
        border-left: none;
    }

    .form-control:focus,
    .input-group-text,
    .btn-outline-secondary {
        box-shadow: none;
        background-color: #fcf9f5;
    }

    .btn-primary {
        background-color: #f58c22;
        border-color: #f58c22;
        transition: all 0.3s ease;
    }

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #e07b11;
        border-color: #e07b11;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-login-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .forgot-password-link {
        color: #f58c22;
    }

    .form-check-input:checked {
        background-color: #f58c22;
        border-color: #f58c22;
    }
/* login register  */

/* NAVBAR CSS STARTS HERE  */

/* Base Styles */
.topbar {
    background: linear-gradient(90deg, #FFD166, #EF476F, #06D6A0, #118AB2);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264.888-.14 1.254-.874 1.454-2.278 2.016-3.62.2-.585.6-1.595.7-2.52.357-2.42.3-4.83.3-7.327 0-2.8-.374-5.665-.9-8.333h-3.302c.23 2.755.458 5.53.458 8.328 0 2.645-.257 5.078-.257 7.69 0 1.57.2 3.014.6 4.387.1.33.23.76.284 1.145.13.33.23.76.23 1.14v.255c-.333.07-.4.12-.932.224-1.04.2-2.073.274-3.14.274-2.482 0-4.7-.4-6.836-1.195-2.14-.796-3.927-1.964-5.35-3.515-1.42-1.55-2.53-3.493-3.285-5.83-.76-2.342-1.14-5.07-1.14-8.188 0-3.013.38-5.74 1.14-8.188.76-2.437 1.87-4.38 3.287-5.83 1.42-1.55 3.207-2.717 5.35-3.514 2.135-.797 4.352-1.196 6.834-1.196 1.068 0 2.103.075 3.142.274.53.104.595.153.93.224v.26c0 .38-.1.81-.23 1.14-.054.386-.182.815-.284 1.146-.4 1.372-.6 2.815-.6 4.386 0 2.613.258 5.046.258 7.69 0 2.8-.23 5.573-.458 8.328h3.3c.527-2.667.9-5.532.9-8.332 0-2.496-.042-4.908-.3-7.328-.1-.925-.5-1.935-.7-2.52-.563-1.342-.762-2.746-2.016-3.62-.168-.124-.53-.26-.888-.39v-.156c0-.527-.058-1.036-.173-1.53l-.084-.42c-.744 0-1.49.103-2.23.31-1.092.303-2.16.743-3.203 1.32-1.248.684-2.45 1.554-3.594 2.61-1.146 1.056-2.196 2.322-3.15 3.796-.953 1.475-1.72 3.123-2.293 4.944-.574 1.82-.86 3.8-.86 5.94 0 2.14.286 4.12.86 5.94.573 1.82 1.34 3.467 2.293 4.943.954 1.476 2.004 2.742 3.15 3.797 1.146 1.056 2.346 1.926 3.594 2.61 1.043.577 2.11 1.017 3.203 1.32.74.207 1.486.31 2.23.31l.084-.42c.115-.493.173-1.003.173-1.53v-.16z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* Enhanced Navigation Styling */
.navbar {
    border-bottom: 2px solid rgba(132, 102, 82, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    background-color: #fcf9f5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7a7a3' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD166, #EF476F, #06D6A0, #118AB2);
    z-index: 1;
}

.navbar-brand {
    position: relative;
    padding: 10px 15px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.navbar-brand:hover::before {
    transform: scale(1);
}

.navbar-nav .nav-link {
    position: relative;
    color: #000 !important;
    padding: 12px 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 1px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #f58c22 !important;
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD166, #EF476F);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.navbar-nav .nav-link:hover::after {
    width: 30px;
}

/* Icons Styling */
.nav-icons {
    font-size: 1.2rem;
}

.nav-icons .icon-link {
    position: relative;
    color: #f58c22;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-link:hover {
    opacity: 1;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-link:nth-child(1):hover {
    background-color: #FFD166;
}

.icon-link:nth-child(2):hover {
    background-color: #EF476F;
}

.icon-link:nth-child(3):hover {
    background-color: #06D6A0;
}

.badge {
    transition: all 0.3s ease;
    background-color: #EF476F !important;
    border: 2px solid white;
}

/* Navbar Toggler Styles */
.navbar-toggler {
    border: none;
    padding: 0;
    color: #526c85;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1060;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background-color: #FFD166;
    transform: rotate(90deg);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23846652' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Mobile navbar fix */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .d-flex.d-lg-none.align-items-center {
        position: relative;
        z-index: 1060;
    }
}

/* Dropdown Styles */
.navbar .nav-item.dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    background-color: #fcf9f5;
    z-index: 1051;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-item {
    color: #526c85;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD166, #EF476F);
    transition: all 0.3s ease;
    opacity: 0;
}

.dropdown-item:hover {
    background-color: rgba(255, 209, 102, 0.1);
    color: #EF476F;
    transform: translateX(5px);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-divider {
    border-top: 1px solid #e9d5c9;
    margin: 0.5rem 0;
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: rgba(252, 249, 245, 0.98);
    z-index: 1060;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    padding-top: 0;
    border-bottom: 5px solid;
    border-image: linear-gradient(90deg, #FFD166, #EF476F, #06D6A0, #118AB2) 1;
}

.search-overlay.active {
    top: 0;
}

.search-wrapper {
    width: 100%;
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.search-input {
    width: 90%;
    max-width: 600px;
    padding: 15px 25px;
    border: 2px solid #c7a7a3;
    border-radius: 30px;
    font-size: 1.1rem;
    color: #846652;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    border-color: #EF476F;
    box-shadow: 0 5px 20px rgba(239, 71, 111, 0.2);
}

.search-input::placeholder {
    color: #c7a7a3;
}

.search-close {
    background: none;
    border: none;
    color: #846652;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
}

.search-close:hover {
    color: #EF476F;
    transform: rotate(90deg);
    background-color: rgba(239, 71, 111, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(199, 167, 163, 0.2);
        background: linear-gradient(to right, transparent 50%, rgba(199, 167, 163, 0.1) 50%);
        background-size: 200% 100%;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item:hover {
        background-position: -100% 0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-radius: 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .dropdown-menu {
        position: static;
        width: 100%;
        background-color: rgba(252, 249, 245, 0.95);
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0;
    }

    .dropdown-item {
        padding-left: 2.5rem;
    }

    .dropdown-item:hover {
        transform: translateX(0);
    }
}

/* Single Line Navigation */
.navbar-nav.d-flex.flex-lg-row {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.navbar-nav.d-flex.flex-lg-row .nav-item {
    display: inline-flex;
}

@media (max-width: 991.98px) {
    .navbar-nav.d-flex.flex-lg-row {
        flex-direction: column !important;
    }

    .navbar-nav.d-flex.flex-lg-row .nav-item {
        width: 100%;
    }
}

/* NAVBAR CSS ENDS HERE  */

/* ******************************************* */

/* HERO SECTION CSS STARTS HERE */

.carousel {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.image-content img {
    height: 50vh;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.text-content {
    padding: 40px;
}

.text-content h1 {
    /* color: #846652; */
    color: #526c84;
    margin-bottom: 20px;
}

.text-content p {
    color: #fff;
    margin-bottom: 30px;
}

.custom-btn {
    background-color: #f58c22;
    color: #fcf9f5;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #ffa54c;
    color: #fcf9f5;
    transform: translateY(-2px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ffa54c;
    border-radius: 50%;
    padding: 25px;
}

.carousel-indicators button {
    background-color: #ffa54c !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
}

@media (max-width: 991.98px) {
    .text-content {
        text-align: center;
        padding: 20px;
    }

    .image-content {
        margin-top: 30px;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0;
    }

    .text-content h1 {
        font-size: 2rem;
    }
}


@media (max-width: 991.98px) {
    .cloud-border {
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .cloud-border {
        height: 60px;
    }

    .cloud-border-wrapper {
        /* padding: 40px 0; */
    }
}

.banner-btns {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}


/* HERO SECTION CSS ENDS HERE */

/* ******************************************* */

/* PRODUCT SECTION CSS STARTS HERE */
.section-title {
    color: #846652;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    /* padding: 20px; */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(132, 102, 82, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(132, 102, 82, 0.2);
}

.product-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(82, 108, 133, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #fcf9f5;
    color: #526c84;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-details {
    padding: 10px 0 10px;
    /* text-align: center; */
}

.product-details ul li {
    color: #526c84;
}

.product-rating {
    color: #a3aac7;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-title {
    color: #526c84;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* .product-price {
    color: #a3aac7;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
} */

.add-to-cart-btn {
    background: #f58c22;
    color: #fcf9f5;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #ffa54c;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .product-image img {
        height: 200px;
    }

    .product-title {
        font-size: 1.1rem;
    }
}

/* Desktop View Styles */
@media (min-width: 992px) {
    .product-card {
        margin: 0 10px;
    }
}

/* Mobile Slider Styles */
@media (max-width: 991px) {
    .carousel-item {
        /* padding: 0 40px; */
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        background: rgba(132, 102, 82, 0.1);
        border-radius: 50%;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.view-more-btn {
    background: #f58c22;
    color: white;
    padding: 15px 40px;
    border: 2px solid #f58c22;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.view-more-btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(82, 108, 133, 0.3);

}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .view-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .view-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}




/* PRODUCT SECTION CSS ENDS HERE */
/* ******************************************* */
/*.container {*/
/*    padding: 3rem 1rem;*/
/*}*/

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0px;
}

.category-card {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;

}

.image-wrapper {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
    height: 150px;
    margin-bottom: 1.5rem;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.cool-wave {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cool-wave::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffd9b3;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* animation: morphing 8s ease-in-out infinite; */
    z-index: 1;
}

.cool-wave img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 3;
    transform: translateY(-30px);
}

.category-title {
    font-size: 1.2rem;
    margin-top: -10px;
    color: #333;
    font-weight: 600;
    position: relative;
    z-index: 4;
    text-align: center;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .cool-wave img {
        width: 10rem;
        height: 10rem;
    }
}

@media (max-width: 991px) {
    .col-lg-2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .cool-wave img {
        width: 7rem;
        height: 7rem;
    }
}

@media (max-width: 767px) {
    .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .cool-wave img {
        width: 6rem;
        height: 6rem;
    }

    .category-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .image-wrapper {
        padding: 25px;
    }

    .cool-wave img {
        width: 8rem;
        height: 8rem;
        transform: translateY(-15px);
    }

    .cool-wave::before {
        width: 110%;
        height: 140%;
    }

    .category-title {
        font-size: 0.8rem;
    }
}

/* CATEGORY SECTION CSS STARTS HERE */

/* ******************************************* */

/* OFFER SECTION CSS STARTS HERE  */

.offer-section {
     max-width: 1500px; 
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 600px;
    transition: all 0.3s ease;
    opacity: 0.5;
    position: relative;
    color: #fff;
}

/* Individual slide backgrounds */
.slide1 {
    background-image: url('../img/top-banner/OBG-1.jpg');
}

.slide2 {
    background-image: url('../img/top-banner/OBG-2.jpg');
}

.slide3 {
    background-image: url('../img/top-banner/OBG-3.jpg');
}

.slide4 {
    background-image: url('../img/top-banner/OBG-4.jpg');
}

.slide5 {
    background-image: url('../img/top-banner/OBG-5.jpg');
}

.slide6 {
    background-image: url('../img/top-banner/OBG-6.jpg');
}

.slide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 300px;
    z-index: 2;
}

.text-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.shop-btn {
    padding: 12px 30px;
    background: #007bff;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.image-content img {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Navigation and pagination styles */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet {
    background: #333;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

/* Large screens (above 1200px) */
@media (min-width: 1200px) {
    .image-content img {
        max-width: 650px;
    }
}

/* Large screens (above 992px) */
@media (min-width: 993px) {
    .swiper-slide {
        width: 600px;
        min-height: 400px;
        padding: 60px;
        font-size: 24px;
    }
}

/* Medium screens (768px - 992px) */
@media (max-width: 992px) {
    .swiper-slide {
        width: 500px;
        min-height: 350px;
        padding: 40px;
        font-size: 22px;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .text-content p {
        font-size: 1.1em;
    }

    .image-content img {
        max-width: 380px;
    }
}

/* Tablet screens (576px - 768px) */
@media (max-width: 768px) {
    .swiper-slide {
        width: 400px;
        min-height: 300px;
        padding: 30px;
        font-size: 20px;
    }

    .slide-content {
        flex-direction: column;
        height: auto;
        gap: 20px;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
    }

    .text-content h2 {
        font-size: 1.8em;
    }

    .image-content {
        width: 100%;
        height: auto;
        padding: 8px;
    }

    .image-content img {
        max-width: 240px;
        max-height: 150px;
    }
}

/* Mobile screens (below 576px) */
@media (max-width: 576px) {
    .swiper-slide {
        width: 300px;
        min-height: 250px;
        padding: 20px;
        font-size: 18px;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .text-content p {
        font-size: 1em;
    }

    .shop-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .image-content {
        padding: 5px;
    }

    .image-content img {
        max-width: 400px;
        max-height: 220px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .swiper-slide {
        width: 250px;
        min-height: 200px;
        padding: 15px;
        font-size: 16px;
    }

    .image-content img {
        max-width: 360px;
        max-height: 300px;
    }
}



/* OFFER SECTION CSS ENDS HERE  */

/* *************************************************** */

/* CONTACT PAGE CSS STARTS HERE  */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #f58c22;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Form Styling */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #f58c22;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}
.main-heading{
    color: #f58c22;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}
.form-label {
    color: #f58c22;
    font-weight: 600;
}

.form-control {
    border: 2px solid #f58c22;
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    border-color: #f58c22;
    box-shadow: none;
}

.submit-btn {
    background: #f58c22;
    color: #e9e9e9;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffa54c;
    color: #fff;
    transform: translateY(-2px);
}
/* CONTACT CSS ENDS HERE  */


/* ******************************************* */

/* CLAY SECTION CSS STARTS HERE  */

.clay-section {
    background-image: url('../img/top-banner/clay-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 0;
}

.clay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(41, 171, 226, 0.85); */
    z-index: 1;
}

.clay-section .container {
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.clay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.clay-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.clay-text {
    color: #526c85;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.clay-text.fw-bold {
    font-size: 2rem;
    color: #f58c22;
    margin-bottom: 1rem;
}

.shop-btn {
    background-color: #f58c22;
    color: #fff;
    text-transform: uppercase;
    /* font-weight: bold; */
    padding: 0 15px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: #ffa54c;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .clay-section {
        background-position: 70% center;
    }

    .clay-text.fw-bold {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .clay-section {
        background-position: 60% center;
    }

    .video-wrapper {
        padding-bottom: 75%;
    }

    .clay-text.fw-bold {
        font-size: 1.8rem;
    }

    .clay-box {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .clay-section {
        background-position: 55% center;
    }

    .clay-text.fw-bold {
        font-size: 1.5rem;
    }

    .clay-text {
        font-size: 0.9rem;
    }
}


/* CLAY SECTION CSS ENDS HERE  */

/* ******************************************* */

/* BLOGS SECTION CSS STARTS HERE */

/* Blog Title Styles */
.blog-title {
    font-size: 2.5rem;
    color: #526c85;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-accent {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.title-accent span {
    margin: 0 10px;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

/* Video Container Styles */
.blog-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.blog-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f8f8f8;
}

.blog-card:hover .blog-video {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* Category Badge Styles */
.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffa54c;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* Blog Content Styles */
.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Blog Meta Styles */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.blog-meta i {
    color: #f58c22;
}

.read-more {
    color: #f58c22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #6e879f;
}

/* Video Loading State */
.blog-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    z-index: -1;
}

/* Video Hover Controls */
.blog-video-container:hover .blog-video {
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-video-container {
        padding-top: 60%;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-video-container {
        padding-top: 65%;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 1.8rem;
    }

    .blog-content {
        padding: 15px;
    }
}



/* BLOGS SECTION CSS ENDS HERE */

/* ******************************************* */


/* TESTIMONIAL SECTION CSS STARTS HERE */

.section-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-decoration {
    margin-bottom: 2rem;
}

.toy-icon {
    font-size: 2rem;
    margin: 0 10px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 3px solid #fcf9f5;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* .testimonial-bubble {
    background: #cacfe4;
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #fcf9f5 transparent;
} */

.testimonial-bubble p {
    color: #526c85;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #B06AB3;
}

.author-info h5 {
    color: #000;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: #526c85;
    margin: 5px 0;
    font-size: 0.9rem;
}

.rating {
    color: #FFD700;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-bubble {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .toy-icon {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }
}


/* TESTIMONIAL SECTION CSS ENDS HERE */

/* ******************************************* */

/* wooden toys css start here  */
.wooden-toys {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    background-color: #ffd9b3;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* wooden toys css start here  */

/* reduce-toys css start here */
.reduce-toys{
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color: #ffd9b3;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* reduce-toys css ends here */

/* FOOTER CSS STARTS HERE */

footer {
    background-color: #fff;
    padding: 3rem 0 2rem;
    font-size: 18px;
}

/* Social Icons */
footer .social-icons i {
    font-size: 1.5rem;
    color: #000;
    transition: color 0.3s ease;
}

/* footer .social-icons a:hover i {
    color: #e3e8fc !important;
} */
 .footer p{
    font-size: 15px;
 }
 footer ul li a{
    font-size: 15px;
 }

/* Footer Links */
footer ul li a:hover {
    color: #f58c22 !important;
    transition: color 0.3s ease;
}

/* Footer Dropdown */
.footer-dropdown button {
    background: none;
    border: none;
    border-bottom: 1px solid #c7a7a3;
    border-radius: 0;
    padding: 10px 0;
}

.footer-dropdown button:focus {
    box-shadow: none;
}

.footer-dropdown .bi-chevron-down {
    transition: transform 0.3s ease;
}

.footer-dropdown .collapsed .bi-chevron-down {
    transform: rotate(-90deg);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-dropdown {
        margin: 0 15px;
    }

    .footer-dropdown ul {
        padding: 15px;
    }

    .social-icons {
        justify-content: end;
        /*display: flex;*/
    }

    .payment-methods {
        justify-content: center;
    }

    .text-md-start {
        text-align: center !important;
    }

    /* Center all text content */
    footer p,
    footer h5,
    footer h6,
    footer ul,
    footer .footer-dropdown {
        text-align: center;
    }

    /* Center dropdown buttons */
    .footer-dropdown button {
        justify-content: center;
        text-align: center;
    }

    /* Adjust spacing for centered content */
    footer .mb-3 {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 2rem 0;
    }
}


/* FOOTER CSS ENDS HERE */

/* ******************************************* */

/* LOGIN / REGISTER MODAL CSS STARTS HERE  */

/* Custom styles for the auth modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.nav-pills .nav-link {
    color: #000;
    border-radius: 25px;
    padding: 10px 30px;
}

.nav-pills .nav-link.active {
    background-color: #f58c22;
    color: #fcf9f5;
}

.input-group {
    border-radius: 25px;
    overflow: hidden;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 25px 0 0 25px;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 0 25px 25px 0;
}

.btn-dark {
    border-radius: 25px;
    padding: 10px 20px;
}

.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.btn-close {
    opacity: 1;
}


/* LOGIN / REGISTER MODAL CSS ENDS HERE  */

/* ******************************************* */

/* CART MODAL CSS STARTS HERE  */

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background-color: #fcf9f5;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.cart-header {
    padding: 20px;
    background-color: #f58c22;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    flex-shrink: 0;
}

.shipping-progress-container {
    padding: 15px;
    flex-shrink: 0;
}

.cart-items {
    padding: 20px;
    overflow-y: auto;
    /*flex-grow: 1;*/
    max-height: none;
}

.empty-cart-message {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 16px;
    width: 100%;
    margin: 20px 0;
}

.cart-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex-grow: 1;
}

.close-cart {
    background-color: #ffd9b3;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.close-cart:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
}

.close-cart:active {
    transform: scale(0.95);
}

.close-cart:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 167, 163, 0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
    color: #526c85;
}

.coupon-section {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #f58c22;
    box-shadow: 0 0 0 2px rgba(245, 140, 34, 0.2);
}

.coupon-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.apply-coupon-btn {
    padding: 8px 15px;
    background-color: #f58c22;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-coupon-btn:hover {
    background-color: #e57d13;
}

.apply-coupon-btn:active {
    transform: scale(0.95);
}

.apply-coupon-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.cart-footer {
    padding: 20px;
    background-color: #fcf9f5;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    flex-shrink: 0;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: #f58c22;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Add these styles to your existing CSS */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background-color: #d1d4e3;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.toast-notification.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 20px;
}

.badge {
    transition: transform 0.3s ease;
}

.badge.pulse {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .toast-notification {
        top: auto;
        bottom: 20px;
        right: auto;
        left: 50%;
        transform: translateX(100%);
        width: 90%;
        max-width: 300px;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .toast-notification.show {
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
    }
    
    .toast-notification:not(.show) {
        transform: translateX(100%);
    }
}

/* Update cart count badge styles */
.badge {
    background-color: #f58c22 !important;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CART MODAL CSS STARTS HERE  */

/* ******************************************* */

/* SHOP PAGE CSS STARTS HERE */

.breadcrumb-item a {
    color: #ffa54c;
    ;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #f58c22;
}

.breadcrumb-item.active {
    color: #f58c22;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #c1c8ea;
}

.shop-heading {
    font-size: 8rem;
    margin-bottom: 1rem;
}

nav[aria-label="breadcrumb"] {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .shop-heading {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .shop-heading {
        font-size: 4rem;
    }

    nav[aria-label="breadcrumb"] {
        margin-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .shop-heading {
        font-size: 3rem;
    }

    .breadcrumb {
        font-size: 14px;
    }

    nav[aria-label="breadcrumb"] {
        margin-bottom: 3rem;
    }
}

@media (max-width: 320px) {
    .shop-heading {
        font-size: 2.5rem;
    }
}


/* SHOP PAGE CSS ENDS HERE */

/* ******************************************* */

/* PRODUCT DETAILS PAGE CSS STARTS HERE */

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-link:hover {
    color: inherit;
}

/* PRODUCT DETAILS PAGE CSS ENDS HERE */


/* PRODUCT DETAIL PAGE CSS STARTS HERE  */

.product-detail-image {
    width: 100%;
}

.main-image {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f8f8f8; */
    border-radius: 8px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* .image-zoom-container:hover img {
            transform: scale(1.08);
        } */

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f58c22;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    color: #526c85;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.wishlist-icon:hover {
    background-color: #f58c22;
    color: white;
    transform: scale(1.1);
}

.wishlist-icon i {
    font-size: 20px;
}

/* Thumbnail Slider */
.thumbnail-slider {
    position: relative;
    padding: 0 45px;
    margin-bottom: 25px;
}

.thumbnail-container {
    display: flex;
    gap: 12px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    scroll-behavior: smooth;
}

.thumbnail-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: #f58c22;
    opacity: 1;
    box-shadow: 0 4px 10px rgba(245, 140, 34, 0.3);
}

.thumbnail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e0e0e0;
    color: #526c85;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-nav:hover {
    background-color: #f58c22;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Product Content Styles */
.product-detail-content {
    padding: 0 20px;
}

#productName {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.95rem;
    margin-left: 8px;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-price-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.original-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.current-price {
    color: #f58c22;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.2);
}

.product-description {
    color: #495057;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

/* Accordion Styling */
.accordion-button {
    padding: 15px 20px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(245, 140, 34, 0.1);
    color: #f58c22;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 140, 34, 0.25);
}

/* Social Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.share-label {
    font-weight: 600;
    color: #526c85;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #526c85;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f58c22;
    color: white;
    transform: translateY(-3px);
}

/* Table Styling */
.table {
    margin-bottom: 0;
}

.table th {
    background-color: rgba(245, 140, 34, 0.05);
}

.package {
    font-size: 11px;
    color: grey;
}

/* scroller css  */
/* Hide scrollbar for Chrome, Safari and Opera */
.product-details-column::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.product-details-column {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Make the image container sticky */
.product-image-column .sticky-top {
    position: sticky;
    top: 20px;
    z-index: 100;
}

/* Set a max-height for the product details column to enable scrolling */
@media (min-width: 768px) {
    .product-detail-row {
        display: flex;
    }

    .product-image-column {
        position: sticky;
        align-self: flex-start;
    }

    .product-details-column {
        max-height: 100vh;
        overflow-y: auto;
    }
}

/* For smaller screens, disable the sticky behavior */
@media (max-width: 767px) {
    .product-image-column .sticky-top {
        position: relative;
        top: 0;
    }
}

/* Coupon Code Styles */
.coupon-section {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #f58c22;
    box-shadow: 0 0 0 2px rgba(245, 140, 34, 0.2);
}

.coupon-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.apply-coupon-btn {
    padding: 8px 15px;
    background-color: #f58c22;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-coupon-btn:hover {
    background-color: #e57d13;
}

.apply-coupon-btn:active {
    transform: scale(0.95);
}

.apply-coupon-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Side Icon Bar */
.side-icon-bar {
    position: fixed;
    top: 80%;
    right: 0;
    transform: translateY(-50%);
    background-color: #f58c22;
    border-radius: 10px 0 0 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Media query for side icon bar on mobile */
@media (max-width: 767px) {
    .side-icon-bar {
        top: auto;
        bottom: 70px;
        right: 0;
        transform: translateY(0);
        padding: 8px;
        z-index: 999;
    }
    
    .icon-hover {
        width: 25px;
        height: 25px;
        margin-bottom: 8px;
    }
    
    .icon-hover i {
        font-size: 14px;
    }
}

/* Individual Icons */
.icon-hover {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    background-color: #000;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

/* Icon Styling */
.icon-hover i {
    color: white;
    font-size: 17px;
}

/* Hover Effects */
.icon-hover:hover {
    background-color: #fed8b2;
    color: black;
}

.icon-hover:hover i {
    color: black;
}
/* *********************************************** */

/* AGE CSS STARTS HERE  */
/* age css  */
.filter-container {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-row > div {
    transition: all 0.4s ease;
}

.filter-col {
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    display: none;
}

.filter-visible {
    animation: fadeIn 0.5s;
    opacity: 1 !important;
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-buttons {
    margin-bottom: 20px;
}

.filter-buttons .filter-btn {
    margin: 5px;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background-color: #f58c22;
    color: white;
    border-radius: 5px;
}

.games {
    background-color: #ffd9b3;
    color: #f58c22;
    margin-bottom: 10px;
}

.games:hover {
    background-color: #ffd9b3;
    color: #f58c22;
    margin-bottom: 10px;
}

.games2 {
    border: 1px solid #000;
    color: #000;
    margin-bottom: 10px;
}

.games2:hover {
    background-color: #000;
    color: #fff;
    margin-bottom: 10px;
}

.play-btn {
    background-color: #f58c22;
    color: #fff;
}

.play-btn:hover {
    background-color: #ffa54c;
    color: #fff;
}
/* AGE CSS ENDS HERE  */

/* ************************************************  */

/* ******************************************* */

/* CHECKOUT PAGE CSS STARTS HERE */

.checkout-form label {
    color: #000;
    /* margin-bottom: 0.5rem; */
}

.checkout-form .form-control, .billing-form .form-control {
    border: 1px solid #a3aac7;
    padding: 0.20rem;
}

.checkout-form .form-control:focus {
    border-color: #526c85;
    box-shadow: 0 0 0 0.2rem rgba(133, 102, 82, 0.25);
}

.checkout-summary {
    position: sticky;
    top: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.checkout-item-details {
    flex-grow: 1;
}

.checkout-item-title {
    color: #526c85;
    margin-bottom: 0.25rem;
}

#placeOrderBtn {
    background-color: #526c85;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#placeOrderBtn:hover {
    background-color: #a3aac7;
    transform: translateY(-2px);
}


#checkoutItems {
    max-height: 300px;
    /* Shows approximately 3 items */
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

/* Custom scrollbar styling */
#checkoutItems::-webkit-scrollbar {
    width: 4px;
}

#checkoutItems::-webkit-scrollbar-track {
    background: #f8f4f3;
    border-radius: 10px;
}

#checkoutItems::-webkit-scrollbar-thumb {
    background: #a3aac7;
    border-radius: 10px;
}

#checkoutItems::-webkit-scrollbar-thumb:hover {
    background: #526c85;
}

/* CHECKOUT PAGE CSS ENDS HERE */

/* ******************************************* */

/* Shipping Progress Bar Styles */
.shipping-progress-container {
    padding: 15px;
    margin: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.shipping-info {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.free-shipping-achieved {
    color: #28a745;
    font-weight: bold;
}

.progress-track {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: visible;
    position: relative;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-milestones {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.milestone {
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #ddd;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.milestone-reached {
    background-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.7);
    transform: translateY(-50%) scale(1.2);
}

.progress-bar {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    overflow: visible;
    width: 0%;
}

.delivery-truck {
    position: absolute;
    font-size: 17px;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    z-index: 3;
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.truck-arrived {
    animation: truckArrived 1s ease-in-out infinite alternate;
}

.free-shipping-label {
    position: absolute;
    right: 0;
    bottom: -22px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 12px;
}

@keyframes truckArrived {
    from {
        transform: translateY(-50%) scale(1);
    }
    to {
        transform: translateY(-50%) scale(1.3);
    }
}

/* Celebration Styles */
.celebration-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
    display: none;
}

.celebration-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    animation: fadeInOut 5s forwards;
}

.balloons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.balloon {
    position: absolute;
    font-size: 40px;
    animation: floatUp 5s ease-in-out;
}

.balloon-1 {
    left: 20%;
    animation-delay: 0.2s;
}

.balloon-2 {
    left: 50%;
    animation-delay: 0.5s;
}

.balloon-3 {
    left: 80%;
    animation-delay: 0.8s;
}

.confetti {
    position: absolute;
    width: 100%;
    height: 100%;
}

.confetti-piece {
    position: absolute;
    font-size: 30px;
    animation: confettiFall 5s ease-in-out;
}

.confetti-piece:nth-child(1) {
    left: 10%;
    animation-delay: 0.1s;
}

.confetti-piece:nth-child(2) {
    left: 30%;
    animation-delay: 0.3s;
}

.confetti-piece:nth-child(3) {
    left: 50%;
    animation-delay: 0.5s;
}

.confetti-piece:nth-child(4) {
    left: 70%;
    animation-delay: 0.7s;
}

.confetti-piece:nth-child(5) {
    left: 90%;
    animation-delay: 0.9s;
}

@keyframes floatUp {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

@keyframes confettiFall {
    0% {
        top: -50px;
        transform: rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 100%;
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Styling for cart quantity controls */
.cart-item .quantity-control {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.cart-item .quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cart-item .quantity-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-out, height 0.4s ease-out;
    z-index: 0;
}

.cart-item .quantity-btn:hover::before {
    width: 120%;
    height: 120%;
}

.cart-item .quantity-btn i {
    position: relative;
    z-index: 1;
}

.cart-item .quantity-btn.minus {
    background-color: #ffe0c3;
    color: #e57b13;
}

.cart-item .quantity-btn.plus {
    background-color: #f58c22;
    color: white;
}

.cart-item .quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

.cart-item .quantity-btn.minus:hover {
    background-color: #ffcfa3;
}

.cart-item .quantity-btn.plus:hover {
    background-color: #e57b13;
}

.cart-item .quantity-btn:active {
    transform: scale(0.95);
}

.cart-item .quantity-input {
    width: 35px;
    height: 28px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    color: #495057;
    background-color: #fff;
    transition: all 0.3s ease;
}

.cart-item .quantity-input:focus {
    border-color: #f58c22;
    box-shadow: 0 0 0 2px rgba(245, 140, 34, 0.2);
    outline: none;
}

.cart-item .remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    color: #dc3545;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cart-item .remove-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cart-item .remove-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(220, 53, 69, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-out, height 0.4s ease-out;
}

.cart-item .remove-btn:hover::before {
    width: 120%;
    height: 120%;
}

.cart-item .remove-btn:hover {
    background-color: #dc3545;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

.cart-item .remove-btn:hover i {
    transform: rotate(15deg);
}

.cart-item .remove-btn:active {
    transform: scale(0.95);
}

/* Make sure the input has no arrows for number type */
.cart-item .quantity-input::-webkit-outer-spin-button,
.cart-item .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item .quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Filter Buttons Style */
.filter-buttons {
    margin-bottom: 20px;
}

.filter-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #526c85;
    padding: 8px 15px;
    margin: 0 5px 10px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #f58c22;
    color: white;
    border-color: #f58c22;
}

.filter-col {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-visible {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Game styles */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.color-match-container,
.memory-match-container,
.word-discovery-container,
.shape-sorter-container {
    display: flex;
    flex-direction: column;
}

.color-grid,
.memory-grid,
.word-grid {
    flex-grow: 1;
}

/* Media queries for game containers */
@media (min-height: 800px) {
    .color-match-container,
    .memory-match-container,
    .word-discovery-container,
    .shape-sorter-container {
        padding: 30px;
    }
}

@media (max-height: 600px) {
    .color-match-container,
    .memory-match-container,
    .word-discovery-container,
    .shape-sorter-container {
        padding: 10px;
        max-height: 95vh;
    }
    
    .game-header {
        margin-bottom: 10px;
    }
    
    .game-header h3 {
        font-size: 1.2rem;
    }
    
    .score-container, 
    .timer-container, 
    .moves-container {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .color-match-container,
    .memory-match-container,
    .word-discovery-container,
    .shape-sorter-container {
        width: 95%;
        padding: 10px;
    }
}

/* For mobile devices */
@media (max-width: 767px) {
    :root {
        --slider-height: auto;
        --image-extra-height: 0;
    }
    
    /* Override carousel for mobile */
    #heroCarousel {
        position: relative !important;
        height: 230px !important;
        min-height: 260px !important;
        z-index: 1 !important;
        overflow: hidden !important;
        width: 100% !important;
        /* max-width: 100% !important; */
    }
}

@media (max-width: 767.98px) {
    /* Remove cloud-border related media queries */
}

@media (max-width: 991.98px) {
    /* Remove cloud-border related media queries */
}

