@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
  margin: 0;
  width: 100%;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.max-width {
  margin: auto;
  max-width: 1300px;
}
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.space-between {
  justify-content: space-between;
}
.ad {
  padding: 10px 0px; 
}
.wrapper {
  width: 100%;
}
.grey-background {
  background: rgba(168, 168, 213, 0.2);
}
.dark-grey-background{
  background-color: #E8E8E8 ;
}
.blue-background{
  background: #000099!important;
}
.green-background{
  background: #01B075!important;
}
.text-center {
  text-align: center;
}
.center {
  align-items: center;
}
.small-font {
  font-size: 14px;
}
.smaller-font {
  font-size: 11px;
  font-weight: 400;
}
.normal-weight-font {
  font-weight: 600;
}
.normal-font {
  font-size: 16px;
}
.pink-font {
  color: rgba(153, 0, 125, 1);
}
.big-font {
  font-size: 34px;
}
.bold-font {
  font-weight: 800;
}
.blue-font {
  color: rgba(0, 0, 153, 1);
}
.grey-font {
  color: rgba(115, 115, 115, 1);
}
.top-padding {
  padding: 20px 0px;
}
.header {
  width: 100%;
}
.header-left {
  width: 50%;
  gap: 30px;
}
.search-box {
  position: relative;
  max-width: 300px;
  /* padding-bottom: 5px; */
  width: 100%;
}
.search-box input {
  padding: 10px;
  padding-right: 50px;
  border-width: 1px;
  border-color: rgba(168, 168, 213, 1);
  border-radius: 4px;
  width: 100%;
  max-width: 160px;/*shtuar nga eni*/
}
.mobile-header .search-box input , .mobile-nav .search-box input{
  max-width: calc(100% - 40px);
  padding-right: 35px;
}

