@import url(variables.css);

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


html{
    scroll-behavior: smooth;
    scroll-padding-top: 300px;
}

body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--header-family);
}

main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sect-foot{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-margin{
    margin-top: 100px;
}

p{
    font-family: var(--common-family);
}
.flex-disp-col{
    display: flex;
    flex-direction: column;
}
.flex-disp-row{
    display: flex;
    align-items: center;
}

.dark{
    background-color: #181818;
    color: #fff;
}

.navigation{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
    /* box-shadow: 2px 2px 20px rgba(0,0,0,0.1); */
}

.sub-nav{
    width: 100%;
    background-color: #ffffff;
    padding: 15px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sub-nav nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sub-nav nav ul {
    display: flex;             
    gap: 1rem;                     
    list-style: none;         
    padding: 0;
    margin: 0;
    overflow-x: auto;           
    white-space: nowrap;           
    -webkit-overflow-scrolling: touch; 
}

.sub-nav nav ul li {
    flex: 0 0 auto;                 /* Prevent shrinking */
}

.sub-nav {
    padding: 0.5rem 0;
}


.sub-nav ul a{
    color: var(--text);
    font-size: 14px;
    padding: 5px 0;
    height: 30px;
    transition: all .2s ease-in-out;
}

.sub-nav ul a:hover{
    border-bottom: 1px solid #000;
}


.navigation .logo{
    max-width: 30%;
}

.navigation .logo img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.navigation a{
    text-decoration: none;
    color: var(--text);
    font-family: var(--common-family);
    display: flex;
    align-items: center;
    gap: 5px;
}

.navigation nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.navigation nav ul li{
    position: relative;
}

.tree-nav{
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 5px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
    padding: 10px;
}

.tree-nav a{
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}

.tree-nav a:hover{
    background-color: var(--pri-fade);
}

.tree-nav-link:hover .tree-nav{
    display: flex;
}

.nav-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icons a, .nav-icons i{
    font-size: 25px;
    color: var(--text);
    cursor: pointer;
    position: relative;
}

.cart-icon-cont{
    position: relative;
}

.cart-icon-cont .cart-count{
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    color: #fff;
}


.search-pullup{
    position: fixed;
    right: 0;
    top: 5%;
    max-width: 100%;
    width: 400px;
    padding: 20px;
    background-color: #fff;
    z-index: 3;
    transform: translateX(100%);
    transition: all .2s ease-in-out;
}

.search-pullup .fa-xmark{
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 20px;
    cursor: pointer;
}

.search-pullup.active{
    transform: translateX(0);
}

.search-pullup form{
    width: 100%;
    display: flex;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 5px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    gap: 5px;
}

.search-pullup form input{
    padding: 10px;
    border: none;
}

.search-pullup form input:focus{
    outline: none;
}

.search-pullup form button{
    padding: 10px;
    cursor: pointer;
    background-color: var(--primary);
    border: none;
    border-radius: 3px;
    font-family: var(--common-family);
    color: #fff;
}

.navigation .menu-toggle{
    display: none;
    font-size: 25px;
}

.whatsapp-contact{
    position: fixed;
    right: 5%;
    bottom: 5%;
    z-index: 100;
}

.whatsapp-contact img{
    width: 70px;
    height: 70px;
    filter: drop-shadow(4px 4px 25px rgb(0, 255, 128));
}

.mobile-menu{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    top: 80px;
    z-index: 3;
    background-color: #ffffffc0;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 20px;
    transform: translateX(-100%);
    transition: all .4s ease-in-out;
}

.mobile-menu.active{
    transform: translateX(0);
}

.mobile-menu ul{
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu ul .mobile-tree-navs{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 40px;
    overflow-y: hidden;
    transition: all .3s ease-in-out;
}

.mobile-tree-view{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.mobile-menu ul .mobile-tree-navs.extend{
    height: 200px;
}

.mobile-menu ul li{
    padding: 10px;
    color: var(--text);
    font-family: var(--common-family);
}

.mobile-menu ul li a{
    text-decoration: none;
    color: var(--text);
    font-family: var(--common-family);
}

.mobile-menu ul li span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/*products*/

.product-sections-home{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 0;
}

.product-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-card.medium, .product-card.large{
    max-width: 45%;
    font-family: var(--common-family);
    border-radius: 3px;
}

.product-card{
    position: relative;
}

.product-card .out-of-stock-marker{
    position: absolute;
    left: 2%;
    top: 2%;
    z-index: 3;
    background-color: var(--primary);
    max-width: 90%;
    width: 150px;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    border-radius: 20px;
}

.product-card.list-mode{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.product-card.list-mode a{
    width: 50%;
    padding: 10px;
}

.product-card.list-mode .prod-card-acts{
    flex-direction: column;
}
.product-card h4{
    white-space: nowrap;       
    overflow: hidden;            
    text-overflow: ellipsis;
}

.product-card:hover{
    box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.1);
}

.product-card.large, .product-card.medium{
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.product-card.large{
    max-width: 40%;
    width: 250px;
}

.product-card.medium{
    width: 200px;
}

.product-card a, .product-card a .prices, .product-card .stock-count{
    display: flex;
    flex-direction: column;
}

.product-card a{
    text-decoration: none;
    color: var(--text);
    font-family: var(--common-family);
    gap: 10px;
    width: 100%;
}

.product-card a img{
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-card a .prices{
    width: 100%;
    gap: 5px;
    font-size: 12px;
}


.product-card .prod-card-acts{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

.product-card .prod-card-acts button{
    width: 45%;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    transition: all .3s ease;
    font-size: 15px;
}

.product-card .prod-card-acts button i{
    font-size: 20px;
}


.product-card.medium .prod-card-acts button:nth-child(1):hover{
    background-color: var(--accent);
    color: #fff;
}

.product-card.medium .prod-card-acts button:nth-child(2):hover{
    background-color: var(--success);
    color: #fff;
}

.product-card.large .prod-card-acts button:nth-child(1):hover{
    background-color: var(--accent);
    color: #fff;
}

.product-card.large .prod-card-acts button:nth-child(2):hover{
    background-color: var(--success);
    color: #fff;
}

.product-card .stock-count{
    width: 100%;
    gap: 5px;
    font-size: 12px;
}



.stock-count .range-full{
    width: 95%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 3px;
    background-color: #fcfcfc;
    border-radius: 3px;
}

.range-full .range-level{
    width: 40%;
    height: 100%;
    background-color: var(--accent);
}

.wcu{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 40px 10px;
}

.wcu-statements{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wcu-statements div{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    border-radius: 5px;
    background-color: var(--accent);
    box-shadow: 2px 2px 7px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-statements div::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  opacity: 0.2;
  transition: all 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}

.wcu-statements div:hover::before {
  left: 0;
}

.wcu-statements div:hover {
  transform: translateY(-5px);
  box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.15);
}

.wcu-statements div:hover i{
    animation: rotateAnim .3s infinite ease-in-out alternate;
}

@keyframes rotateAnim{
    0%{
        transform: scale(1.02);
    }
    100%{
        transform: scale(1);
    }
}

.wcu-statements div h4{
    font-size: 23px;
}

.wcu-statements div i{
    font-size: 60px;
    color: var(--primary);
}

/*testimonials slider*/

.testimonials-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.swiper{
    min-height: 350px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: auto;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  color: #222;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: #888;
}


/*footer*/

.site-footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
  line-height: 1.6;
  z-index: 11;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--common-family);
}

.site-footer ul li a:hover {
  color: var(--accent);
}

.social-icons a {
  display: inline-block;
  color: #ccc;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  color: #aaa;
}

/*forms*/

.main-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 70px 0;
    align-items: center;
    justify-content: center;
}

.forms{
    width: 100%;
    padding: 40px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
}

.forms h3, .forms h4{
    margin-bottom: 10px;
}

.form-group-wrapper{
    gap: 10px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.forms .form-group, .form-sections, .form-group-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.forms .form-group, .form-group-wrapper{
    gap: 5px;
}

.form-sections{
    gap: 20px;
}

.forms .form-group label{
    font-family: var(--common-family);
    max-width: 95%;
    word-break: break-all;
}

.forms .form-group .error{
    color: #ff0000;
    font-size: 12px;
}

.forms .char-count{
    width: 100%;
    display: flex;
    align-items: center;
}

.extendable-radios {
    width: 100%;
    max-height: 90px; /* Collapsed state */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: max-height 0.4s ease-in-out, padding 0.3s;
}

.extendable-radios.extended {
    max-height: 600px; 
    padding-bottom: 25px;
    overflow-y: auto;
    border: 1px solid #0e5dc5;
}


.extendable-radios label{
    margin-bottom: 30px;
}

.extendable-radios ul{
    padding: 0 20px;
    font-family: var(--common-family);
    font-size: 13px;
}

.disappearring-fields.show-hide{
    display: none;
}

.forms .form-group .checks {
    margin: 10px 0;
    padding: 10px 0;
}

.forms hr{
    width: 90%;
    margin: 30px 0;
    height: 1px;
    border: none;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.05);
}

.forms a{
    text-decoration: none;
    color: var(--primary);
    font-family: var(--common-family);
    margin: 10px 0;
    font-size: 14px;
}
.forms a:hover{
    text-decoration: underline;
}

.forms .form-group span label{
    cursor: pointer;
}

.form-group input[type='email'], input[type='text'], input[type='number'], input[type='password'], input[type='tel'], input[type='datetime-local'], select, textarea{
    width: 90%;
    padding: 13px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
}


.form-group select{
    cursor: pointer;
}

.form-group input:focus, select:focus, textarea:focus{
    outline: none;
}

.form-group textarea{
    resize: none;
    height: 100px;
}

.row-btns{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btns-main{
    max-width: 90%;
    width: 150px;
    text-decoration: none;
    padding: 13px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: var(--common-family);
    border-radius: 5px;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btns-main.extended{
    width: 90%;
    padding: 17px;
}

.btns-main.flex{
    width: auto;
    padding: 15px 20px;
}

.btns-main:disabled{
    opacity: 0.9;
    filter: contrast(80%);
}

.btns-main:hover{
    box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.1);
}

/*loader*/


.loader-wrapper, .responses-wrapper{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #ffffffcb;
    backdrop-filter: blur(3px);
    z-index: 100;
}

.loader-wrapper.active, .responses-wrapper.active{
    display: flex;
}
.responses-wrapper{
    padding: 10px;
}
.responses-wrapper .response{
    max-width: 100%;
    width: 600px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 4px 2px rgba(0,0,0,0.1);
}

.responses-wrapper .response h4{
    font-size: 20px;
}

.responses-wrapper .response .response-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.responses-wrapper .response .response-body p{
    font-size: 15px;
}


/*small response*/

.insertion-res a{
    text-decoration: none;
    color: var(--primary);
}


/* HTML: <div class="loader"></div> */
.loader{
  width: 40px;
  aspect-ratio: 1;
  --c:no-repeat linear-gradient(var(--accent) 0 0);
  background: 
    var(--c) 0    0,
    var(--c) 0    100%, 
    var(--c) 50%  0,  
    var(--c) 50%  100%, 
    var(--c) 100% 0, 
    var(--c) 100% 100%;
  background-size: 8px 50%;
  animation: l7-0 1s infinite;
  position: relative;
  overflow: hidden;
}
.loader:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: calc(50% - 4px);
  left: -8px;
  animation: inherit;
  animation-name: l7-1;
}

@keyframes l7-0 {
 16.67% {background-size:8px 30%, 8px 30%, 8px 50%, 8px 50%, 8px 50%, 8px 50%}
 33.33% {background-size:8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 50%, 8px 50%}
 50%    {background-size:8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 30%}
 66.67% {background-size:8px 50%, 8px 50%, 8px 30%, 8px 30%, 8px 30%, 8px 30%}
 83.33% {background-size:8px 50%, 8px 50%, 8px 50%, 8px 50%, 8px 30%, 8px 30%}
}

@keyframes l7-1 {
 20%  {left:0px}
 40%  {left:calc(50%  - 4px)}
 60%  {left:calc(100% - 8px)}
 80%,
 100% {left:100%}
}


/*MODALS*/

.modal{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.445);
  z-index: 100;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in;
  overflow-y: scroll;
}
.modal::-webkit-scrollbar{
    -webkit-appearance: none;
    width: 3px;
    background-color: #fff;
}

.modal::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: var(--accent);
    border-radius: 10px;
}

.modal.active{
    opacity: 1;
    visibility: visible;
}

.modal .modal-content{
  max-width: 100%;
  width: 800px;
  background-color: #fff;
  border-top: 2px solid var(--accent);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.modal .modal-content .modal-header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  gap: 10px;
}

.modal-header .modal-close{
    font-size: 17px;
    cursor: pointer;
}

.modal .modal-content .modal-body{
  padding: 20px 10px;
  overflow-y: scroll;
  max-height: 700px;
}

.tiny-response{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 30px;
    flex-wrap: wrap-reverse;
    gap: 20px;
    background-color: #329e38cc;
    border-bottom: 1px solid #00ad09;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    transform: translateY(-100%);
    transition: all .5s ease-in-out;
}

.tiny-response.active{
    transform: translateY(0);
}


.slider-controls{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 45%;
}

.slider-controls i{
    padding: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff83;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    cursor: pointer;
    z-index: 3;
}


.error-cont{
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.05);
}

.error-cont i{
    font-size: 70px;
    color: rgb(255,0,0);
}


/*PRODUCT LISTINGS PAGES*/
.product-listing-section, .product-listings-header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-listing-section{
    gap: 30px;
    margin-top: 100px;
    padding: 20px 0;
}

.page-headers{
    width: 100%;
    gap: 30px;
    padding: 30px 20px;
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.05);
}

