/* BuildMart Figma Export Base CSS - kept close to provided design */
:root {
    --bg-color-gray: #FAFAFA;

    --primary-color: #F97316;

    --white: #fff;
    --switch-off: #D9D9D9;



    --text-sm: 0.875rem;
    /* 14px */
    --text-medium: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --radius-sm: 4px;

    /*display*/
    --display-xs: 24px;
    --display-sm :30px;
    --display-md :40px;
    --display-lg :48px;

}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body{
    overflow-x:hidden;
}
.container-fluid{
    padding:29px 60px
}

.bg-primery {
    background-color: var(--primary-color);
}
.primery-color{
    color: var(--primary-color);
}
.withe{
    color: #fff;
}
.black{
    color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.breadcrumb-item+.breadcrumb-item::before{
    color: var(--primary-color) !important;

}
.breadcrumb .breadcrumb-item{
    text-decoration: none;
    color: var(--primary-color);
    font-size: var(--text-medium) !important;
}
.breadcrumb .active{
    color: #686868;
}

.signIn {
    /* height: 100vh; */
}

.image-section {

    background-color: var(--bg-color-gray);
    padding-top: 32px;
    width: calc(100vw /2);

}

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

.signIn-card {}

.signIn-card .card-body p {
    color: #6C7275;
    font-weight: 400;

}

.signIn-card .card-body p a {
    color: var(--primary-color);
    font-weight: 600;
    font-style: semi-bold;
}

.signIn-card .card-body form {
    gap: 32px;
}

.signIn-card .card-body form .form-label {
    font-weight: 400;
    color: #161616;
    font-size: var(--text-sm);
    font-style: regular;
    padding-bottom: 10px;
}

.signIn-card .card-body form .form-control {
    background-color: #FAFAFA;
    border: 1px solid #F4F4F4;
    height: 51px;
    width: 456px
}

.signIn-card .card-body form .form-check-label {
    font-weight: 400;
    color: #6C7275;
    font-size: var(--text-sm);
    font-style: regular;
}

.signIn-card .card-body form .form-check-label b {
    color: black;
}

.signIn-card .card-body form .forgot {
    color: var(--primary-color);
    font-weight: 400;
    font-size: var(--text-sm);
    font-style: regular;
}

.signIn-card .card-body form .btn {
    background-color: var(--primary-color);
    height: 59px;
    font-weight: 500;
    font-size: var(--text-medium);
    font-style: medium;
    color: #FAFAFA;
    border-radius: var(--radius-sm);
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signIn-card .card-body form .back {
    color: #161616;
    font-weight: 400;
    font-size: var(--text-sm);
    font-style: regular;
}

.signIn-card .card-body form .back i {
    color: var(--primary-color);
}

.signIn-card .card-body form .vcode {
    display: flex;
    gap: 12px;
}

.signIn-card .card-body form .vcode input {
    Background-color: #FAFAFA;
    border: 1px solid #F4F4F4;
    width: 105px;
    height: 57px;
    border-radius: 8px;

}

.signIn-card .success-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-color-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.signIn-card .success-icon i {
    color: var(--primary-color);
    font-size: 60px;
}

/* tablet */
@media (max-width: 768px) {
    .signIn {
        display: flex;
        flex-direction: column;
    }

    .image-section {
        width: 100%;
        padding: 16px;
        height: 30vh;
    }

    .image-section img {
        /* height: 30%;  */

    }
}

/*mobile*/
/* @media (max-width: ) {
    
} */
/* ===================== NAVBAR ===================== */
.navbar .container-fluid {
    padding: 16px 80px !important;
}



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

.white {
    color: var(--white)
}

.navbar-brand img {
    width: 195px !important;
    height: 48px !important
}

/* Search bar */
.navbar-search {
    position: relative !important;
    flex: 1;
    max-width: 646px;
    min-width: 0;
}

.navbar-search .search-input {
    width: 100%;
    height: 48px;
    padding-right: 50px;
    /* room for button */
}

.navbar-search .search-btn {
    position: absolute !important;
    right: 0;
    top: 0;
    height: 48px;
    z-index: 5;
}

.navbar form button i,
.navbar-search .search-btn i {
    /* color: #fff; */
}

/* swich  */
/* label */
.form-check label {
    padding: 8px;
    color: #fff
}

.custom-switch .form-check-input {

    width: 64px;
    height: 28px;

    border: none;
    border-radius: 100px;

    background-color: var(--switch-off);

    background-image: none;

    position: relative;

}

/* Text */

.custom-switch .form-check-input::before {

    content: "OFF";

    position: absolute;

    left: 10px;

    top: 50%;

    transform: translateY(-50%);

    color: white;

    font-size: 12px;

    font-weight: 600;

}

/* Circle */

.custom-switch .form-check-input::after {

    content: "";

    position: absolute;

    width: 39px;

    height: 24px;

    background: white;

    border-radius: 100px;

    top: 2px;

    left: 4px;

    transition: .3s;

}

/* Checked */

.custom-switch .form-check-input:checked {

    background-color: var(--primary-color);

}

.custom-switch .form-check-input:checked::before {

    content: "Inc";

    left: 5px;

}

.custom-switch .form-check-input:checked::after {

    left: 23px;

}

/* Remove focus glow */

.custom-switch .form-check-input:focus {

    box-shadow: none;

}

/* Icon menu */
.navbar .icon-menu {
    font-size: 24px;
    flex-shrink: 0;
}

.navbar .icon-menu .nav-link {
    padding: 0;
    line-height: 1;
    color: #fff !important;
}

.navbar .icon-menu .nav-link:hover {
    color: var(--primary-color) !important;
}

/* VAT switch spacing inside collapse */
.navbar-switch {
    flex-shrink: 0;
    margin: 0 16px;
}

/* Toggler button */
.navbar-toggler {
    border-color: white;
}

/* ---- Tablet (≤ 992px) ---- */
@media (max-width: 991.98px) {
    .navbar .container-fluid {
        padding: 12px 20px !important;
    }

    /* Stack items vertically when menu opens */
    .navbar-collapse .navbar-search {
        max-width: 100%;
        width: 100%;
        margin: 12px 0 8px;
    }

    .navbar-switch {
        margin: 8px 0;
    }

    .navbar .icon-menu {
        margin: 8px 0 4px;
        justify-content: flex-start;
    }
}

/* ---- Mobile (≤ 576px) ---- */
@media (max-width: 575.98px) {
    .navbar .container-fluid {
        padding: 10px 16px !important;
    }

    .navbar-brand img {
        width: 140px !important;
        height: auto !important;
    }

    .navbar-search .search-input {
        height: 44px;
    }

    .navbar-search .search-btn {
        height: 44px;
    }
}

/* ===================== NAVBAR END ===================== */
/* main menu */
.main-menu {
    padding: 16px 80px;
    border-bottom: 1px solid #E4E7E9;
}

.main-menu ul {
    list-style: none;
}

.main-menu ul li {
    list-style: none;
    font-size:  var(--text-sm);

  
}

.main-menu ul li a {
    list-style: none;
    text-decoration: none;
      color :#686868;

    
    
}
.main-menu ul li .dropdown-menu.show{
    padding:12px 0 ;
    width: 240px;
    /* height:348px; */
    color: #464646;
}
.main-menu ul li a i{
    padding-right:6px;
    font-size: var(--text-xl);
}
.main-menu .dropdown button{
    background-color: var(--primary-color);
    width:154px;
    height:48px;
    border:0
}
@media (max-width: 991.98px) {
    .main-menu {
        padding: 0 20px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 575.98px) {
    .main-menu {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* Allow submenu to overflow the parent dropdown */
/* Allow submenu to overflow the parent dropdown */
.dropdown-menu {
  overflow: visible !important;
}

/* Submenu wrapper */
.dropdown-submenu {
  position: relative;
}

/* Submenu list */
.sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Show submenu */
.dropdown-submenu.show > .sub-menu {
  display: block;
}

/* Submenu links */
.sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #212529;
  text-decoration: none;
  font-size: 0.875rem;
}

.sub-menu li a:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* Arrow */
.submenu-arrow {
  font-size: 12px !important;
  position: absolute;
  right: 10px;
  transition: transform 0.3s;
}

.dropdown-submenu.show .submenu-arrow {
  transform: rotate(90deg);
}

/* Hide Bootstrap default arrow */
.dropdown-toggle::after {
  display: none !important;
}

.arrow {
  margin-left: 8px;
  transition: 0.3s;
}

/* ── MOBILE ONLY ── */
@media (max-width: 767px) {
  .sub-menu {
    position: static;  /* stacks below instead of floating right */
    left: 0;
    box-shadow: none;
    border: none;
    padding-left: 16px; /* indent to show nesting */
    min-width: 100%;
  }
}
/* hero section */

.hero-main,
.promo-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        120deg,
        #071434,
        #24396e
    );

    border-radius:12px;

     min-height:516px; 

}


.hero-content{

    position:relative;

    z-index:3;

    color:white;

    padding:50px;

    max-width:420px;

}


.hero-tag{

    color:#ff7a18;

    font-weight:600;
    font-size:var(--text-sm) ;

}


.hero-content h1{

    font-size: var(--display-lg);

    line-height:1.1;

    font-weight:600;

}


.hero-content p{

    margin-top:20px;

    color:#fff;
    font-size: var(--text-lg);

}


.btn-warning-md{

    background:var(--primary-color);

    border:none;

    color:white;

    padding:16px 32px;
    font-size: var(--text-medium);
     margin-top: 24px;
     border-radius: 8px;

}
.btn-warning-sm{

    background:var(--primary-color);

    border:none;

    color:white;

    padding:14px 24px;
    margin-top: 18px;
   
    font-size: var(--text-sm);
    border-radius: 8px;
  

}


.worker{

    position:absolute;

    bottom:0;

    left:40%;

    height:95%;

    z-index:2;

}


.house{

    position:absolute;

    right:0;

    top:0;

    width:40%;

    height:100%;

    object-fit:cover;

}


.promo-card{

    padding:32px 40px;

    color:white;
    min-height: unset 

}


.promo-card img{

    position:absolute;

    right:0;

    bottom:0;

    height:100%;

}
.promo-card .second-img{
   position: absolute;
    /* top: -16px; */
    right: -64px
}
.promo-card .third-img{
   position: absolute;
     top: 28px;
    right: -11px
}


.promo-card h2{

    margin-top:15px;

    font-size: var(--display-xs);
    font-weight: 600;

}


small{

    color:var(--primary-color);
    font-size: var(--text-sm);
    font-weight: 500;

}
/* ==========================
   1400px and down
========================== */

@media (max-width:1400px){

.hero-content{

    max-width:380px;
}

.worker{

    left:38%;
}

.house{

    width:36%;
}


}



/* ==========================
   1200px and down
========================== */

@media (max-width:1200px){

.hero-main{

    min-height:500px;
}

.hero-content{

    max-width:360px;

    padding:40px;
}

.hero-content h1{

    font-size:
        clamp(
            2.4rem,
            4vw,
            var(--display-lg)
        );
}

.hero-content p{

    font-size:
        clamp(
            .95rem,
            2vw,
            var(--text-lg)
        );
}

.worker{

    left:35%;

    height:88%;
}

.house{

    width:34%;
}


.promo-card h2{

    font-size:
        clamp(
            1.5rem,
            3vw,
            var(--display-xs)
        );
}



}



/* ==========================
   1024 FIX
========================== */

@media (min-width:992px) and (max-width:1199px){

.hero-main{

    min-height:480px;
}

.hero-content{

    max-width:50%;

    padding:35px;
}

.hero-content p{

    max-width:320px;
}

.btn-warning-md{

    position:relative;

    z-index:20;
}

.worker{

    left:auto;

    right:140px;

    height:78%;
}

.house{

    width:32%;
}


.promo-card h2{

    font-size:1.7rem;
}

.promo-card img{

    width:42%;

    height:auto;

    z-index:1;
}

.promo-card .second-img{

    right:-20px;
}

.promo-card .third-img{

    right:0;
}

}
/* =========================
   MOBILE (≤768px)
========================= */

@media (max-width: 768px){

.hero-main{
    text-align: center;
    padding: 24px 0;
}

.hero-content{
    padding: 28px 20px;
    margin: auto;
}

.hero-content h1{
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.2;
}

.hero-content p{
    font-size: var(--text-lg);
}

.worker{
    display: none !important;
}

.house{
    opacity: .08;
}

.btn-warning-md{
    width: 100%;
}

.promo-card{
    min-height: 190px;
    padding: 24px;
}

.promo-card img{
    width: 150px;
    opacity: .25;
}

}

/* =========================
   SMALL MOBILE (≤320px)
========================= */

@media (max-width: 320px){

.hero-content{
    padding: 18px;
}

.hero-content h1{
    font-size: 1.8rem;
}

.hero-content p{
    font-size: .9rem;
}

.btn-warning-md,
.btn-warning-sm{
    width: 100%;
    padding: 12px;
}

.promo-card{
    padding: 18px;
}

}

/* ======================== */ 

.feature{
    border: 1px solid #E4E4E4;
    padding: 16px 0;
    border-radius: 6px;
    background: #fff;
}

.feature .one{
    display: flex;
    align-items: center;
    gap: 28px;
}

.feature .two{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.feature img{
    width: 40px;
    height: 40px;
}

.feature .two h3{
    font-size: var(--text-sm);
    margin: 0;
}

.feature .two p{
    font-size: var(--text-sm);
    margin: 0;
    color: #949494;
}

.feature .line{
    width: 1px;
    height: 56px;
    background: #E4E4E4;
}

/* TABLET */
@media (max-width: 991px){
.feature .line{
    display: none;
}
}

/* MOBILE (IMPORTANT FIX) */
@media (max-width: 768px){

.feature .one{
    justify-content: center;
    padding: 10px 0;
}

.feature .two{
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.feature img{
    width: 36px;
    height: 36px;
}

}
/* products */
.product .single-product{
    /* width:calc((100% - 16px) /3) */
}
.product .header{
    margin-top: 64px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.product .title h1{
    font-size: var(--display-xs);
    font-weight: 400;
    color:#161616
}
.product .title small{
    font-size: var(--text-medium);
    color: #686868;
    font-weight: 400;
}
.product .header .taps ul li{
    padding: 0 8px;
}
.product .header .taps ul li a{
    /* padding:8px; */
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color:#5F6C72;
    padding: 5px 0;
    text-decoration: none;
}
.product .header .taps ul li .active{
    color:#191C1F !important;
    border-bottom: 2px solid var(--primary-color) !important;
}
.showAll{
    /* width:134px;
    height:48px; */
    border-radius: 8px;
    border:1px solid var(--primary-color);
    background-color:#fff;
    padding:14px 24px;
    color: var(--primary-color);
    

}
.product .single-product{
    border:1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    height:460px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
    padding:16px !important;
    width:100%;
    max-width:100%;
    overflow:hidden;
}
.product .single-product:hover{
    border:1px solid var(--primary-color)
}

.product .single-product .product-img{
    width:100%;
    max-width:100%;
    height:228px;
    overflow:hidden;
    position: relative;
}

.product .single-product .product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.product .single-product .product-img .badge{
    position:absolute;
    padding:5px 10px 10px ;
    background-color: var(--primary-color);
    top:16px;
    width:55px;
    height:30px;


}
.product .single-product .product-img .badge span{
    color:#fff;
    font-size: var(--text-sm);
}
.product .single-product .product-img .badge img{
    position: relative;
        top: 3px;
    right: -14px;
}
.product .single-product .details h2{
    font-size: var(--text-medium);
    font-weight: 500;
    color:#161616; 
    word-wrap: break-word;
  overflow-wrap: break-word;
}
 .star{
    color:#FFC62A;
    width:13px;
    height:12px;

}
.product .single-product .details .rating span{
    color:#949494;
    font-size: var(--text-sm);
}
.product .single-product .details .price{
    font-size: var(--text-lg);
    color: #161616;
    font-weight: 500;
}
.product .single-product .action{
      display:flex;
    gap:10px;

    width:100%;
}
.product .single-product .action .add{
    border: 1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    background-color:#fff;
    padding:16px 51px;
     color:#161616;
    font-size: var(--text-medium);
    font-weight: 500;
    flex:1;

    min-width:0;

}
.single-product:hover .action .add{
    background-color: var(--primary-color);
}
.product .single-product .action .love{
     border: 1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    background-color:#fff;
    color:#949494;
    padding:20px 16px;
    width:60px;

    flex-shrink:0;
}
@media (max-width: 576px) {
    .container-fluid {
        padding: 20px 12px;
    }

    .product .single-product {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .product .single-product .product-img {
        width: 100%;
    }

}
@media (max-width: 768px) {
    .container-fluid {
        padding: 20px 12px;
    }
}
@media (max-width: 1024px) {
    .container-fluid {
        padding: 16px ;
    }
}

/* home categories */
.cat .header .title h1{
    font-size: var(--display-xs);
    font-weight: 400;
    vertical-align: middle;
}
.cat .header .title p{
    font-size: var(--text-medium);
    color:#686868
}
.cat .catlist{
    padding-top: 40px;
}
.cat .single-cat{
    display: flex;
    flex-direction: column;
    gap:16px;
    justify-content: center;
    align-items: center;
}
.cat .single-cat .cat-img{
    width:135px;
    height:135px ;
    border-radius:66%;
    background-color:#F4F4F4;
    overflow: hidden;
}
.cat .single-cat .cat-img img {
    width:100%;
    height:100%;
    object-fit: contain;
}
.cat .single-cat h1{
    font-size: var(--text-lg);
    font-weight: 500;
    color:#333333
}
/* advertising section with slider */

.adv .carousel-item {
 background-color: #EFF1F5;
 border-radius: 4px;
 padding-top:50px;
 padding-left: 72px;
 padding-right: 60px;
 padding-bottom: 50px;
}
.adv .carousel-item .caption{
    padding:30px;
    width:629px
}
.adv .carousel-item .caption h1{
    font-size: var(--display-lg);
    font-weight: 600;
    margin-bottom: 22px;
    color: #161616;
    

}
.adv .carousel-item .caption p{
    font-size: var(--display-xs);
    font-weight: 400;
      color: #161616;
       margin-bottom: 22px;

}
.adv .carousel-item .caption a{
    width:fit-content
}
.adv .carousel-item .caption .tag{
    padding:6px 12px;
    background-color: #6F82A6;
    color:#fff;
    width:fit-content;
    margin-bottom: 12px;
}
.adv .carousel-item .slider-img{
    width:303px;
    height:324px
}
.adv .carousel-item .slider-img img{
    width: 100%;
    height: 100%;
}
.carousel-indicators button{
    background-color: #ADB7BC !important;
    width:10px !important;
    height:10px !important; 
    border-radius: 50%;
}
.carousel-indicators .active{
    background-color: var(--primary-color) !important;
} 
/* review */
.review .slide{
    padding:32px 0 ;
}

.comment{
    border: 1px solid #E4E4E4;
}
.review .comment .user .user-img{
    width:48px;
    height: 48px;
    
}
.review .comment .user .user-img img{
    width:100%;
    height: 100%;
    border-radius: 50%;
}
.review .comment p{
    color:#686868;
    font-size: var(--text-medium);
    font-weight: 400;
}
.review .user .data h1{
    font-size: var(--text-lg);
    color: #161616;
}
.review .user .data span{
    font-size: var(--text-sm);
    color:#686868
}


.controls{
    display:flex;
    gap:10px;
}

.controls button{
    position:static !important;
    width:46px;
    height:46px;
    border:1px solid #EEEEEE;
    border-radius:30px;
    background:#fff;
    opacity:1;
    padding:8px

}
.controls .carousel-control-next,.carousel-control-prev i{
    color: #666666;
    font-size: var(--text-sm);
}
footer{
background-color: #0F172A;
color:#fff;
font-weight: 300;

}
footer .about p{
    width:500px;
    font-size: var(--text-medium);
}
footer .title{
    font-size: var(--text-lg);
    font-weight: 400;
    padding-bottom: 8px;
}
footer ul li{
    list-style: none;
}
footer  a {
    text-decoration: none;
    color:#fff;
    font-size: var(--text-medium);

}
footer  i{
    font-size: var(--text-sm);
    font-weight: 100;
}
footer .social a{
    width:34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
footer a:hover{
    color: var(--primary-color);
}
footer .second-footer{
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:16px 0;
    gap:24px;
    flex-wrap: wrap;
}

.second-footer p{
    color:#161616;
    font-size: var(--text-sm);
    margin: 0;
    padding: 0;
}
.second-footer img{
    display:block; /* removes inline-image offset */
    height:24px;   /* optional */
}
.second-footer .d-flex{
    display:flex;
    align-items:center; /* center images */
    gap:8px;
}
/* product pages */
.product .sort label{
   color: #A5A5A5;
   font-size: 14px;
}
.product .sort .dropdown .btn{
    background-color: #fff;
    color:#161616;
    font-size: 14px;

}
.product .display-filter{
    padding:22px 16px;
    border:1px solid #EEEEEE
}
.product .form-select{
    padding-left:0
}
.product aside{
    /* border: 1px solid #F4F4F4;
    padding: 16px; */
}
.filter-sidebar {
    /* width: 280px; */
    /* background: #fff;
    border: 1px solid #eee;
    /* padding: 16px; */
}

.filter-section {
    margin-bottom: 20px;
}

.filter-header {
    width: 100%;
    background: none;
    border: none;
    font-size: var(--text-medium);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 16px;
    color: #161616;
}
.filter-header .fa-angle-up{
    color: var(--primary-color);
}
.filter-header .fa-angle-down{
    color:#949494
}

.filter-list {
    list-style: none;
    padding: 0;
}
.filter-list .form-check{
    margin: 0;
}
.filter-list li{
      cursor: pointer;
    color: #686868;
    font-size: var(--text-sm);
    padding: 0;
    list-style: none;
}
.filter-list .show-more{
    color: var(--primary-color);
}

.filter-list li .form-check-label{
    cursor: pointer;
    color: #686868;
    font-size: var(--text-sm);
    padding: 0;
}
.filter-list .form-check-input{
    width:18px;
    height:18px;
    border:1px solid #F4F4F4;
    border-radius: 10px;
}
.filter-list .form-check-input:checked {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.filter-list .form-check-input:focus{
    box-shadow: none;
}
.filter-list li{
    padding:8px 0
}
.filter-list li:hover {
    color: var(--primary-color);
}
.filter-sidebar .accordion{
    border:0;
}
.filter-sidebar .accordion-button:not(.collapsed) {
  color:var(--primary-color);
  background-color: #fff;
  box-shadow: none;
  
}
.filter-sidebar .accordion-button{
    color: #161616;
    font-size: var(--text-medium);
    border-bottom:1px solid #F4F4F4;
}
.filter-list .accordion-body{
}

 .accordion-button:not(.collapsed)::after {
  /* background-image: url(assets/images/icone/arrow_down.png); */

}  
.reset-filter{
    background-color: var(--primary-color);
    color: #fff;
    padding:10px;
    margin:17px;
    width:80%;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-sidebar {
        width: 100%;
        margin-bottom: 24px;
    }

    .product .display-filter,
    .product .row {
        margin-left: 0;
        margin-right: 0;
    }

    .product .single-product {
        width: 100%;
        max-width: 100%;
    }


    .product .single-product .action .add {
        padding: 16px 20px;
    }
}
/* single product style */


/* LEFT */

  #product-slider {
  width: 100%;
   display: flex;
  flex-direction: row;
  gap: 16px;
align-items: stretch; /* 👈 key line */
height: 651px;

}
#product-slider .carousel-inner,
#product-slider .carousel-indicators {
  height: 100%;
}

/* MAIN IMAGE AREA */
#product-slider .carousel-inner {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
   flex: 1;
  min-width: 0
}
#product-slider .carousel-inner .carousel-item{
    height: 100%;
    width: 100%;
    
}
#product-slider .carousel-inner .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); 
}

/* THUMBNAILS */
#product-slider .carousel-indicators {
  position: static;
  margin: 0;
   flex-direction: column;
  justify-content: flex-start;
    flex: 0 0 140px; 
      flex-wrap: nowrap; /* keeps column clean on desktop */

}

/* thumbnail button */
#product-slider .carousel-indicators button {

  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  opacity: 0.5;
  width:135px !important;
height:123px !important;

border:1px solid #EEEEEE;
background:none;

cursor:pointer;

}

/* active thumbnail */
#product-slider .carousel-indicators .active {
  border: 2px solid #ff6b00;
  opacity: 1;
}

