/* 
_  __    .  ___   ___  __     __
| |/ /   .  |   \ | __| \ \   / /
| ' <    .  | |) || _|   \ \_/ / 
|_|\_\   .  |___/ |___|   \___/  K . D E V */
* {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  box-sizing: border-box;
  
}

.iframe {

}



.banner {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-color: #b3c0ff; */
}
.banner img {
  width: 100%;
  height: auto;
}



.stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
  gap: 2vh;
  margin-top: 2vh;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.stat-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: clamp(1rem, 2vh, 2.5rem) clamp(1.5rem, 3vh, 3.5rem);
  border-radius: 0.8vh;

  background-color: #ffd0006e;
  overflow: hidden;
  box-shadow: 0 0.6vh 1.2vh rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.stat-content {
  display: flex;
  align-items: center;
}

.stat-content i {
  font-size: clamp(1rem, 3vh, 2.5rem);
  color: #ffffff;
  margin-right: 1vh; 
}

.stat-content p {
  font-size: clamp(0.8rem, 2vh, 1.2rem);
  color: #ffffff;
  margin-right: 1vh; 
}

.stat-box h2 {
  font-size: clamp(0.9rem, 2vh, 1.3rem);
  font-weight: bold;
  color: #ffffff;
}


.recommended {
  padding: 1vh 1rem;
}
.recommended h2 {
  font-size: 2vh;
  margin-top: 3vh;
  margin-bottom: 2vh;

}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
  gap: 2vh;
  margin-top: 2vh;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
  
}

.product-card {
  backdrop-filter: blur(0.5vh);
  -webkit-backdrop-filter: blur(0.3vh); 
  border: 0.1vh solid #ffd0006e; 
  border-radius: 1vh;
  overflow: hidden;
  box-shadow: 0 0.6vh 1.2vh rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-0.5vh);
}

.product-card img {
  width: 100%;
  height: 66%;
  display: block;
}

.product-info {
  padding: 1.5vh;
}

.product-info h3 {
  margin: 0 0 0.5vh;
  font-size: 1.8vh;
  color: #ffffff;
}

.product-info p {
  margin: 0 0 1vh;
  font-size: 1.4vh;
  color: #b3c0ff;
}
.btn-details {
  font-size: 1.5vh;
  display: inline-block;
  background-color: #ffd0006e;
  color: white;
  width: 100%;
  padding-top: 0.6vh;
  padding-bottom: 0.8vh;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  margin-top: 10%;
  margin-bottom: 10%;
}

.btn-details:hover {
  background-color: #ffd000b4;
  cursor: pointer;
}


.yellow-icon {
  color: #ffd000c7; 
  font-size: 3vh;
}



::-webkit-scrollbar {
width: 0.5vh; 
}

::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0); 
border-radius: 1vh;
}


.footer {
color: #fff; 
padding: 2.0vh 0; 
text-align: center; 
left: 0;
right: 0;
bottom: 0;
font-family: 'Arial', sans-serif;
font-size: 1.4vh;
}

.footer p {
margin: 0.5vh 0; 
}

.footer p:first-child {
font-size: 1.6vh;
font-weight: bold;
}

.footer p:last-child {
font-size: 1.4vh;
color: #ccc;
}

.announcement-box {
margin-top: 2vh;
border-radius: 1vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: #ffd00018;

} 

.announcement-container {
padding: 1vh 43%;
display: flex;
max-width: 80%;
align-items: center;
overflow: hidden;
position: relative;
font-size: 1.5vh;
}

.h-announcement{
position: relative;
padding: 1vh 5%;
background-color: #ffd0006e;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
font-size: 2vh;
z-index: 1000;
} 

.announcement {

text-transform: uppercase;
letter-spacing: 2px;
position: absolute;
white-space: nowrap;
animation: scroll 20s linear infinite;
color: #ffffff;
z-index: 100;
}

@keyframes scroll {
0% {
    left: 100%;
}
100% {
    left: -100%;
}
}

@media (max-width: 768px) {
  .stat-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-content {
    margin-bottom: 1vh;
  }

  .product-info h3,
  .product-info p,
  .btn-details {
    font-size: 1.2vh;
  }

  .announcement-container {
    font-size: 1.2vh;
  }

  .h-announcement {
    font-size: 1.4vh;
  }
}
