@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding-top: 70px;
}

/* ********************************** Header ********************************** */
.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nd-navbar {
    font-size: .99em!important;
    font-weight: 500!important;
    line-height: 1.5!important;
    letter-spacing: 0px;
    border-bottom: 1px solid rgba(28, 39, 60, 0.12);
    background-color: #fff!important;
}
/* ********************************** ./End Header ********************************** */

/* ************************************* carousel ************************************* */
.nobodeal-carousel .swiper {
    width: 100%;
    aspect-ratio: 1920 / 720;
}
.nobodeal-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nobodeal-carousel .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.nobodeal-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nobodeal-carousel .swiper-button-next,
.nobodeal-carousel .swiper-button-prev,
.nobodeal-carousel .swiper-pagination-bullet {
    color: #fff;
}
.nobodeal-carousel .swiper-button-next, 
.nobodeal-carousel .swiper-button-prev {
    display: none;
}
@media (max-width: 768px) {
    .nobodeal-carousel .swiper {
        aspect-ratio: 16 / 9;
    }

    .nobodeal-carousel .swiper-button-next, .nobodeal-carousel .swiper-button-prev {
        font-size: 1.5rem;
        display: none;
    }

    .nobodeal-carousel .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}
/* ************************************* ./end carousel ************************************* */

/* ************************************* category-swiper ************************************* */
.category-swiper .swiper {
    padding: 10px 0;
}

.category-swiper .swiper-slide {
    width: 140px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.category-swiper .swiper-slide:hover {
    transform: scale(1.05);
} 

.category-swiper .swiper-slide img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s;
}

.category-swiper .swiper-button-next::after,
.category-swiper .swiper-button-prev::after {
    font-size: 14px;
}

.category-swiper .swiper-button-next:hover,
.category-swiper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
/* ************************************* ./end category-swiper ************************************* */













.custom-heading {
    font-size: 1.0rem; /* base font size */
    color: #626970;
}

@media (min-width: 576px) {
    .custom-heading {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .custom-heading {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) {
    .custom-heading {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .custom-heading {
        font-size: 1.5rem;
    }
}


.category-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }

  .category-card:hover {
    transform: translateY(-5px);
  }

  .category-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }

  .category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .category-description {
    font-size: 0.95rem;
    color: #6c757d;
  }






.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-title a {
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    color: #000000;
}

.product-title a:hover {
    color: #ff8b00;
}

.product-price {
    color: #606060;
    font-weight: 400;
}

.btn-custom-purple {
    /* background: #ffe6c7 !important; */
    border-color: #ff8b00 !important;
    color: #ff8b00;
    font-size: 90% !important;
    font-weight: 600 !important;
    border-radius: 0.25rem;
    --bs-btn-padding-x: 1rem;
}

.btn-custom-purple:focus,
.btn-custom-purple:hover,
.btn-custom-purple:active,
.btn-custom-purple:active:focus{
    background: #ff8b00!important;
    border-color: #ff8b00!important;
    color:#fff;
    box-shadow: none!important;
}

.btn-custom-green{
    /* background: #cff3d3!important; */
    border-color: #16af71!important;
    color: #16af71;
    font-size: 90%!important;
    font-weight: 600!important;
    border-radius:0.25rem;
    --bs-btn-padding-x: 1rem;
}

.btn-custom-green:focus,
.btn-custom-green:hover,
.btn-custom-green:active,
.btn-custom-green:active:focus{
    background: #50C878!important;
    border-color: #50C878!important;
    color:#fff;
    box-shadow: none!important;
}

/* **************************** FOOTER ************************************** */
.footer-nobodeal-logo {
    color: #0068B5;
    font-family: "Berkshire Swash", serif;
    font-size: 46px;
    font-weight: 400;
    font-style: normal;
}
.footer-nobodeal-logo-d {
    color: #ff8b00;;
}

.footer-heading {
    color: #404040;
    font-size: 18px;
}

/* Footer social */
.social-icons .icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 18px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
    
.icon-link.linkedin {
    background-color: #0A66C2;
}

.icon-link.facebook {
    background-color: #1877F2;
}

.icon-link.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
    
.icon-link.youtube {
    background-color: #FF0000;
}
    
.icon-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}
    
@media (max-width: 576px) {
    .social-icons {
        gap: 1rem;
    }

    .social-icons .icon-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}


footer ul {
    list-style-type: none;
    padding-left: 0;
}

footer ul li a {
    text-decoration: none;
    color: #4d4b4b;
    font-weight: 400;
    font-size: 14px;
}

footer ul li a:hover {
    color: #0068B5;
}

.footer-contact li{
    color: #4d4b4b;
    font-size: 14px;
}

.copyright {
    color: #4d4b4b;
    font-size: 14px;
}


.nobodeal-logo {
    color: #0068B5;
    font-family: "Berkshire Swash", serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
}
.nobodeal-logo-d {
    color: #ff8b00;
}


.search-box {
    position: relative;
}
.search-box .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
}
.search-box input {
    padding-left: 2.5rem;
}

.page-heading {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    /* color: #464343; */
    color: #ff8b00;
}