/* thumbnail image */
#product-slider .carousel-indicators button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

/* ===================== */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */
@media (max-width: 1024px) {
  #product-slider .carousel-indicators button {
    width: 75px!important;
    height: 75px !important;
  }
   #product-slider {
    height: clamp(420px, 55vh, 600px);
  }

  #product-slider .carousel-indicators {
    flex: 0 0 100px; /* keep stable column width */
  }
}

@media (max-width: 991px) {
  #product-slider {
    flex-direction: column;
  }
    

  #product-slider .carousel-indicators {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
        order: 2;           /* 👈 pushes to bottom */

  }
  #product-slider .carousel-inner {
    order: 1;           /* main image stays on top */
    height: auto;
  }

  #product-slider .carousel-indicators button {
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 576px) {
  #product-slider .carousel-indicators button {
    width: 60px !important;
    height: 60px !important;
  }
}

/* RIGHT */

.singl-product-details .product-title {
    font-size: var(--display-xs);
    font-weight: 600;
    color:#161616
}
.singl-product-details .action span{
    font-size:var(--text-sm);
    color:#686868
}
.singl-product-details .option .accordion-item header button{
 font-size: var(--text-medium);
 font-weight: 400;
 color:#161616;
 padding:20px 16px !important;

}
.singl-product-details .options{
     border: 1px solid #E4E4E4;
    border-radius: var(--radius-sm);
}
.singl-product-details .accordion-button:not(.collapsed){
    box-shadow: none;
    background-color: #fff;
    color: #161616
}
.singl-product-details .options .accordion-body .height{
    width:97px;
    background-color:#F4F4F4;
    border:1px solid #949494;
    border-radius: 2px;
    color:#161616;
    font-size: var(--text-medium);
    padding:14px 24px

}
.singl-product-details .options .accordion-body .selected{
    background-color: var(--primary-color);
}