.page-headers .top-prod-links{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-headers .top-prod-links a{
    max-width: 45%;
    width: 200px;
    padding: 14px;
    font-family: var(--common-family);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: var(--primary);
    border-radius: 4px;
    transition: all .4s ease;
}

.page-headers .top-prod-links a:hover{
    background-color: #0e5dc5;
}

.page-headers .bread-crumb{
    font-family: var(--common-family);
}

.top-sect{
    background-color: #fff;
    z-index: 4;
    width: 100%;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.side-filter-togg{
    font-size: 30px;
    cursor: pointer;
    color: var(--text);
    display: none;
}

.top-sect .grid-filters{
    max-width: 45%;
    display: flex;
    align-items: center;
    gap:5px;
}

.top-sect .grid-filters button{
    padding: 12px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.top-sect .grid-filters button.active{
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--accent);
    color: #fff;
}

.top-sect .grid-filters button i{
    font-size: 20px;
}

.top-sect .sorting{
    max-width: 40%;
    gap: 10px;
}

.top-sect .sorting select{
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

/*main filters*/


.middle-sect .side-filters{
    position: sticky;
    top: 60px;
    left: 0;
    max-width: 100%;
    width: 250px;
    padding: 30px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all .4s ease-in-out;
}

.side-filters .main-filters{
    gap: 10px;
    width: 100%;
    padding: 20px 0px;
}

.side-filters .price-filter form{
    width: 100%;
    gap: 5px;
}

.side-filters .price-filter form input{
    max-width: 30%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.side-filters .price-filter form button{
    max-width: 35%;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

/*check box filters*/

.side-filters .checkbox-filters{
    width: 100%;
    gap: 10px;
    font-family: var(--common-family);
    font-size: 14px;
}

.checkbox-filters span{
    width: 100%;
    gap: 10px;
}

.checkbox-filters span a{
    text-decoration: none;
    color: var(--text);
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

.checkbox-filters span a:hover{
    background-color: var(--accent);
}

.checkbox-filters span a.active{
    background-color: var(--accent);
}

/*product listings*/

.middle-sect{
    align-items: flex-start;
}

.middle-sect .product-catalogue{
    max-width: 100%;
    width: 900px;
    gap: 20px;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
}

.product-catalogue .products-list{
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.lower-sect{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
}

.lower-sect a{
    color: var(--primary);
    text-decoration: none;
    font-family: var(--common-family);
    margin-left: 3px;
}

.lower-sect a:hover{
    text-decoration: underline;
}


/*search*/

.search-results{
    width: 100%;
    padding: 50px 10px;
    gap: 10px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


.search-page-bar{
    width: 100%;
}

.search-page-bar form{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-page-bar input[type='search']{
    max-width: 80%;
    width: 600px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 14px;
}
.search-page-bar input[type='search']:focus{
    outline: none;
}


/*cart and check out page*/

.main-cart-content, .main-chkout-content{
    margin-top: 100px;
}

.cart-page-body, .checkout-page-body{
    width: 100%;
    gap: 20px;
    margin: 40px 0;
    padding: 30px 20px;
}

.cart-items-chkout{
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.empty-cart{
    width: 100%;
    gap: 20px;
    padding: 30px 10px;
    box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.empty-cart i{
    font-size:80px;
    color: var(--primary);
}

.cart-items-cont, .checkout-form-wrapper{
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    width: 800px;
}

.small-sect-header, .sub-total-el{
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-items-body{
    width: 100%;
    padding: 10px;
}

.cart-items{
    width: 100%;
    gap: 10px;
}

.cart-item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.cart-item .left{
    max-width: 100%;
    width: 400px;
}

.cart-item .left{
    align-items: flex-start;
}

.cart-item .left, .cart-item .img-actions{
    gap: 10px;
}

.cart-item .left img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cart-item .left.checkout img{
    width: 60px;
    height: 60px;
}

.cart-item .left .prod-dets a{
    font-size: 17px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--common-family);
}

.cart-item .right{
    max-width: 100%;
    width: 300px;
    gap: 30px;
    align-items: flex-end;
    justify-content: flex-end;
}

.cart-item .right .quantity-change{
    width: 100%;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.quantity-change .qty-amt{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-change .qty-amt .small-spinner{
    animation: revolve .4s infinite linear forwards;
    border-right: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

@keyframes revolve {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.cart-item .right .quantity-change button{
    cursor: pointer;
    border: none;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
    background-color: var(--accent);
    color: #fff;
    width: 35px;
    height: 35px;
}

.cart-item .right .quantity-change button:hover{
    scale: 1.01;
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.05);
}

.sub-total{
    position: sticky;
    top: 100px;
    gap: 10px;
    box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    max-width: 100%;
    width: 300px;
}

.coupon-application{
    padding: 10px;
    gap: 10px;
}

.sub-total-el{
    align-items: center;
    justify-content: space-between;
}

.checkout-form-wrapper{
    padding: 10px;
    gap: 20px;
}


/*product viewing*/

/*PRODUCT DETAILS *******************************************/

.product-details-page{
    width: 100%;
    gap: 30px;
    margin-top: 100px;
    background-color: #f7f7f7;
    padding: 10px;
}

.product-details-page section{
    border-radius: 5px;
    width: 100%;
    box-shadow: 2px 2px 7px 3px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    color: var(--text);
    padding: 30px 20px;
}

.prod-page-top {
    gap: 20px;
}

.main-prod-details{
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;

}

.main-prod-details .left{
    max-width: 100%;
    width: 450px;
    height: auto;
    gap: 10px;
    position: relative;
}

.main-prod-details .left .flash-marker{
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    left: 0%;
    top: -5%;
    z-index: 4;
}

.main-prod-details .left .main-img-cont{
    width: 100%;
    position: relative;
}

.main-prod-details .left .main-image{
    width: 95%;
    height: 450px;
    object-fit: cover;
    object-position: 50% 40%;
    cursor: zoom-in;
}

.left .zoomed-image{
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%;
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    background-size: 1000px 1000px;
    pointer-events: none;
}

.main-prod-details .left .other-prod-imgs{
    gap: 10px;
    overflow-x: scroll;
}

.main-prod-details .left .other-prod-imgs img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: 50% 25%;
    border-radius: 2px;
    cursor: pointer;
}

.main-prod-details .left .other-prod-imgs img:hover{
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-prod-details .left .sharers{
    width: 100%;
    gap: 20px;
    padding: 10px;
}

.main-prod-details .left .share-links{
    gap: 5px;
}

.main-prod-details .left .share-links a{
    font-size: 23px;
    text-decoration: none;
    color: var(--text);
}

.main-prod-details .right{
    max-width: 100%;
    width: 500px;
    gap: 10px;
}

.main-prod-details .right .main-price-head{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-end;
}

.right .brand-link{
    text-decoration: none;
    color: var(--primary);
}

.main-prod-details .right .prod-dets-sects{
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

.main-prod-details .right .prod-dets-sects:nth-child(1){
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.discount-bagde-ind{
    max-width: 100px;
    padding: 5px;
    background-color:#00ad09ab;
    border: 1px solid #00ad09;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
}

.stock-rep{
    padding: 5px;
    border-radius:5px;
    color:#fff;
    width:100px;
    text-align:center;
}

/*on scroll*/

.floating-modal{
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #fff;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transform: translateY(100%);
    transition: all .4s ease-in-out;
}

.floating-modal.appear{
    transform: translateY(0);
}

.floating-modal .details{
    max-width: 100%;
    width: 500px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-modal .details img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.floating-modal .prod-dets-sects {
    max-width: 100%;
    width: 400px;
    gap: 10px;
    padding: 10px 0px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


/*trrrrrrrrrrrrrrrrr*/

.trust-badges {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.trust-badges .badge {
  max-width: 40%;
  width: 150px;
  min-height: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #333;
  padding: 10px;
  border-left: 2px solid var(--success);
}


.trust-badges .badge img {
  width: 24px;
  height: 24px;
}

.trust-badges .badge i{
    font-size: 24px;
}

.delivery-info h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}


/*********************************************/

.section-control{
    width: 100%;
    gap: 10px;
    padding: 5px 10px;
    flex-wrap: wrap;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.section-control button{
    background-color: #fff;
    cursor: pointer;
    border: none;
    padding: 13px 16px;
    font-family: var(--common-family);
}

.section-control button.active{
    border-bottom: 2px solid var(--accent);
}


.desc-container{
    gap: 10px;
    width: 100%;
}

.desc-sects.disap{
    display: none;
}

/*FAQS ALL*/

.faq-section {
  max-width: 100%;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.faq-section h3 {

  margin-bottom: 24px;
  font-size: 24px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  max-width: 100%;
  width: 600px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 17px 16px;
  background: #f8f8f8;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-answer {
  display: none;
  padding: 12px 16px;
  background: #fff;
  color: #333;
}

.faq-answer p {
  margin: 0;
}

/*FAQS ALL END*/


/*RETURN POLICY*/

.delivery-returns-policy {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  margin-top: 25px;
  font-family: 'Arial', sans-serif;
}

.delivery-returns-policy h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
}

.delivery-returns-policy ul {
  list-style: none;
  padding-left: 0;
}

.delivery-returns-policy li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--common-family);
}


/*RETURN POLICY END*/

.main-prod-details .right .prod-actions{
    flex-wrap: wrap;
}


.whatsapp-order-btn{
    width: 90%;
    padding: 16px;
    background-color: #00ad56;
    border-radius: 1px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    justify-content: center;
}


.whatsapp-order-btn:hover{
    box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
}

.prod-desc-sect{
    padding: 10px;
    gap: 20px;
}

.prod-desc-sect .prod-desc, .prod-desc-sect .prod-tags{
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    gap: 10px;
}

.prod-desc-sect h3, .prod-desc-sect p{
    padding: 10px;
}

.prod-desc-sect h3{
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prod-desc-sect .product-tags-content{
    padding: 20px;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.prod-desc-sect .product-tags-content a{
    text-decoration: none;
    width: auto;
    font-size: 14px;
    padding: 10px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-family: var(--common-family);
}

/*reviews*/

.prod-reviews{
    width: 100%;
    gap: 30px;
}

.prod-reviews .reviews-header{
    width: 100%;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.prod-reviews .reviews-header a{
    text-decoration: none;
    font-family: var(--common-family);
    color: var(--primary)
}

.prod-reviews .reviews-body{
    padding: 10px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.prod-reviews .reviews-body .reviews{
    max-width: 100%;
    width: 600px;
    min-height: 400px;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}

.no-reviews-cont{
    width: 100%;
    height: 400px;
    padding: 30px 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.no-reviews-cont i{
    font-size: 50px;
    color: var(--primary);
}

.reviews-body .reviews .review{
    width: 100%;
    gap: 5px;
    background-color: #fff;
    box-shadow: 1px 1px 6px 4px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 10px;
    font-family: var(--common-family);
}

.prod-reviews .reviews-body .reviews .review p{
    font-size: 14px;
}

.prod-reviews .reviews-body .reviews .review span{
    font-size: 12px;
}

.prod-reviews .reviews-body .reviews .review h5{
    font-size: 18px;
    margin-bottom: 10px;
}

.prod-reviews .review-form{
    max-width: 100%;
    width: 350px;
    gap: 20px;
}

/*trust and guarantee*/
.trust-guarantee {
  background: #f9f9f9;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.trust-guarantee h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}



/*pay-pages*/

.order-conf-page{
    padding: 10px;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.order-conf-page .response-container{
    width: 100%;
    height: auto;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.response-container .response-mes{
    max-width: 100%;
    width: 700px;
    padding: 30px 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.05);
}

.response-container .response-mes i{
    font-size: 60px;
}

.response-container .response-mes i.fa-circle-exclamation{
    color: rgb(255, 43, 43);
}
.response-container .response-mes i.fa-circle-check{
    color: var(--success);
}

.post-o-actions{
    width: 100%;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}


/*vendors*/

.vendor-prod-res{
    width: 100%;
    padding: 50px 10px;
    gap: 10px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


/*auth*/

.auth-pages{
    height: 100vh;
    margin-top: 100px;
}

.user-auth-content{
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 40px 10px;
    align-items: center;
    justify-content: center;
}

.auth-form-wrapper{
    max-width: 100%;
    width: 800px;
}
@media screen and (max-width: 764px) {
    .modal{
        align-items: flex-start;
    }
    .middle-sect .side-filters{
        z-index: 10;
        position: fixed;
        left: 0;
        top: 100px;
        transform: translateX(-100%);
        overflow-y: scroll;
        height: 100vh;
    }
    .middle-sect .side-filters.active{
        transform: translateX(0);
        width: 100%;
    }
    .main-prod-details{
        flex-wrap: wrap;
    }
    .top-sect .grid-filters{
        display: none;
    }
    .side-filter-togg{
        display: block;
    }
    .floating-modal .details{
        display: none;
    }
    .main-prod-details .left .main-image{
        object-fit: contain;
    }
}

@media screen and (max-height: 550px) {
    .order-conf-page{
        margin-top: 100px;
    }
    
}

@media screen and (max-width: 380px) {
    .trust-badges{
        flex-wrap: wrap;
    }
}
