*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  padding-top:90px; /* navbar height */
  background:#f4f4f4;
  color:#222;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}







/* HEADER */

.header{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 90px;
  

  background: #0F0F0F;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition: all 0.3s ease;
}

.header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,90,0,.6),
    transparent
  );
}

.header.scrolled{
   background: rgba(10, 10, 10, 0.65); /* NOT solid black */
  backdrop-filter: blur(18px);
}

.header.scrolled nav a{
  color:white;
}

.logo{
  width:55px;
  height:auto;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
  

}

nav a{
   color:white;
  text-shadow:0 2px 6px rgba(0,0,0,.8);
}

.nav-close{
  display:none;
}
.nav-close span{
  position:absolute;
  width:100%;
  height:3px;
  background:white;
  top:50%;
  left:0;
  transition:.3s;
}


.nav-close span:first-child{
  transform:rotate(45deg);
}

.nav-close span:last-child{
  transform:rotate(-45deg);
}

.nav-close:hover span{
  background:#ff6a00;
  transform:scale(1.1) rotate(45deg);
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:white;
}

/* DESKTOP NAV (DEFAULT) */








.nav-list{
  display:flex;
  align-items:center;
  gap:25px;
  list-style:none;

  position:static;   /* ⭐ IMPORTANT */
  height:auto;
  width:auto;
  background:transparent;
 
}

.nav-list li{
  position:relative;
}

.arrow{
  font-size:18px;
  margin-left:-2px;
  transition:transform .3s ease;
}

.dropdown:hover .arrow{
  transform:rotate(180deg);
}

.dropdown-menu{
  position:absolute;
  top:55px;
  left:50%;
  transform:translateX(-50%) translateY(15px);

  min-width:240px;
  padding:12px 0;

  /* GLASS EFFECT */
  background:#151515;
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);

  border:1px solid rgba(255,255,255,0.08);
  border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.45);

  opacity:0;
  visibility:hidden;

  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s;

  z-index:999;
}

.dropdown-menu a {
   color: #EDEDED;   /* softer than pure white */
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 12px 22px;
  line-height: 1.5;
  display: block;
  transition: 0.3s ease;
}


.dropdown-menu a:hover {
    background: rgba(255, 106, 0, 0.12);
  color: #ffffff;
}


.dropdown-menu::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%);

  width:80%;
  height:8px;

  background:linear-gradient(
    to bottom,
    rgba(255,90,0,0.35),
    transparent
  );

  filter:blur(6px);
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu li a{
  display:block;
  padding:12px 22px;

  color:#ffffff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;

  transition:all .25s ease;
}

.dropdown-menu li:hover{
  background:#f37602;
}

.dropdown-menu li a:hover{
  background:rgba(255,90,0,0.15);
  color:#ffffff;
  padding-left:28px;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.dropdown:hover .arrow{
  transform:rotate(180deg);
}

nav a{
   color:white;
  text-decoration:none;
  margin:0 15px;
  position:relative;
  transition:.3s;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#ff6a00;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

nav a:hover{
  color:#ff6a00;
}

.search-box{
  position:relative;
  display:flex;
  align-items:center;
}

.search-box input{
  width:260px;
  padding:12px 45px 12px 18px;

  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,90,0,0.7);
  border-radius:30px;

  color:#ffffff;
  font-size:14px;
  font-weight:500;

  backdrop-filter:blur(10px);

  outline:none;
  transition:all .3s ease;
}

.search-box input::placeholder{
  color:rgba(255,255,255,0.75);
  font-weight:400;
}

.search-box input:focus{
  background:rgba(0,0,0,0.75);
  border-color:#ff5a00;
  box-shadow:0 0 18px rgba(255,90,0,.6);
}

.search-btn{
  position:absolute;
  right:6px;

  width:34px;
  height:34px;

  border-radius:50%;
  border:none;
  background:#ff6a00;
  color:white;

  cursor:pointer;
  transition:.3s ease;

  display:flex;
  align-items:center;
  justify-content:center;
}

.search-btn:hover{
  background:#c04001;
  transform:scale(1.08);
}

.search-icon{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  color:#ff6a00;
}

/* ================= SEARCH SUGGESTIONS ================= */

#suggestions{
  position:absolute;
  top:115%;
  left:0;
  width:100%;

  background:#151515;

  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;

  box-shadow:0 12px 30px rgba(0,0,0,0.45);

  max-height:320px;
  overflow-y:auto;

  display:none;
  z-index:1000;

  padding:6px 0;
}

/* suggestion item */

.suggestion-item{
  display:flex;
  align-items:center;
  gap:12px;

  padding:12px 18px;

  cursor:pointer;

  transition:all .25s ease;
}

/* hover */

.suggestion-item:hover{
  background:#ff6a00
}

/* divider line */