.singl-product-details .options .accordion-button:not(.collapsed)::after {
    background-image: url("../images/icone/expand.png");
    

}
.singl-product-details .options .accordion-button::after{
  background-image: url("../images/icone/Collapses\ &\ expand_1.png");

}
.singl-product-details .price h1{
    color: #161616;
    font-size: var(--display-xs);

}
.quant{
    font-size: var(--text-medium);
    font-weight: 400;
    color: #161616;
    display:flex;
    align-items: center;
    justify-content: center;
}
.quant span{
    border:1px solid #F4F4F4;
    border-radius: 4px;
    padding:16px;
    text-align: center;
    font-size: var(--text-medium);
    color:#161616
}
 #number{
    width:65px
}
.plus,
.minus {
    cursor: pointer;
    user-select: none;
}
.singl-product-details .user-action button{
    border:1px solid var(--primary-color);
    padding: 16px;
    font-size: var(--text-medium);
    font-weight: 500;
    color: var(--primary-color);
    flex:1;
    border-radius: var(--radius-sm);
}
.singl-product-details .user-action .purchase {
    color:#fff; 
    background-color: var(--primary-color);

}
/* single product tabs */
 .nav-tabs{
    border-bottom: 2px solid var(--primary-color);
}
 .nav-tabs .nav-link{
    color:#686868 ;
    padding:16px;
    font-size: var(--text-medium);
    border-radius: 4px;
    border:0

}
.nav-tabs .nav-link.active {
  background-color: var(--primary-color) !important;
  color:#fff
}
.single-product .product-desc .tab-content{
 border:1px solid #EEEEEE;
 border-top: 0;
}
.single-product .product-desc .tab-content {
    padding:16px
}
.single-product .product-desc .tab-content #desc{
 color:#686868;
 font-size: var(--text-medium);
 font-weight: 400;
}
.single-product .product-desc .tab-content #desc .d-flex img{
      flex: 0 0 calc((100% - 24px) / 2);
    height: 226px;
    object-fit: cover;
}
.single-product .product-desc .tab-content h1{
    color:#2F2F2F;
    font-size:var(--display-sm)
}
.single-product .product-desc .tab-content #spec .feature{
    gap:20px; 
    align-items: center;
    border:0
}
.single-product .product-desc .tab-content #spec .feature div{
    border:1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    padding:16px;
    width: calc( (100% - 20px) /2 );

}
.single-product .product-desc .tab-content #spec .feature div img{
    width:16px;
    height: 16px;
}
.single-product .product-desc .tab-content #spec .table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #F8F8F8 !important;
}
.single-product .product-desc .tab-content #spec .table>:not(caption)>*>*{
    border:0;
}
.single-product .product-desc .tab-content #spec .table{
    border:1px solid #EEEEEE;
  
}
.single-product .product-desc .tab-content #spec .table  tbody tr td :first-child{
  color:#686868
}
.single-product .product-desc .tab-content #spec .spec-table td {
    padding: 16px;
    vertical-align: middle;
    font-size: var(--text-medium);
    color:#161616;
    font-weight: 400;
}