.search-box .material-icons {
  position: absolute;
  top: 46%;
  right: -50px;
  transform: translateY(-50%);
  font-size: 24px;
  align-self: center;
}
.search-box input::placeholder {
  color: #919191;
  font-family: "Poppins", sans-serif;
}
span.arrow {
  padding-left: 6px;
  font-size: 11px;
}
.header-right {
  width: 50%;
  align-items: flex-end;
}
.header-right {
  gap: 20px;
  align-items: center;
  align-self: baseline;
  justify-content: end;
}
/*shtuar nga eni*/
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown .header-button {
  position: relative;
}
.language-menu {
    display: none; 
    position: absolute;
    top: 35px;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 110px;
    margin-top: 5px;
}
.language-dropdown:hover .language-menu {
  display: block;
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.language-menu a:hover {
  background-color: #f5f5f5;
}

.language-menu a.active {
  background-color: #eeeef7;
  font-weight: 600;
}

.language-menu img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/*shtuar nga eni*/
.header-button {
  font-family: "Poppins", sans-serif;
  color: black;
  padding: 7px 15px;
  width: fit-content;
  gap: 7px;
  min-width: 115px;
  border-color: rgba(232, 232, 232, 1);
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  background-color: transparent;
  box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.04);
}
.header-button p {
  align-self: center;
}
.header-button span, .header-button i {
  font-size: 20px;
}
.header-button img{
 width:22px;   
}
.section-break {
  border-top: solid 1px #d8d8d8;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-top: 20px;
  margin: 0;
}
nav {
  width: 100%;
  align-self: flex-start;
  overflow: hidden;
}
nav ul {
  font-weight: 400;
  font-size: 18px;
  list-style: none;
  gap: 20px;
  padding: 0;
  padding-bottom: 20px;
  margin: 0;
}
.nav-scroll {
  width: 100%;
  overflow-x: auto;         
  overflow-y: hidden;
}
.nav-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  white-space: nowrap;
  overflow: hidden; 
}
.nav-list li {
  flex: 0 0 auto; 
}
.filter-box {
  gap: 15px;
  padding: 25px;
}
.filter-box p.smaller-font.white-font {
  align-self: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.pattern-wrapper {
  background-color: #000099;
  background-image: url("/images/pattern.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: auto;
  background-blend-mode: multiply;
}
.filters select {
  padding: 15px;
  border-color: #e8e8e8;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  color: #737373;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.filter-box p:first-child {
  font-size: 18px;
  font-weight: 700;
}
.white-font {
  color: #ffffff;
}
.promotions {
  cursor: pointer;
   padding: 10px;  /* padding: 30px 15px 100px 0px; -> ndryshuar nge eni  padding:  30px 0; */
  width: 100%;
  gap: 30px;

}
.promotion {
    flex: 1;
    width: 50%;
    /* max-height: 300px; ndryshuar nga vet esteri*/
    padding: 0;
    
    border-radius: 4px;
}
.promotion:nth-of-type(2){
  gap:0px;
}

.header-section{
  width: 100%;
}
.promotion p.big-font {
  white-space: nowrap;
}
.promotion:nth-of-type(2) p {
  align-self: flex-end;
}
.promotion img {
  max-width: 100%;
  align-self: flex-start;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
#promotions-container{
  padding-top: 25px; /*shtuar nga ester*/
}
.small-gap {
  gap: 5px;
}
.know-more-button {
  background-color: rgba(153, 0, 125, 1);
  border: 1px solid rgba(153, 0, 125, 1);
  border-radius: 4px;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  font-family: "Poppins" , sans-serif;
  cursor: pointer;
}
.log-out-btn {
  background-color: #ffffff;
  border: 1px solid rgb(109, 109, 109);
  border-radius: 4px;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  font-family: "Poppins" , sans-serif;
  cursor: pointer;
}
.log-out-btn :hover {
  background-color: #b8b8b8;
}
.uppercase {
  text-transform: uppercase;
}
.biggest-font {
  font-size: 80px;
}
.image-group {
  flex: 1;               
  justify-content: center;
}

.image-group img {    
  width:100%;     
  max-width: 400px;      
  height: auto;
  align-self: center;
}
#products-div{
  margin-bottom:25px;
}
.products-div-title{
  font-size:20px;
}
.products{
  border: none;
  border-radius: 4px;
  margin-top:55px;
  position: relative;
}
.product-carousel{
  max-width: 100%;
  width: 100%;
  padding:15px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top:-50px;
}
/* .product-carousel .product-card {
  max-width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
} */
.service-carousel{
  max-width: 100%;
  padding:15px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: -60px;
}
.product-card{
  padding:20px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #E6E6E6;
  border-radius:4px;
}
.product-card *:not(span){
  width: 100%;
}
.product-card .know-more-button{
  align-self: center;
  background-color: #000099;
  border: 1px solid rgba(0, 0, 153, 1)
}
.brands-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  grid-template-rows: repeat(4, auto);   
  gap: 10px;
  padding: 20px 0;
}
.brand-nav{
  border-style: solid;
  border-width:1px;
  border-color: #CECECE;
  border-radius: 4px;
  padding:15px;
  font-size:18px;
  color: #707070;
  gap: 35px;
}
/* ndryshuar nga ester  */
.brand-name{
  white-space: nowrap;
}
.brand-nav span{
  color: black;
  font-size:small;
  font-weight: 400;
}
.brand-nav:hover{
  background-color: #FAF5F5;
  color: black;
}
.brand-nav:hover .brand-name{
  font-weight:800;
}

#services-div{
  padding-bottom:30px;
}

.services{
  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: #000099;
  padding-top:30px;
  position: relative;
  margin-bottom: 50px;
}
.services p.big-font{
  padding-left: 15px;
  padding-bottom: 10px;
}
.services .know-more-button{
  width: 80%;
  color:#000099;
  border-color: #000099;
  background-color: #FFFFFF;
}
.services img{
  width: auto!important;
}

.refurbished-carousel , .news-carousel{
  padding: 25px  0;
}
.refurbished-carousel .owl-next , .refurbished-carousel .owl-prev , .image-carousel .owl-next , .image-carousel .owl-prev , .service-carousel .owl-next , .service-carousel .owl-prev , .product-carousel .owl-next , .product-carousel .owl-prev {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  background: none!important;
}
/* .service-carousel .ellipse-arrow , .product-carousel .ellipse-arrow{
  background-color: #000099;
  color: #FFFFFF;
} */
.refurbished-carousel .owl-next , .service-carousel .owl-next , .product-carousel .owl-next{
  right: -30px;
}
.image-carousel .owl-next{
  right: 0px;
} 
.image-carousel .owl-prev{
  left: 35px;
} 
.refurbished-carousel .owl-prev , .service-carousel .owl-prev , .product-carousel .owl-prev{
  left: -15px;
}

