:root {
  --yellow: #facc15;
  --yellow-dark: #eab308;

  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;

  --text-main: #111827;
  --border: var(--gray-300);

  --main-font: "Noto Sans Georgian";;
  --georgian-font:
  
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--text-main);
  font-family: var(--main-font);
}

/* -------navbar-start-------- */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  font-family: var(--main-font);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV GROUPS */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 40px;
}
/* -------navbar-end-------- */

/* ---------- BUTTONS & ICONS ---------- */

button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--main-font);
}

button:hover,
.icon:hover {
  background-color: var(--gray-300);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}


.icon {
  padding: 6px;
  border-radius: 50%;
  display: inline-flex;
}

.icon img {
  width: 24px;
  height: 24px;
}

/* SPECIAL BUTTONS */

.pop-up_2 {
  padding: 8px 22px;
  background-color: rgb(255, 242, 166);
}

.pop-up_2:hover {
  background-color: var(--yellow);
}

.pop-up_4 {
  padding: 8px;
  border-radius: 50%;
}

/* ---------- NAV SCROLL ---------- */

.nav-scroll {
  margin-top: 90px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-scroll ul {
  list-style: none;
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: center;
  padding: 12px 0 24px;
  margin: 0;
  font-size: 14px;
  margin-left: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover{
  color: #ffcc00;
}


.item-T {
  margin-left: 120px;
}

.item-Last {
  margin-right: 30px;
}

/* ---------- SEARCH ---------- */

.search_div {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

input[type="search"] {
  width: 774px;
  height: 70px;
  padding: 0 14px;
  border-radius: 16px;
  border: 2px solid var(--yellow);
  font-size: 14px;
  font-family: var(--main-font);
}

.filter {
  height: 70px;
  padding: 0 22px;
  background-color: rgba(161, 161, 161, 0.137);
  border: 0px;
  border-radius: 16px;
  font-size:14px;
  font-family: var(--main-font);
}

.search {
  height: 70px;
  padding: 0 46px;
  border: 0px;
  border-radius: 16px;
  background-color: var(--yellow);
  font-size:14px;
  font-family:#ffcc00;
  font-family: var(--main-font);
}

.search:hover {
  background-color: var(--yellow-dark);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  input[type="search"] {
    width: 480px;
  }

  .item-T {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {

  .nav-center,
  .pop-up_1,
  .pop-up_3 {
    display: none;
  }

  .nav-scroll ul {
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 16px;
  }

  .search_div {
    flex-direction: column;
  }

  input[type="search"],
  .filter,
  .search {
    width: 90%;
    height: 54px;
  }

  .item-T {
    margin-left: 0;
  }
}

/*------main-started-------*/
main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 140px 20px 40px;
}

/*------carousel-------*/
.carousel {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: -110px;
  scroll-behavior: smooth;
}
.card {
  height: 100px;
  width: 190px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
}
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel::scroll-button(right){
  content: '›';
  background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  margin-left: 10px;
}
.carousel::scroll-button(left){
  content: '‹';
    background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
}
.carousel::scroll-button(right):disabled, .carousel::scroll-button(left):disabled {
  background-color: var(--gray-300);
  color: var(--gray-500);
}

/*------carousel-end-------*/
/*------brand_container-start-------*/
.brand_container {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}
.brand_container .logo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
}
.brand_container .logo img{   
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* Desktop shrink responsiveness */
@media (max-width: 1200px) {
  .brand_container {
    gap: 20px;
    margin-top: 25px;
  }

  .brand_container .logo {
    width: 70px;
    height: 70px;
  }

  .brand_container .logo img {
    width: 45px;
    height: 45px;
    margin-top: 12px;
  }

  .brand_container_names {
    gap: 25px;
    font-size: 13px;
  }

  .p1 {
    width: 90px;
  }
}

@media (max-width: 1000px) {
  .brand_container {
    gap: 16px;
    margin-top: 20px;
  }

  .brand_container .logo {
    width: 60px;
    height: 60px;
  }

  .brand_container .logo img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
  }

  .brand_container_names {
    gap: 20px;
    font-size: 12px;
  }

  .p1 {
    width: 80px;
  }
}

@media (max-width: 800px) {
  .brand_container {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand_container_names {
    gap: 16px;
    font-size: 11px;
  }

  .p1 {
    width: auto;
    min-width: 70px;
  }
}


/* brand names*/
.brand_container_names{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-right: 0px;
  font-size: small;
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--text-main);
}
.p1{
  background-color:var(--white);
  width: 100px;
  height: auto;
  justify-content: center;
  text-align: center;

}
/* brand names end*/
/*------brand_container-end-------*/
.super_vip{
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.super_vip img{
  width: 40px;
  height: 100%;
  border-radius: 16px;
}
/* -------carousel_1---------*/

/*
.carousel {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: -110px;
  scroll-behavior: smooth;
}
*/

.carousel_1{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: 0px;
  scroll-behavior: smooth;
}
.card1{
  height: 230px;
  width: 190px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: none;
  border-radius: 18px;
  border-width: 1px;
  border-style: none;
  border-color: #19191a;
}
.card1 img{
  width: 190px;
  height: 130px;
  display: flex;
  border-radius: 16px;
  margin-top: 20px;
}
.card1_header{
  font-size: 14px;
  font-family: "Noto Sans Georgian";
}
.card1_price{
  font-weight: 700;
  justify-content: start;
  align-items: start;
  margin-right: 120px;
}





/*---------------------------*/
.carousel_1::-webkit-scrollbar {
  display: none;
}

.carousel_1::scroll-button(right){
  content: '›';
  background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  margin-left: 10px;
}
.carousel_1::scroll-button(left){
  content: '‹';
    background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
}
.carousel_1::scroll-button(right):disabled, .carousel_1::scroll-button(left):disabled {
  background-color: var(--gray-300);
  color: var(--gray-500);
}


/* -------carousel_1--end------*/
/* -------container1---------*/
.container1 {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

/* parent must be relative */
.image1 {
  position: relative;
}

.container1 img {
  width: 600px;
  height: auto;
  display: block;
}

/* button overlaps image */
.container1 button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 14px 48px;
  background-color: #333232;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 6px;
  margin-bottom: 2px;
  border-radius: 16px;
  transition: background 0.2s;
}
.container1 button:hover {
  background-color: var(--yellow-dark);
  color: #333232;
}
/* -------container1--end-------*/

/*---------carusel2----start*/
.carousel_2{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: 0px;
  scroll-behavior: smooth;
}
.card2{
  height: 230px;
  width: 190px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: none;
  border-radius: 18px;
  border-width: 1px;
  border-style: none;
  border-color: #19191a;
}
.card2 img{
  width: 190px;
  height: 130px;
  display: flex;
  border-radius: 16px;
  margin-top: 20px;
}
.card2_header{
  font-size: 14px;
  font-family: "Noto Sans Georgian";
}
.card2_price{
  font-weight: 700;
  justify-content: start;
  align-items: start;
  margin-right: 120px;
}





/*---------------------------*/
.carousel_2::-webkit-scrollbar {
  display: none;
}

.carousel_2::scroll-button(right){
  content: '›';
  background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  margin-left: 10px;
}
.carousel_2::scroll-button(left){
  content: '‹';
    background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
}
.carousel_2::scroll-button(right):disabled, .carousel_2::scroll-button(left):disabled {
  background-color: var(--gray-300);
  color: var(--gray-500);
}

.container1 {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

/* parent must be relative */
.image1 {
  position: relative;
}

.container1 img {
  width: 600px;
  height: auto;
  display: block;
}

/*---------carusel2----start*/
.carousel_3{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: 0px;
  scroll-behavior: smooth;
}
.card3{
  height: 230px;
  width: 190px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: none;
  border-radius: 18px;
  border-width: 1px;
  border-style: none;
  border-color: #19191a;
}
.card3 img{
  width: 190px;
  height: 130px;
  display: flex;
  border-radius: 16px;
  margin-top: 20px;
}
.card3_header{
  font-size: 14px;
  font-family: "Noto Sans Georgian";
}
.card3_price{
  font-weight: 700;
  justify-content: start;
  align-items: start;
  margin-right: 120px;
}
/*---------------------------*/
.carousel_3::-webkit-scrollbar {
  display: none;
}

.carousel_3::scroll-button(right){
  content: '›';
  background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  margin-left: 10px;
}
.carousel_3::scroll-button(left){
  content: '‹';
  background-color: var(--gray-500);
  border-width: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
}
.carousel_3::scroll-button(right):disabled, .carousel_3::scroll-button(left):disabled {
  background-color: var(--gray-300);
  color: var(--gray-500);
}

/*---------carusel----end-------------------*//*---------carusel----end-------------------*//*---------carusel----end-------------------*/
/*---------carusel----end-------------------*//*---------carusel----end-------------------*//*---------carusel----end-------------------*/
.container2 {
  width: 100%;
  background-color: #ececec;
  padding: 20px;
  display: flex;
  flex-direction: column; /* Stack rows vertically */
  gap: 20px;
  align-items: center;
}

.mini_container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: nowrap; 
  margin-right: 30px;
}

.card1 {
  width: 190px;
  background: none;
  border-radius: 18px;
  flex-shrink: 0; 
}

.card1 img {
  width: 100%;
  height: 130px;
  border-radius: 16px;
  object-fit: cover;
}

.card1_header {
  font-size: 14px;
  padding: 0 10px;
  margin: 8px 0;
}

.card1_price {
  font-weight: 700;
  padding: 0 10px;
  margin: 8px 0;
}

/*---------container2---end----------------*/
main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 140px 20px 40px;
}

/*---------container3---start----------------*/
.container3{
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;

}

.txt3{
max-width: 1220px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 1030px;
  font-weight: 700;
}
.item3 img{
  max-height: 195px;
}
.item3{
  height: auto;
  width: auto;
  
}
/*---------container3---end----------------*/
/*---------container3_1---start----------------*/
.container3_1{
  max-width: 1220px;
  margin: 0 auto;
  display:flex;
  flex-direction: row;
  gap: 20px;
  font-size: 12px;
  align-items: center;
  color: #6b7280;
}
.container3_1 img{
  width: 120px;
  height: 100%;
  border-radius: 6px;
}

/*---------container3_1---end----------------*/
.line{
  width: 100%;
  height: 1px;
  background-color: #e4e8f1;
}
/*------------footer--start--------------*/
footer.footer {
    background: var(--white);
    color: #000000;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* responsive */
    font-family: var(--main-font);
    max-width: 1220px;
    margin: 0 auto;
}

.footer-col {
    min-width: 180px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
    opacity: 0.8;
    line-height: 2;
    

}

.footer-col ul li:hover {
    opacity: 1;
}
/*------------footer--end--------------*/
/*------------container4----start----------*/
.container4{
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container4 p{
  font-size: small;
}

/*------------container4----end----------*/
/*------------container5----start----------*/

.container5{
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 40px;
  border-width: 5px;
  border: 1px solid rgb(231, 231, 231);
  border-radius: 40px;
}
.container5 img{
  width: 80px;
}

/*------------container5----end----------*/
.lasttxt{
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
  font-size: 11px;
  gap: 550px;
}