/* Style first column */
.single-product .product-desc .tab-content #spec .spec-table td:first-child {
    width: 345px;          /* adjust width */
    color: #686868;           /* text color */
      
}
.single-product .product-desc .tab-content #review .add-comment-card{
    border:1px solid #E4E4E4;
    width:308px;
    padding:16px;
    border-radius: var(--radius-sm);

}
.single-product .product-desc .tab-content #review .add-comment-card .review-numbers{
background-color: #FAFAFA;
padding:16px;
 border-radius: var(--radius-sm);
}
.single-product .product-desc .tab-content #review .review-numbers .star{
    height:unset;
    width:unset
}
.single-product .product-desc .tab-content #review .add-comment-card .comment-form label{
 font-size:var(--text-sm);
 color: #161616;
 font-weight: 400;
}
.single-product .product-desc .tab-content #review .add-comment-card .comment-form textarea{
    height:114px;
    width:100%;
    background-color: #F4F4F4;
    border:1px solid #F4F4F4;
     border-radius: var(--radius-sm);
}
.single-product .product-desc .tab-content #review .comment-form textarea::placeholder{
    color: #949494;
    font-size: var(--text-sm);
    padding:14px 16px;
  
}
.single-product .product-desc .tab-content #review .reviews {
    flex:1
}
.single-product .product-desc .tab-content #review .reviews .user-comments-header{
    border:1px solid #E4E4E4;
    
}
.single-product .product-desc .tab-content #review .reviews .user-comments-header h3{
    font-size: var(--text-medium);
    color:#161616
}@media (max-width: 767.98px){

.single-product .product-desc .tab-content #review .reviews .user-comments-header{
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.single-product .product-desc .tab-content #review .reviews .user-comments-header > div{
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.single-product .product-desc .tab-content #review .reviews .user-comments-header select{
    width: auto;
    max-width: 100%;
}

}