.ellipse-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%; 
  background-color: #EEEEF7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #000099;
  font-size: 24px;
}
.ellipse-arrow:hover {
  background-color: #000099;
  color: #FFFFFF;
}
.news p.big-font{
  font-size: 32px;
}

.news p.small-font{
  text-decoration: underline;
}
.news{
  width: 100%;
  padding-bottom: 50px;
  height: 100%;
}
.news-card{
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  height:100%;
}
.news-card .news-text.normal-font{
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;

}
.news-content{
  padding: 25px;
}
.news-content .small-gap{
  gap: 20px;
}
.news-content span.arrow{
  font-size: 18px;
  width: 10%;
  align-self: flex-end;
}
.news-carousel .owl-dots .owl-dot.active span{
  background: #000099!important;
}

.apps.small-gap{
  gap: 10px;
}
.apps img{
  width: 25px;
  height: 25px;
}
.big-gap{
  gap: 25px;
}
/* 
hequr nga ester
.footer-content{
  gap: 30px;
  padding-bottom: 20px;
} */
footer{
  padding: 35px 0px 20px;
}
.contact.small-gap{
  gap:10px;
}
.language-button {
  padding: 6px;
  border: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}


.language-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.subscribe{
  font-family: "Poppins" , sans-serif;
  padding: 10px 15px;
  background-color: #FFFFFF;
  box-shadow: 4px 4px 7px 0px #0000001C;
  border: none;
  border-radius: 4px;
}

.subscribe .arrow{
  font-size: 16px ;
}

/* .footer-left{
  width: 50%;
} */
.bordered-div{
  width: 100%;
  padding:5px 0;
  border-top: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  justify-content: flex-end;
}
.bordered-div:nth-of-type(3){
  border-top: none;
  /* margin-bottom: 20px; */
}
.bordered-div p{
  white-space: nowrap;
}
.bordered-div img{
  height: auto;
  width: auto;
  object-fit: contain;

}
.mobile-header{
  display: none;
}
.mobile-header .header-button{
  min-height: 36px;
}
.blue-section-break{
  border-top: solid 15px #000099;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-bottom: 20px;
  margin: 0;
}
.searched-for{
  font-size: 20px;
}
.search-results.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  padding:15px;
  justify-content: start; 
  width: 100%;
}
.search-results .product-card {
  justify-self: start;      
}
.page-path , .searched-for{
  width: 100%;
}
#search-results-page{
  width: 100%;
}
.product{
  font-size: 20px;
  width: 100%;
}
.start-application , .start-login{
  width: 100%;
  border: solid 1px #000099;
  border-radius: 4px;
}
.select-div{
  gap: 15px;
}
.border{
  width: 100%;
  padding-bottom: 50px;
  padding-top: 20px;
}
.select-div select{
  min-width:400px;
  padding: 10px;
  border-color: #000099;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  color: #0a0909;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.start-application img{
  /* width: 40%;
  height: auto; */
  object-fit: cover;
}
.start-application img, .start-application .select-div{
   padding: 35px;
}
.select-div .know-more-button{
  width: 100%;
  border: none;
}
.start-application-content{
  width: 95%;
}
.start-login-content{
 margin: auto;
 padding: 40px 20px;
 gap:15px;
}
.start-login-content *:not(span) {
  width: 100%;
}
.title{
  width:100%;
  padding-bottom: 10px;
  font-size:20px;
}
.start-login-content .big-font{
  font-size: 20px;
}
.start-content .big-font{
  font-size: 20px;
}
.start-login-content .top-padding{
  padding-bottom: 0;
}
.start-login-content input{
  width: 100%;
  border: solid 1px #000099;
  padding: 10px 0px 12px 8px; /*NDRYSHUAR NGA ENI*/
  font-family:Arial, Helvetica, sans-serif;
  font-size: 18px;
  border-radius: 4px;
  min-width: 400px;
}
.start-login-content input[type="checkbox"]{
  min-width: 15px;
  max-width: 15px;
  width: 15px;
  height: 15px;
  padding: 0;
  appearance: none;
  margin-right: 7px;
  border: solid 1px #000099!important;
}
.start-login-content input[type="checkbox"]:checked{
  appearance: auto;
}
.start-login-content .know-more-button{
  border: none;
}
.terms-conditions{
  padding: 20px 0;
  gap:12px;
  justify-self: start;
}
.terms-conditions a{
  text-decoration: underline;
}
.product-div{
  padding: 15px 0;
  border-bottom: solid 1px #ACACAC;
}
.product-div img{
  width: 20%;
}
.product-div .price{
  width: fit-content;
  white-space: nowrap;
}
#order-page .start-login-content .title{
  padding-bottom: 20px;
  border-bottom: solid 1px #ACACAC;
}
.start-login-content textarea{
  background-color: #FBFBFB;
  border: solid 1px #C4C4C4;
  border-radius: 4px;
  padding:10px 0 10px 10px;
}
.start-login-content textarea::placeholder{
  font-family: "Poppins" , sans-serif;
}

