@import url('https://fonts.googleapis.com/css?family=Varela+Round');

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');



:root {
  --neon-blue: #00ffff;
  --dark-bg: #121212;
  --grey-color: #555;
  --white: #f5f5f5;
}

* {
  box-sizing: border-box;
  font-family: 'Vazirmatn', sans-serif;
}

body {
  margin: 0;
  padding: 30px;
  background: var(--dark-bg);
  color: var(--white);
}

.sliders-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  direction: rtl;
  margin-top: 50px;
}

.product-viewer {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px var(--neon-blue);
  width: 320px;
  height: 250px;
  flex-shrink: 0;
  direction: ltr;

}


.product-viewer header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  z-index: 999;
}

.product-viewer header ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-viewer header ul li {
  margin-left: 10px;
}

.product-viewer header a {
  color: var(--neon-blue);
  text-decoration: none;
  font-weight: bold;
  
}

.product-viewer_content {

  box-shadow: 0 0 20px rgba(0, 255, 255, 0.352);
  background: #181818;
  overflow: hidden;
  border-radius: 10px;
  position: relative;

}

.content-slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.slider-item {
  min-width: 100%;
  padding: 10px;
  text-align: center;
}

.slider-item img {
  width: 100%;
  border-radius: 10px;
}

.slider-item h3 {
  color: var(--grey-color);
  font-size: 12px;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.slider-item h2 {
  color: var(--neon-blue);
  font-size: 16px;
  margin: 4px 0;
  text-transform: uppercase;
}

.slider-item .price {
  font-weight: bold;
  font-size: 16px;
}

.control-slider {
  text-align: center;
  margin-top: 10px;
}

.control-slider ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.control-slider ul li {
  display: inline-block;
  margin: 0 5px;
}

.control-slider ul li a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-color);
}

.control-slider ul li.active a {
  background: var(--neon-blue);
  box-shadow: 0 0 6px var(--neon-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .sliders-container {
    flex-direction: column;
    align-items: center;
  }

    .product-viewer {
      margin-bottom: 150px;
    }
  
}
@media (max-width: 1092px) {

    .product-viewer {
      margin-bottom: 150px;
    }
  
}


.cta-button {
display: block;
/* margin: 3rem auto 2rem; */
background: transparent;
color: #00f5ff;
border: 2px solid #00f5ff;
padding: 0.2rem 1.5rem;
font-size: 1rem;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 0 15px #00f5ff44;
transition: 0.3s ease-in-out;
}

.cta-button:hover {
background-color: #00f5ff;
color: #000;
box-shadow: 0 0 25px #00f5ff;
}