.single-product .product-desc .tab-content #review .reviews .user-comments-header label, .single-product .product-desc .tab-content #review .reviews .user-comments-header select{
    color:#686868;
    font-size: var(--text-sm);
}
.single-product .product-desc .tab-content #review .reviews .single-review{
    padding:24px 39px;
    padding-bottom: 0;
    border-bottom:1px solid #E4E4E4;
}

@media (max-width: 991.98px){
    .single-product .product-desc .tab-content #review .reviews .single-review{
        padding: 24px 0;
    }
}
.single-product .product-desc .tab-content #review .reviews .single-review .user-img{
    width:50px;
    height: 50px;
     flex-shrink: 0; 
   
}
.single-product .product-desc .tab-content #review .reviews .single-review .user-img img{
    width:100%;
    height: 100%;
    object-fit: cover;
     border-radius: 50%;

}
.single-product .product-desc .tab-content #review .reviews .single-review .user-neme{
    font-size: var(--text-medium);
    color:#161616;

}
.single-product .product-desc .tab-content #review .reviews .single-review .date, .single-product .product-desc .tab-content #review .reviews .single-review p{
    font-size: var(--text-sm);
    color:#686868;
}
@media (max-width: 767.98px){

.single-product .product-desc .tab-content #review .reviews .single-review > div:last-child{
    display: flex;
    flex-direction: column;
}