#user-profile .start-login-content , #admin-profile .start-login-content{
  width: 100%;
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}

table th, 
table td {
  text-align: left;
  padding: 12px 16px;
  width: fit-content!important;
}

table tr , table th {
  border-bottom: 1px solid #ACACAC; 
}
table.five-col-table tr td:nth-child(4) , table.five-col-table tr th:nth-child(4) {
  text-align: right;
}
table.six-col-table tr td:nth-child(5) , table.six-col-table tr th:nth-child(5) {
  text-align: right;
}

table tr:last-child {
  border-bottom: none; 
}
.pay {
  width: 80px;
  height: 32px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  font-size: 15px;
  background: #e0e0e0;
  color: #737373;
  cursor: not-allowed;
}

.pay::after {
  content: "Pay"; 
}

#admin-profile .pay::after{
  content: "Send";
}

.paid {
  width: fit-content!important;
  font-size: 15px;
  font-family: "Poppins" , sans-serif;
  background-color: #01B075;
  color: #FFFFFF;
  padding: 10px 15px; 
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.paid::after {
  content: "Paid"; 
}
.delete {
  width: fit-content!important;
  font-size: 15px;
  font-family: "Poppins" , sans-serif;
  background-color: #737373;
  color: #FFFFFF;
  padding: 10px 15px; 
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.delete::after{
  content: "Delete";
}
.start-login-content table input{
  min-width: 50px;
  max-width: 70px;
}
.button-div{
  padding-top: 15px;
  gap:10px;
  width: 100%;
}
.button-div button{
  color: #FFFFFF;
  padding: 10px 15px;
  font-family: "Poppins" , sans-serif;
  font-size: 16px;
  background-color: #CECECE;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}
.button-div button:hover{
  background-color: #000099;
}
.text-div{
  width: 100%;
  padding: 20px 0;
}
.text-div div:not(.line-break){
  padding: 20px 0;
  border-bottom: solid 1px #B4B4B4;
}

.text-div div:not(.line-break):last-of-type{
  border-bottom: none;
}

.text-div .know-more-button{
  border: #000099;
  min-width: 300px;
  align-self: flex-start;
  justify-content: space-between;
  margin-top: 15px;
}

.line-break {
  height: 12px;
}
.live-chat-container {
  position: fixed;  
  bottom: 30px;
  right: 30px;
  text-align: center;
  z-index: 1000;
}
.live-chat-btn {
  
  width: 48px; 
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0; 
  background: transparent; 
  color: inherit;
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-content: center;
  font-size: inherit;
  cursor: pointer;
  box-shadow: none; 
}

.live-chat-btn:hover {
  background: transparent;
}

.live-chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: #000099; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.live-chat-btn:hover {
  background-color: #000066;
}

.live-chat-text {
  margin-top: 8px;
  font-size: 14px;
  color: #000;
  align-self: end;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  max-width: calc(100% - 40px);
  height: 100vh;
  background: #000099; 
  z-index: 1000;
  padding: 20px;
}
.mobile-nav .search-box{
  max-width: 100%;
}

.mobile-nav .search-box span{
  right: 15px;
}
.mobile-nav .close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.mobile-nav .close span {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s ease;
}

.mobile-nav .close span:hover {
  transform: rotate(90deg);
}


.mobile-nav .navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav .navbar ul a {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
}

.mobile-nav .navbar ul li {
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.submenu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #000099;
  z-index: 1100;
  padding: 20px;
  color: white;
}

.submenu-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.submenu-header .back-btn {
  cursor: pointer;
  margin-right: 10px;
}

.submenu ul {
  list-style: none;
  padding: 0;
}

.submenu ul li {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.submenu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
h1{
  margin:0;
}
#main-page hr.blue-section-break{
  display: none;
}
.logo img{
  width: 150px;
  height: auto;
  object-fit: contain;
}
.news-img{
  width: 100%;
  height:260px;
  max-height: 260px;
}
.news-card img{
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
/* to be changed kur te shtohet karta tjeter ne footer */
.ratings{
  justify-content: end;
}
@media(max-width: 1400px){
  .device-padding{
    padding-left: 20px;
    padding-right: 20px;
  }
  #products-div , #services-div , .news , .promotions , .promotion , nav.nav-scroll , .header , .search-results.grid , .border , .title, .text-div , .product , .page-path{
      max-width: calc(100% - 40px);
  }

  .header .wrapper{
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  #refurbished-products-div{
      max-width: calc(100% - 120px);
  }
  .start-application-content{
    width: 100%;
  }
}
@media(max-width: 1024px){
  .mobile-header{
    display: flex;
  }
  .mobile-header.top-padding{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .desktop-header{
    display: none;
  }
   .mobile-header .header-button {
    padding: 7px 10px;
    min-width: auto;
    width: auto;
    gap: 5px;
    justify-content: center;
  }
  
  /* Shfaq tekstin e gjuhës në mobile */
  .mobile-header .language-dropdown .header-button p {
    display: block !important;
    font-size: 12px;
  }
  
  /* Ikona dhe tekst të balancuar */
  .mobile-header .header-button span,
  .mobile-header .header-button img {
    font-size: 18px;
    width: 20px;
    height: 20px;
  }
  .filters.grid-3{
    grid-template-columns:1fr;
    align-items: center ;
  }
  .promotions{
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    width: fit-content;
  }
  .promotion{
    max-width:100%;
    /* padding: 20px 15px; ndryshuar prap nga eni  */
  }
  .promotion .big-font{
    font-size: 25px;
  }
  .promotion .normal-font , .promotion .know-more-button{
    font-size:13px;
  }
  .promotion p{
    padding: 10px 0;
  }
  .promotion:nth-of-type(2) p{
    padding-bottom: 20px;
  }
  .biggest-font{
    font-size:45px;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #brands-div{
    margin: 0;
  }
  .footer-content{
    flex-direction: column-reverse!important;
    gap: 20px;
  }
  .footer-middle{
    display: none;
    /* align-self: flex-start!important;
    padding-top: 15px; */
  }
  .footer-left{
    width: 100%;
    gap:10px;
  }
  .ratings{
    flex-direction: column;
    align-items: center;
    align-self: center;
  }
  .bordered-div:nth-of-type(3){
    flex-direction: column;
  }
  .bordered-div:nth-of-type(3).big-gap{
    gap:10px;
  }
  .bordered-div:nth-of-type(3) div :last-child {
    display: none;
  }
  .bordered-div{
    align-items: center;
    justify-content: center;
  }
  .search-results.grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .subscribe{
    gap:25px;
    width: fit-content;
  }
}
@media(width: 1024px){
  .desktop-header{
    display: flex;
  }
  .mobile-header{
    display: none;
  }
}
@media (min-width: 1024px){
  .logo img{
    max-height:37px;
  }
}
@media (min-width: 1400px) {
  #brands-div{
    min-width: 1300px;
  }
  #order-page .start-login-content{
    padding: 35px 10%;
  }
}
@media(max-width:920px){
  #create-account-page .start-login-content .flex-row{
    flex-direction: column;
  }
  .check{
    flex-direction: row!important;
  }
}
@media(max-width:800px){
  .border{
    margin: 0;
  }
  .start-application-content{
    flex-direction: column-reverse;
  }
  .product-image-container  img{
   max-width: calc(100% - 30px)!important;
    align-self: center;
  }
}
@media(max-width: 768px){
  .device-padding{
      padding-left:30px;
      padding-right: 30px;
  }
  #products-div , #services-div , #refurbished-products-div , .news , .promotions , .promotion , nav.nav-scroll , .header , .page-path , .searched-for , .search-results.grid , .border , .title, .product-div , textarea, .text-div , .product , .page-path{
      max-width: calc(100% - 60px);
  }
  .header .wrapper{
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #refurbished-products-div button.owl-next , #refurbished-products-div button.owl-prev{
    display: none;
  }
  .search-results.grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .product-div img{
    width: fit-content;
  }
  .product-div{
    flex-direction: column;
    align-items: center;
    align-self: center;
  }
  .product-info{
    text-align: center;
  }
  .price{
    flex-direction: row;
  }
  .product-info, .price{
    width: fit-content!important;
  }
  nav.nav-scroll {
    display: none;
   }

}
@media (max-width: 600px){
  .filters select{
    padding:10px;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .select-div select{
    min-width:280px;
    font-size: 12px;
  }
  .start-application img, .start-application .select-div{
    padding:15px;
  }
  .start-login-content input{
    min-width: 300px;
  }
    .brand-nav{
    gap:15px;
  }
  .logo{
    width: 75%;
    align-self: center;
  }
  .header-left .logo img{
    width: 100%;
    object-fit: contain;
  }
  .header-right{
    gap:10px;
  }
}
@media (max-width: 425px){
  
  .mobile-header .header-button{
    padding: 5px 10px;
  }
  .header-right{
    justify-content: flex-end;
  }
  .filter-box p:first-child{
    font-size: 14px;
  }
  .filter-box p.smaller-font{
    font-size:9px;
  }
  .products-div-title{
    font-size: 16px;
  }
  .big-font{
    font-size: 25px;
  }
  .ad{
    font-size: 10px;
    white-space: wrap;
  }
  .bordered-div:nth-of-type(3) div{
    max-width: 280px;
    flex-wrap: wrap;
  }
  .promotion .big-font{
    font-size: 18px;
  }
  .search-results.grid { 
    grid-template-columns: 1fr; 
  }
  .search-results .product-card {
    justify-self: center;      
  }
  .select-div select{
    min-width:fit-content;
  }
  .start-login-content input{
    min-width: fit-content;
  }

  .promotion{
    width: calc(100% - 20px)
  }
  .live-chat-btn {
    width: 50px;
    height: 50px;
  }

  .brand-name{
    white-space: nowrap;
    font-size: 13px;
  }
  /* .mobile-header .search-box{
    max-width: calc(100% - 60px);
  } */
  .mobile-header .logo .material-icons{
    /* height: 16px; hequr nga ester */
    margin-bottom: 6px; /*shtuar nga ester*/
  }  
}
@media(max-width: 370px){
 .brands-grid {
    grid-template-columns: 1fr;
  }
}



/* Select2 CSS i optimizuar */
.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
    /* padding-bottom: 5px; */
}