.suggestion-item:not(:last-child){
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* image */

.suggestion-item img{
  width:40px;
  height:40px;
  object-fit:contain;

  background:#111;
  border-radius:6px;

  padding:3px;
}

/* title */

.suggestion-title{
  font-size:14px;
  font-weight:700;
  color:#EDEDED;
  line-height:1.4;
}

/* scrollbar */

#suggestions::-webkit-scrollbar{
  width:6px;
}

#suggestions::-webkit-scrollbar-thumb{
  background:#ff6a00;
  border-radius:6px;
}

#suggestions::-webkit-scrollbar-track{
  background:transparent;
}




/* HERO */


.hero{
  height:100vh;

  background:
    linear-gradient(
      rgba(0,0,0,.60),
      rgba(0,0,0,.35)
    ),
    url("../assets/warco.png");

  background-size:cover;
  background-position:center 5%;
  background-repeat:no-repeat;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-content{
  
  max-width:900px;
  padding:0 20px;
  
 
  
}

/* HERO TEXT */

.hero h1{
  font-size:58px;
  color:#ffffff;
  font-weight:730;
  margin-bottom:10px;

   text-shadow:
    0 4px 25px rgba(0,0,0,.55),
    0 2px 8px rgba(0,0,0,.8);
}

.hero p{
  font-size:22px;
  font-weight: 4450;
  color:#ffffff;
  margin-bottom:205px;
  line-height:1.6;
   text-shadow:
    0 4px 25px rgba(0,0,0,.65),
    0 2px 8px rgba(0,0,0,.8);
  
}
.hero-btn{
   background:#ff6a00;
   position: relative;
   top: -155px; /* ეს აწევს მთლიან ბლოკს */
  border:none;
  padding:16px 40px;
  color:white;
  font-size:16px;
  font-weight:500;
  border-radius:6px;
  text-decoration: none;
  

  box-shadow:
    0 10px 30px rgba(255,106,0,.45);

     transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(255,106,0,.45);

  transition:.3s ease;
}

/* HOVER EFFECT */
.hero-btn:hover{
  background:#c04001;
  transform:translateY(-4px);
  box-shadow:
    0 18px 40px rgba(255,106,0,.6);

}



/* CATEGORIES */

.categories{
  padding:80px 0;
  text-align:center;
}

.cards{
  display:flex;
  gap:30px;
  margin-top:40px;
}

.card{
   flex:1;
  position:relative;
  overflow:hidden;   /* ⭐ required for zoom effect */
  background:white;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:transform .3s ease, box-shadow .3s ease;
}
.card:hover img{
  transform:scale(1.08);
}

.card button{
   position:absolute;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);

  width:220px;              /* ⭐ SAME WIDTH FOR ALL */
  text-align:center;

  background:#ff5a00;
  border:none;
  color:white;
  padding:12px 0;
  font-weight:600;
  cursor:pointer;

  transition:all .3s ease, transform .2s ease;
}
.card:hover button{
  background:#C04001;
}

/* ABOUT */

.stats-section{
  background:
    linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.40)),
    url("../assets/stats-bg.png");

  background-size:cover;
  background-position:center;
  background-attachment:fixed; /* parallax feel */
  color:white;
}

.stats-overlay{
  padding:120px 0;
  text-align:center;
}

.stats-title{
  font-size:36px;
  margin-bottom:15px;
}

.stats-description{
  max-width:700px;
  margin:0 auto 60px;
  color:#ffffff;
}

.stats-grid{
  display:flex;
  justify-content:center;
  gap:80px;
  flex-wrap:wrap;
}

.stat-item{
  text-align:center;
  transition:transform .3s ease;
}

.stat-item:hover{
  transform:translateY(-8px);
}

.stats{
  display:flex;
  justify-content:space-around;
  margin-top:40px;
}

.stat-icon{
  font-size:40px;
  color:#ff6a00;
  margin-bottom:20px;
}

.stat-item h3{
  font-size:48px;
  font-weight:700;
  margin-bottom:10px;
}

.stats h3{
  font-size:40px;
}

/* PRODUCTS */

.products{
  padding:100px 0;
  background:#f5f5f5;
  text-align:center;
}

.section-title{
  font-size:32px;
  margin-bottom:60px;
}

.product-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.product{
  background:white;
  padding:20px;
}

.product img{
  width:100%;
}


.product-card{
  background:white;
  width:320px;
  padding:30px 20px;
  border-radius:10px;

  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:all .3s ease;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  margin-bottom:20px;
}


.product-card h3{
  background:#ff5a00;
  color:white;
  padding:15px;
  font-size:16px;
  font-weight:600;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #ff6a00; /* your brand orange */
  margin-top: 10px;
}


.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 16px;
  margin-right: 8px;
}

.new-price {
  color: #ff6a00;
  font-size: 20px;
  font-weight: 700;
}

/* ================= DETAILS BUTTON ================= */