.single-product .product-desc .tab-content #review .reviews .single-review .date{
    align-self: flex-start;
}

.single-product .product-desc .tab-content #review .reviews .single-review p{
    margin-top: 8px;
}

}
.wish-list .product{
    border:1px solid #E4E4E4;
    padding:16px;
    border-radius: var(--radius-sm);
}
.wish-list .product .product-img{
    width:95px;
    height:80px;
    border:1px solid #F4F4F4;
    border-radius: var(--radius-sm);
}
.wish-list .product .product-img img{
    width:100%;
    height:100%
}
.wish-list .product .product-name{
    font-size: var(--text-medium);
    color:#464646
}
.wish-list .product .price{
font-size: var(--text-lg);
font-weight: 500;
color:#464646
}
.wish-list .product .action span{
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #F4F4F4;

    /* remove padding */
    padding: 0;
}

.wish-list .product .action span img{
    width: 16px;   /* adjust size */
    height: 16px;

    object-fit: contain;
}
@media (max-width: 400px){

.wish-list .product .action{
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
}
.cart .summery{
    border:1px solid #EEEEEE;
    border-radius: 4px;
    color:#686868;
    font-weight: 400;
    font-size: var(--text-medium);
}
.cart .summery .title{
    font-size: var(--text-lg);
    color: #464646;
}
.cart .summery .discound label{
    font-size: 14px;
    color:#464646
}
.cart .summery .discound input{
    border:1px solid #EEEEEE;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border-top-right-radius: 4px;
    width:58%
}
.cart .summery .discound button{
    background-color: #fff;
    border:1px solid var(--primary-color);
    padding:10px 16px;
    border-radius: var(--radius-sm);
     border-top-right-radius: 4px;

}
.cart .summery hr{
  border:1px solid #EEEEEE
}
.cart .summery .total{
color:#464646
}
.cart .summery button{
    background-color: var(--primary-color);
}
.cart-login-form .header h1{
    font-size: var(--display-md);
    color:#161616
}

.cart-login-form{
    border:1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    width:calc((100% - 16px)/2)
}
.cart-login-form form {
    padding-top:40px
}
.cart-login-form form label{
    font-size: var(--text-sm);
    color:#362E2E
}
.cart-login-form form input{
    padding:14px 12px 17px;
    border:1px solid #F4F4F4;
    background-color: #FAFAFA;
}
.cart-login-form form .forgot{
    flex-direction: row-reverse;
}
.gest-form{
    background-color: #FAFAFA;
}
.gest-form form{
    gap:40px
}
.gest-form form button{
    background-color: #0F172A;
}
@media (max-width: 768px) {

    /* Parent container */
    .d-flex.gap-3.align-items-start {
        flex-direction: column;
    }

    .cart-login-form {
        width: 100%;
    }

    .cart-login-form .header h1 {
        font-size: 28px; /* adjust if needed */
    }

    .cart-login-form form {
        padding-top: 24px;
    }

    .cart-login-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .cart-login-form {
        padding: 16px !important;
    }

    .cart-login-form .header h1 {
        font-size: 22px;
    }

    .cart-login-form .header p {
        font-size: 14px;
    }

    .cart-login-form form input {
        padding: 12px;
    }
}
.step span{
    width:32px;
    height: 32px;
    border-radius: 50%;
    border:2px solid #E4E4E4;
    color: #949494;
    text-align: center;
}
.step .active{
    border-color: var(--primary-color);
    box-shadow: 0 0 8px #F97316;
}
.step h3{
    font-size: var(--text-sm);
    font-weight: 500;
}
.step .line{
    width:45px;
    height: 0px;
    border:0.5px solid #8E8E93
}
.bill {
    border:1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    padding:24px 16px
}
.bill .title{
 font-size: var(--text-lg);
 color:#2F2F2F;
 font-weight:400
}
.bill form label{
    color:#362E2E;
    font-size:var(--text-sm);
    font-weight: 400;
}
.bill form input{
    background-color: #FAFAFA;
    border:1px solid #F4F4F4;
    border-radius: var(--radius-sm);
    padding:14px 12px
}
.bill form .addressLink{
    color:var(--primary-color);
    text-decoration: underline;
    font-size: var(--text-sm);
    font-weight: 400;
    cursor: pointer;
}
.bill form .byingAs button{
 padding : 4px 35px;
 border:1px solid #E4E4E4;
 border-radius: var(--radius-sm);
}

.bill .form-check-input {
  border-color: #D6D6D6;
padding: 0;
}

/* checked background and border */
.bill .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* focus ring color */
.bill .form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}
flatpickr-day.selected,
  .flatpickr-day.selected:hover {
    background-color: #F97316;
    border-color: #F97316;
  }


  .flatpickr-months .flatpickr-month,