/* Container kryesor i Select2 */
.search-box .select2-container {
    width: 100% !important;
    max-width: 300px;
    display: block;
    position: relative;
}

/* Selection box - i kombinuar në një rregull */
.search-box .select2-selection--single {
    padding: 10px 40px 10px 10px !important;
    border: 1px solid rgba(168, 168, 213, 1) !important;
    border-radius: 4px !important;
    width: 100% !important;
    height: 42px !important;
    background: #fff !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 16px !important;
    color: #333 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Placeholder dhe selected text */
.search-box .select2-selection__rendered {
    color: #919191 !important;
    font-family: "Poppins", sans-serif !important;
    line-height: 22px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Kur ka vlerë të zgjedhur */
.search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
}

/* Heq shigjetën origjinale të Select2 */
.search-box .select2-selection__arrow {
    display: none !important;
}

/* Ikona e search-it */
.search-box .material-icons {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000099;
    z-index: 10; /* Rritur z-index */
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    pointer-events: auto; /* Siguro që është e klikueshme */
}

/* Label mbi select */
.search-box .search-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    font-size: 15px;
    color: #919191;
    font-family: "Poppins", sans-serif;
    z-index: 2;
}

/* Focus state */
.search-box .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #000099 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 153, 0.1) !important;
}

/* Dropdown styling */
.select2-container--default .select2-results__option {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    padding: 8px 12px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(0, 0, 153, 0.1) !important;
    color: #000099 !important;
}