.details-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  margin-top:12px;
  padding:10px 22px;

  background:#ffffff;
  color:#ff6a00;

  border:2px solid #ff6a00;
  border-radius:30px;

  font-size:14px;
  font-weight:600;
  text-decoration:none;

  cursor:pointer;
  transition:all .3s ease;
}

/* hover */
.details-btn:hover{
  background:#ff6a00;
  color:white;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(255,90,0,.35);
}

/* click effect */
.details-btn:active{
  transform:translateY(0);
  box-shadow:none;
}






/* CONTACT */

.contact{
  position:relative;
  background:url("../assets/shop.png") center/cover no-repeat;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
}


.contact-content{
  text-align:center;
  color:white;
  max-width:700px;
}

.contact-content h2{
  font-size:36px;
  margin-bottom:20px;
}

.contact-content p{
  color:#ddd;
  margin-bottom:40px;
  line-height:1.6;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.contact-overlay{
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  display:flex;
  align-items:center;
  justify-content:center;
  padding:100px 20px;
}

.contact-btn{
  background:#ff5a00;
  padding:16px 35px;
  border-radius:6px;
  color:white;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(255,90,0,.4);
}

.contact-btn:hover{
  background:#c04001;
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(255,90,0,.6);
}

.center{
  display:flex;
  flex-direction:column;
  align-items:center;
}





/* FOOTER */

.footer{
  background:#111;
  color:#bbb;
  text-align:center;
  padding:25px;
  font-size:14px;
}





@media (max-width:768px){

  .header .container{
    justify-content:center;
  }

  .breadcrumb{
    padding:16px 0;
  }

}




@media(max-width:768px){

.stats-grid{
  gap:40px;
}

.stat-item h3{
  font-size:36px;
}

}

@media(max-width:768px){

.nav-list{
  position:fixed;
  top:0;
  right:-100%;
  width:260px;
  height:100vh;
  background:#111;

  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:30px;

  transition:.4s ease;
  z-index:999;
}

.nav-list.active{
  right:0;
}

.hamburger{
  display:flex;
  margin-left: 15px;
}

.search-box{
  display:flex;
  margin-right: -10px;
}




}


@media (max-width: 768px) {

  .nav-list li a{
    font-size: 16px;
  }

}




@media(max-width:768px){

.hero{
  height: 90vh;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.55) 40%,
      rgba(0,0,0,.35) 100%
    ),
    url("../assets/warco.png");

    background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero p{
  font-size:16px;
  line-height:1.6;
  text-shadow:0 3px 8px rgba(0,0,0,0.8);
}

}

.hero h1{
  font-size:28px;
}

.hero p{
  font-size:15px;
}

.hero-btn{
  padding:12px 24px;
  font-size: 14px;
}



@media(max-width:768px){

.cards{
  flex-direction:column;
}

.card img{
  height:300px;
}

}

@media(max-width:768px){

.stats-overlay{
  padding:80px 20px;
}

.stats-title{
  font-size:26px;
}

.stats-description{
  font-size:14px;
}

.stat-icon{
  font-size:30px;
}

}


@media(max-width:768px){

.product-grid{
  flex-direction:column;
  align-items:center;
}

.product-card{
  width:90%;
  max-width:350px;
}

}



@media(max-width:768px){

.contact-content h2{
  font-size:26px;
}

.contact-buttons{
  flex-direction:column;
  gap:15px;
}

.contact-btn{
  width:100%;
  text-align:center;
}

}



@media(max-width:480px){

h1{ font-size:28px; }
h2{ font-size:24px; }
p{ font-size:14px; }

.container{
  width:92%;
}

}

@media(max-width:768px){

  .dropdown-menu{
    position:static;
    transform:none;
    opacity:1;
    visibility:visible;
    display:none;        /* hidden by default */
    background:#1a1a1a;
    box-shadow:none;
    border:none;
    width:100%;
  }

  .dropdown.active .dropdown-menu{
    display:block;       /* show when active */
  }

  .dropdown.active .arrow{
    transform:rotate(180deg);
  }
}


@media(max-width:768px){

  .nav-close{
     opacity:0;
    transform:rotate(90deg);
    transition:.3s ease;
    display:block;
    position:absolute;
    top:25px;
    right:25px;
    width:32px;
    height:32px;
    cursor:pointer;
  }

    .nav-list.active .nav-close{
    opacity:1;
    transform:rotate(0);
  }



}

@media (min-width: 1024px){

.hero h1{
  font-size:55px;
  line-height:1.2;
}

.hero p{
  font-size:25px;
  margin-top:15px;
}

.hero-btn{
  font-size:18px;
  padding:14px 40px;
  background: #ff6a00;
}

}






@media (max-width:768px){

.logo{
  order:1;
}

.search-box{
  order:2;
}

.hamburger{
  order:3;
}



}

