.flatpickr-day {
    color: #F97316;
  }


  .flatpickr-current-month .flatpickr-monthDropdown-months,
  .flatpickr-current-month input.cur-year {
    color: var(--primary-color);
  }

  span.flatpickr-weekday {
    color: #949494;
    font-size: var(--text-sm);
    font-width: 400;
  }
  /* selected day circle */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
  .bill .form-control[readonly]{
    background-color: #FAFAFA;
  }
  .bill .calender {
  cursor: pointer;
  background-color: #FAFAFA;
  border-color: #F4F4F4;
}
.bill .calender-icon{
 background-color: #FAFAFA;
 border:0
}
.step .done{
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 0;
    border: 1px solid var(--primary-color);
}
.bill .wrapper{
    border: 1px solid #E4E4E4;
    background-color: #FAFAFA;
    padding:14px 16px
}

.bill .form-check label{
    padding: 0;
    font-size: var(--text-medium);
    color:#141718
}
.complete {
    border:1px solid #E4E4E4;
    border-radius: var(--radius-sm);
    padding-top:80px;
    text-align: center;
    width:738px

}
.complete .order-img{
    gap:40px
}
.complete .order-img  div{
    width:80px;
    height:96px;
    background-color: #F3F5F7;
}
.complete .order-img  div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.complete .order-img  div span{
    background-color: var(--primary-color);
    width:32px;
    height: 32px;
    border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.complete .order-details {
  max-width: 600px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
}

.complete .order-details .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}



.complete .order-details .info-label {
  color: #6C7275;
  font-size: var(--text-sm);
}

.complete .order-details .info-value {
  font-weight: 600;
  font-size: var(--text-sm);
  color: #161616;
}



.complete .order-details .purchase-btn:hover {
  background-color: #e06610;
  color: #fff;
}

.user-dropdown{
    border-radius: 16px;
    border-top-right-radius: 0;
    padding:16px;

}
.user-dropdown li{
    border-bottom: 1px solid #E4E4E4;
    padding:16px 0px;
    font-size: var(--text-sm);
    color:#161616
}
.user-dropdown .logout a {
    color:#F04438;
    text-decoration: none;
}
.account{
    border:1px solid #E4E4E4;
    padding:24px 16px
}
.empty{
    padding-top: 92px;
    padding-bottom: 92px;
}
.empty h1{
    font-size: var(--display-xs);
    color:#464646
}
.empty p{
    color:#949494;
    font-size: var(--text-medium);
}
#DashboardTabContent {

}
#DashboardTabContent .orderTable tr{
    border-color: #E4E4E4;
   
}
#DashboardTabContent .orderTable thead{
    font-size: var(--text-sm);
    color:#949494;
    padding-bottom: 8px;
    font-weight: 400;
}
#DashboardTabContent .orderTable tr td{
 padding:24px 0px !important;
 font-size: var(--text-sm);
 color:#161616;