/* Clear button (X) styling nëse përdoret allowClear */
.search-box .select2-selection__clear {
    color: #999 !important;
    cursor: pointer !important;
    float: right !important;
    font-weight: bold !important;
    margin-right: 10px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .search-box {
        max-width: 100%;
    }
    
    .search-box .select2-container {
        max-width: 100%;
    }
    /* shtuar .promotion nga eni  */
    .promotion{
      width: 100%;
      max-width: 100%;
    }
}

/* Shtesë për user-profile buttonat */
.empty-price {
    width: 80px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 6px;
    display: inline-block;
}
.pay {
    width: 80px;
    height: 32px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    background: #e0e0e0;
    color: #737373;
    cursor: not-allowed;
}
.pay.active {
    background: #007bff;
    color: #fff;
    cursor: pointer;
}
.paid {
    width: 80px;
    height: 32px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    background: #01B075;
    color: #fff;
}

/* Kartat e produkteve - madhësi fikse */
.product-carousel .product-card, 
.refurbished-carousel .product-card , .service-carousel .product-card{
    width: 200px !important;         
    height: 280px !important;        
    min-width: 200px;
    max-width: 200px;
    min-height: 280px;
    max-height: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 18px 12px;
    margin: 0 8px;
    box-sizing: border-box;
    flex-shrink: 0;                  
}

