@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary-color: #7733EA;
    --secondary-color: #F2CF01;
    --background-color: #f5f5f5;
    --card-background: #ffffff;
    --text-color-primary: #333333;
    --text-color-secondary: #666666;
    --text-color-light: #ffffff;
    --border-color: #e0e0e0;
    --discount-banner-blue: #007bff;
    --discount-banner-yellow: #ffc107;
    --discount-banner-purple: #6a0dad;

    --font-family-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-heading: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 1rem;
    --font-size-large: 1.5rem;
    --font-size-small: 0.875rem;

    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    --border-radius: 0.5rem;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;

    --red-color: red;

    --leaner-grad: linear-gradient(to bottom, #44257e, #ccc7c7);
}


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

.bg-theme{
    background: #1A4FFF !important;
    border-radius: 4px !important;
}

.bg-light{
    border: 1px solid #1A4FFF !important;
    border-radius: 4px !important;
}

.container-body {
    background: linear-gradient(to bottom, #44257e, #e4dede) !important;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.text-red {
    color: var(--red-color);
    font-size: 12px;
}

.text-span{
    font-size: 12px;
}

.text-price {
    font-size: 15px;
    color: #000;
}

.text-divide{
    font-size: 12px !important;
}

.top-bar {
    background-color: var(--primary-color);
}

.main-header-content {
    background-color: var(--background-color);
}
.nav-bar-custom {
    background-color: var(--primary-color);
}

.header-logo a img{
    width: 100px;
    height: 60px;
}


.search-bar .input-group-text,
.search-bar .form-control {
    background-color: var(--card-background);
    border-color: var(--primary-color);
}
.search-bar .form-control:focus {
    box-shadow: none;
    border-color:var(--primary-color);
}
.search-bar .input-group-text,
.search-bar .form-control {
    border-radius: 30px;
    padding: 0.75rem 1rem;
}
.search-bar .input-group-text {
    border-right: none !important;
}
.search-bar .form-control {
    border-left: none !important;
}

.btn-action {
    background-color: var(--primary-color);
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}
.btn-action:hover {
    background-color: #5b0a99;
}

.nav-bar-custom .nav-link {
    color: var(--text-color-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-bar-custom .nav-link:hover,
.nav-bar-custom .nav-link.active {
    color: #ffc107;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
.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='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .main-header-content .container-fluid {
        flex-direction: column;
    }
    .search-bar {
        order: 3 !important;
        margin-top: 1rem;
    }
    .header-logo {
        order: 1 !important;
        align-self: flex-start;
    }
    .d-flex.gap-2 {
        order: 2 !important;
        align-self: flex-end;
    }
}




.custom-dropdown-container {
    position: relative;
    display: inline-block;
}

.custom-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin-top: 0.125rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    list-style: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.custom-dropdown-menu.show {
    display: block;
}

.custom-dropdown-menu li a {
    display: block;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-decoration: none;
    background-color: transparent;
    border: 0;
}

.custom-dropdown-menu li a:hover {
    color: #1e2125;
    background-color: #e9ecef;
}

.fa-chevron-down {
    transition: transform 0.3s ease;
}

.custom-dropdown-container.show .fa-chevron-down {
    transform: rotate(-180deg);
}

/* =========================================== Hero Section Css Style Start ============================================= */

.hero-section {
    background-color: var(--secondary-color) !important;
    padding: var(--spacing-xl) 20px;
    margin: var(--spacing-lg) 0;
    border-radius: 15px;
}

.hero-title, .hero-subtitle {
    color: var(--text-color-primary);
    font-weight: 700;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.25rem;
    line-height: 1.1;
}

.hero-subtitle small {
    font-size: 1rem;
    font-weight: 400;
}

.btn-hero {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: none;
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
    margin-top: 50px;
}
.btn-hero:hover {
    background-color: #5b0a99;
    color: var(--text-color-light);
}

.note-text {
    position: absolute;
    top: 200px;
    font-size: 0.8rem;
    color: var(--text-color-secondary);
    font-weight: 500;
    margin-top: 1rem;
    white-space: nowrap;
    bottom: 1rem;
}

@media (max-width: 991.98px) {
    .hero-title, .hero-subtitle {
        font-size: 2rem;
    }
    .hero-section {
        padding: var(--spacing-lg) 20px;
    }
    .note-text {
        position: static !important;
        transform: none !important;
        display: block;
        margin-top: 1rem;
    }
}

/* =========================================== Hero Section Css Style End ============================================= */


/* ==================================== Card Choose css style start ====================================== */

.card-choose{
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background-color: #FFFFFF;
    text-align: center;
    padding: 20px;
}


.card-choose img{
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.card-choose h3{
    padding: 7px 0px;
    font-size: 20px;
}

/* ==================================== Card Choose css style end ====================================== */



/* ==================================== Card Promo css style start ====================================== */

.card-promo{
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    padding: 20px;
}


.card-promo img{
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.card-promo .btn-promo{
    padding-top: 10px;
    font-size: 18px;
    text-decoration: underline;
    color: #1A4FFF;
}



/* ==================================== Card Promo css style end ====================================== */



/* ====================================== Home furniture css style start ==================================== */

.custom-card-container {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}


.nav-tabs{
    border-bottom: 0px !important;
}

.nav-tabs .c-link {
    color: #6c757d;
    border: none;
    background-color: transparent;
    padding: 0.5rem 1rem;
}


.c-item>.active{
    background: #6c757d !important;
    border-radius: 0 !important;
    color: #000 !important;
}

.c-item>.active .nav-link{
    color: #000 !important;
}


.card-img-top {
    height: 200px !important;
    object-fit: contain;
}

.product-custom-card {
    border-radius: 1rem;
    text-align: center;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
    height: 100%;
}


.product-custom-card .card-img-top-wrapper {
    background-color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    border: 1px solid #6c757d;
    border-radius: 15px;
}

.product-custom-card .card-img-top-wrapper img{
    height: 130px !important;
}

.product-custom-card .card-body {
    margin: 15px 0px 0px 0px;
    padding: 0px;
    text-align: left;
}


.product-custom-card .card-title {
    font-size: .7rem;
    font-weight: 600;
}

.product-custom-card .card-title s {
    color: #6c757d;
}

.product-custom-card .card-text {
    font-size: 0.7rem;
    color: #6c757d;
}


@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        justify-content: start !important;
    }
    .nav-tabs .nav-item {
        flex-shrink: 0;
    }
    .nav-tabs .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ====================================== Home furniture css style end ==================================== */


/* ========================================== Main Products css style start ==================================== */
.product-section {
    padding: 40px 0;
}

.custom-product-card-all {
    background-color: #FFFFFF;
    padding: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: ease 0.5s;
    position: relative;
}


.custom-product-card-all .badge{
    position: absolute;
    top: 20px;
    left: 20px;
    color: red;
}


.custom-product-card-all .card-body{
    padding: 10px 0px;
    margin: 0px;
}

.shoping-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;

}

.custom-product-card-all .card-body .price-section .price{
    font-size: 12px;
}
.custom-product-card-all .card-body .price-section .price span{
   font-size: 17px;
   color: #1A4FFF;
}

.custom-product-card-all .card-body .price-section p{
    font-size: 12px;
}


.custom-product-card-all .card-body .product-title-all h5{
    color: #1A4FFF;
    padding: 10px 0px 0px 0px;
    font-size: 14px !important;
}

.custom-product-card-all .card-body .product-title-all h3{
    color: #404040;
    padding: 5px 0px 0px 0px;
    font-size: 16px !important;
}

.shoping-cart-btn i {
    color: #FFF;
}



.custom-product-card-all:hover{
    border: 1px solid #1A4FFF;
}

.custom-product-card-all:hover .shoping-cart-btn{
    background: #1A4FFF;
}

/* ========================================== Main Products css style end ==================================== */


/* ==================================== Limit Time Offer Start ================================== */
.limited-offer-container {
    padding: 3rem 0;
}

.product-limited-offer-card {
    width: 100%;
    border: none;
    background-color: #fff;
    border-radius: 0;
    transition: transform 0.2s ease-in-out;
    display: flex;
}

.product-limited-offer-card-image {
    height: 150px;
    width: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-limited-offer-card-title {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;

}

.discount-badge {
    background-color: #dc3545;
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.price-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.old-price {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.navbar-nav .c-link {
    color: #000;
    font-weight: 500;
}

.navbar-nav .c-link.active {
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
}

.dots-nav {
    text-align: center;
    margin-top: 2rem;
}

.dots-nav .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dots-nav .dot.active {
    background-color: #0d6efd;
}

.header-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}
/* ======================================= Limit Time Offer End  ===================================== */


/* ====================================== Footer Section start ================================= */


.bg-dark {
  background-color: #212529 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-purple{
    color: var(--primary-color) !important;
}

.form-control-newsletter {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: #f8f9fa;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
}

.form-control-newsletter:focus {
  background-color: transparent;
  color: #f8f9fa;
  border-color: var(--primary-color);
  box-shadow: none;
}

.input-group-text {
  border-bottom: 1px solid var(--primary-color);
  padding-right: 0;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: #495057 !important;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color) !important;
  color: #f8f9fa;
}

.list-unstyled a:hover {
  color: #f8f9fa !important;
}


/* ====================================== Footer Section end ================================= */


.pva-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.pva-swatch.pva-active {
    border-color: #000;
    transform: scale(1.1);
}


/* ============================================ product details ========================================== */
.product-main-image {

    height: auto;
    max-height: 500px;
    background-color: #FFFF;
    border: 1px solid #F5F5F5;
    object-fit: contain;
}

.product-thumbnail {
    width: 100%;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #333;
}

.thumbnail-container {
    gap: 10px;
    padding-right: 10px;
}

.blur-star {
    color: #e0e0e0;
}



.wishlist-btn {
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.wishlist-btn:hover {
    background-color: #f8f9fa;
}

.wishlist-btn i {
    color: #6c757d;
}

.wishlist-btn .fa-heart.text-red {
    color: red;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.facilities-section {
    margin: 5px 0;
    padding: 0 10px;
}

.facilities-heading {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
}

.facilities-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.facility-item {
    flex: 1;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.facility-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.facility-text {
    font-size: 12px;
    color: #34495e;
    margin-top: 10px;
}

.order-btn{
    background: #1A4FFF;
    border: none;
    padding: 5px 10px;
    color: #FFF;
    border-radius: 4px;
}


.product-qty-buttons .input-group-text{
    background: transparent !important;
}