font-weight: 400;
}
#DashboardTabContent .table>:not(:last-child)>:last-child>*{
    border-bottom-color:#E4E4E4
}
.nav-tabs .nav-link{
    width:165px;
    text-align: center;
}
#request select ,#request option {
    background-color: #FAFAFA;
    border: 1px solid #F4F4F4;
    border-radius: var(--radius-sm);
    padding: 14px 12px;
}
.upload-area {
  border: 1px dashed var(--primary-color);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
}

.upload-area:hover {
  background-color: rgba(249, 115, 22, 0.05);
}

.upload-preview {
  width: 64px;
  height: 64px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.upload-icon {
  font-size: 24px;
  color: #aaa;
}

.upload-text {
  font-size: var(--text-sm);
  color: #949494;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 10px;
  color: #949494;
}
#request .title{
    color:#2F2F2F;
    font-size: var(--text-lg);
}

/* ===================== BuildMart Odoo/Figma bridge ===================== */
:root {
    --primary-color: var(--buildmart-primary, #F97316);
    --bg-color-gray: var(--buildmart-bg, #FAFAFA);
}
body {
    background: #fff;
    color: var(--buildmart-text, #161616);
}
a { text-decoration: none; }
#wrapwrap { overflow-x: hidden; }
.buildmart-layout-header { width: 100%; }
.buildmart-layout-header .navbar, .buildmart-layout-header .main-menu-section { width: 100%; }
.buildmart-layout-header .dropdown-menu { z-index: 1050; }
.buildmart-cart-link, .buildmart-wishlist-link, .buildmart-user-link { position: relative; }
.buildmart-count-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}
.buildmart-figma-page .breadcrumb { margin: 0; }
.buildmart-figma-page .btn-warning-md,
.buildmart-figma-page .btn-warning-sm,
.buildmart-figma-page .purchase,
.buildmart-figma-page .add,
.buildmart-figma-page .checkout-btn,
.buildmart-figma-page button[type="submit"] {
    transition: .2s ease;
}
.buildmart-figma-page .btn-warning-md:hover,
.buildmart-figma-page .btn-warning-sm:hover,
.buildmart-figma-page .purchase:hover,
.buildmart-figma-page .add:hover,
.buildmart-figma-page .checkout-btn:hover,
.buildmart-figma-page button[type="submit"]:hover {
    filter: brightness(.94);
}
/* Make Odoo native inputs follow Figma where pages are native */
.oe_website_sale input.form-control,
.oe_website_sale select.form-select,
.oe_website_sale textarea.form-control,
.portal input.form-control,
.portal select.form-select,
.portal textarea.form-control,
.o_portal input.form-control,
.o_portal select.form-select,
.o_portal textarea.form-control {
    background-color: #FAFAFA;
    border: 1px solid #F4F4F4;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}
.oe_website_sale .btn-primary,
.oe_website_sale .btn-secondary,
.o_portal .btn-primary,
.o_portal .btn-secondary,
.oe_login_form .btn-primary,
.oe_signup_form .btn-primary,
.oe_reset_password_form .btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: var(--buildmart-button-radius, 8px) !important;
}
.oe_website_sale .card,
.o_portal .card,
.oe_login_form,
.oe_signup_form,
.oe_reset_password_form {
    border: 1px solid #E4E4E4 !important;
    border-radius: var(--buildmart-card-radius, 16px) !important;
}
/* Native Odoo shop receives BuildMart card language */
.oe_website_sale .oe_product_cart,
.oe_website_sale .o_wsale_product_grid_wrapper,
.oe_website_sale .o_wsale_product_information {
    border-radius: 4px;
}
.oe_website_sale .oe_product_cart {
    border: 1px solid #E4E4E4 !important;
    transition: .2s ease;
}
.oe_website_sale .oe_product_cart:hover { border-color: var(--primary-color) !important; }
.oe_website_sale .o_wsale_product_btn .btn,
.oe_website_sale .o_add_wishlist,
.oe_website_sale .a-submit {
    border-radius: 4px !important;
}
/* Keep generated Figma pages clean from Odoo editor empty spacing */
.buildmart-figma-page .oe_structure:empty { display: none; }
/* Product images safety */
.product .single-product .product-img img,
.wish-list .product .product-img img,
#product-slider img { object-fit: contain; }
/* Fix duplicate responsive differences and make Figma layout stronger */
@media (max-width: 991.98px) {
    .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
    .navbar .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
    .main-menu { padding-left: 24px !important; padding-right: 24px !important; }
    .hero-main, .promo-card { min-height: auto; }
}
@media (max-width: 575.98px) {
    .container-fluid { padding: 18px 16px !important; }
    .navbar-brand img { width: 155px !important; height: auto !important; }
    .hero-content h1 { font-size: 34px !important; line-height: 1.05 !important; }
    .hero-main { min-height: 420px; }
    .hero-main .worker { max-height: 270px; }
    .product .header { flex-direction: column; align-items: flex-start !important; gap: 16px; }
    .complete { width: 100% !important; }
    footer .second-footer { flex-direction: column; gap: 16px; text-align: center; }
}

/* BuildMart auth/linkage patch v106 */
@import url('/buildmart_them/static/src/css/buildmart_auth_exact.css?v=106');