.product-carousel .product-card img, 
.refurbished-carousel .product-card img, 
.service-carousel .product-card img {
    width: 175px !important;         
    height: 123px !important;        
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    display: block;
    margin: 0 auto;
    flex-shrink: 0;                  
}
.product-card .product-title {
    min-height: 48px;
    max-height: 48px;
    overflow: hidden;
    text-align:start;                    
}

.product-carousel, 
.refurbished-carousel { /*service carousel hequr nga ester */
    overflow-x: none;                
    white-space: nowrap;            
}

.product-carousel .carousel-container,
.refurbished-carousel .carousel-container,
.service-carousel .carousel-container {
    display: flex;
    gap: 8px;                        
}

#search-results-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    gap: 16px;
    padding: 20px;
    max-width: 1300px;  
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #search-results-container {
        grid-template-columns: repeat(3, 1fr);  
        max-width: 1000px;
    }
}

@media (max-width: 900px) {
    #search-results-container {
        grid-template-columns: repeat(2, 1fr);  
        max-width: 650px;
    }
}

@media (max-width: 600px) {
    #search-results-container {
        grid-template-columns: 1fr;  
        max-width: 320px;
    }
}

#search-results-container a.product-card {
    width: 100% !important;
    height: 320px !important;          
    min-height: 320px;
    max-height: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;       
    align-items: center;
    padding: 15px 12px;               
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 8px;
}

#search-results-container .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

#search-results-container .image-wrapper {
    width: 200px !important;
    height: 130px !important;
    min-width: 200px;
    max-width: 200px;
    min-height: 130px;
    max-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
}

#search-results-container .image-wrapper img {
    width: 200px !important;
    height: 130px !important;
    min-width: 200px;
    max-width: 200px;
    min-height: 130px;
    max-height: 130px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    display: block;
    flex-shrink: 0;
}
#search-results-container a.product-card .product-title {
    min-height: 40px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;              
    margin-bottom: 0;                  
    width: 100%;
    line-height: 1.2; 
}

#search-results-container a.product-card .product-subtitle {
    min-height: 18px;
    max-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: wrap;
    width: 100%;
    margin-bottom: 0;                                  
}

#search-results-container .know-more-button {
    margin-top: auto;                  
    width: 100%;
    max-width: 100%;                                                    
}
.product-image-container{
  width: 100%;
  max-width: 100%;
  align-self: center;
  height: 100%;
  overflow: hidden;
}
button{
  cursor: pointer;
}







@media screen and (max-width: 768px) {
    #orders-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    
    #orders-table thead {
        display: none;
    }
    
    #orders-table tbody tr {
        display: block;
        border: 1px solid #ddd;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    #orders-table tbody td {
        display: block;
        text-align: left;
        border: none;
        padding: 8px 0;
        position: relative;
        padding-left: 40%;
    }
    
    #orders-table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 8px;
        font-weight: bold;
        color: #333;
        width: 35%;
    }
    
    #orders-table tbody td:nth-child(1):before { content: "Ordine #: "; }
    #orders-table tbody td:nth-child(2):before { content: "Data: "; }
    #orders-table tbody td:nth-child(3):before { content: "Servizio: "; }
    #orders-table tbody td:nth-child(4):before { content: "Prezzo: "; }
    #orders-table tbody td:nth-child(5):before { content: "Azione: "; }
    #orders-table tbody td:nth-child(6):before { content: "Fattura: "; }
    
    #orders-table button {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 5px;
    }
    
    /* Empty state styling */
    #orders-table tbody tr td[colspan="6"] {
        text-align: center;
        padding: 20px;
        display: table-cell !important;
    }
    
    #orders-table tbody tr td[colspan="6"]:before {
        display: none;
    }
    .price-container {
    display: flex;
    justify-content: center;
    }
}

/*shtuar nga eni butni price*/

.price-container-select{
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #080808; 
  gap: 8px;
}

/* Desktop Gallery Styles */
.desktop-gallery {
    display: flex;
    /* gap: 30px; */
    justify-content: space-between;
    width: 100%;
    
}

.main-image-container {
    width: 100%;
    height: 350px;
    max-width: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    
    overflow-x: auto;
    padding: 5px 0;
}
.thumbnail-grid {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}
.thumbnail-grid .thumbnail-item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #ddd;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.thumbnail-grid .thumbnail-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}
.thumbnail-grid .thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #000099;
}
@media (max-width: 480px) {
    .thumbnail-grid .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

/* Force add-modal media preview thumbnails to 90x90 */
#mediaPreview .thumbnail-item {
  width: 90px;
  height: 90px;
}


/* Mobile Carousel - fsheh në desktop */
.mobile-carousel {
    display: none;
}

/* Desktop Gallery - fsheh në mobile */
@media (max-width: 800px) {
    .desktop-gallery {
        display: none;
    }
    
    .mobile-carousel {
        display: block;
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
}

/* footer style - shtuar nga ester */
.mobile-impuls{
  display: none;
}
.desktop-impuls{
  align-self: flex-end;
}

@media(max-width:1024px){
  .mobile-impuls{
    display: flex;
  }
  .desktop-impuls{
    display: none;
  }
}

/* shtuar nga ester per live chat popup */

.contact-popup{
  display: none;
  border: solid 1px #ACACAC;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding:0 35px;
  padding-bottom: 25px;
  margin-bottom: 10px;;
}
.contact-popup.show {
    display: flex;
}

.contact-popup p{
  text-align: end;
}
.contact-popup .close-popup{
  cursor: pointer;
}
.contact-popup-header{
  background-color: #000099;
  padding: 20px 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-left: -35px;
  margin-right: -35px;
}

.contact-popup-header h3{
  margin:0;
}

.contact-popup.small-gap{
  gap:25px;
}

.contact-popup.normal-font{
  font-size:  14px ;
}
.contact-popup .small-font{
  font-size: 12px;
}
.contact-popup a:hover{
  font-weight: bold;
  color:#000099;
}

.contact-popup a:nth-child(2):hover{
  color: rgba(180, 50, 150, 1);
}

.contact-popup a:hover svg{
  fill:#000099;
}

.contact-popup a.small-gap{
  gap:10px;
}

.contact-popup svg, .contact-popup .material-symbols-outlined:not(.close-popup){
  width:30px;
  height:30px;
  font-size:30px;
}

.footer-content a:hover{
  font-weight: bold;
}
.footer-middle{
  align-self: flex-start;
}
.footer-middle h3{
  margin:0;
}
.footer-middle ul{
  padding-left: 0px;
}
.footer-middle li{
  list-style: none;
  text-wrap: nowrap;
}

/* .footer-left{
  width: 40%;
}

.footer-middle{
  width: 15%;
}

.footer-right{
  width: 40%;
} */

/* ndryshime footeri 16.10 */
/* .ratings a{
  width: 25%;
  max-width: 25%;
}
.ratings a img{
  width: 100%;
} */

.flex-start{
  align-self: baseline;
}

.terms-conditions-container , .item-page-text{
  padding-bottom: 20px;
}

.terms-conditions-container .biggest-font{
  font-size:50px;
}