body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0B0E2B;
  color: white;
  line-height: 1.6;
}

header {
  background-color: white;
  color: black;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #14173d;
  border: 1px solid #3B82F6;
  border-radius: 8px;
  color: #fff;
}
.comparison-table th, .comparison-table td {
  padding: 12px;
  border: 1px solid #3B82F6;
  text-align: left;
}
.comparison-table th {
  background-color: #1f224f;
  color: #3B82F6;
}

.gear-block {
  background-color: #14173d;
  border: 1px solid #3B82F6;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}
.gear-block h4 {
  font-size: 20px;
  color: #3B82F6;
  margin-bottom: 10px;
}
.gear-block p {
  font-size: 15px;
  margin: 6px 0;
  color: #eee;
}
.gear-img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  margin: 10px 0;
  object-fit: contain;
}
.gear-block a {
  color: #00d4ff;
  font-weight: bold;
  text-decoration: none;
}
.gear-block a:hover {
  text-decoration: underline;
}

.pros-cons {
  display: flex;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.pros-cons div {
  flex: 1 1 45%;
  background-color: #1f224f;
  padding: 18px;
  border-radius: 8px;
}
.pros-cons ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #eee;
}

.discount {
  color: #00ff7f;
  font-weight: bold;
}


header h1 {
  font-size: 24px;
  font-weight: bold;
}

header .highlight {
  color: #3B82F6;
}

nav a {
  margin-left: 20px;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #3B82F6;
}

.main-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  gap: 20px;
}

.content {
  flex: 1 1 65%;
  min-width: 300px;
}

.sidebar {
  flex: 0 0 30%;
  min-width: 250px;
  background: #14173d;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
}

.sidebar h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #3B82F6;
}
.sidebar h3:hover{
    color: orange;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.sidebar a:hover {
  color: orange;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  margin-top: 40px;
  color: white;
}

.meta {
  color: #ccc;
  font-size: 15px;
}

.blue {
  color: #3B82F6;
}

.featured-img, .product-img {
  width: 50%;
  border-radius: 12px;
  margin: 20px 0;
  max-height: 400px;
  object-fit: cover;
}

blockquote {
  border-left: 4px solid #3B82F6;
  padding-left: 20px;
  font-style: italic;
  color: #aaa;
  margin: 30px 0;
}

.tags {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
  color: #3B82F6;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.share-links a {
  margin-left: 20px;
  color: #3B82F6;
  text-decoration: none;
}

.share-links a:hover {
  text-decoration: underline;
}

/* Carousel */
.related-carousel {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.related-carousel h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #3B82F6;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-item {
  flex: 0 0 200px;
  background: #1a1d4e;
  border-radius: 10px;
  min-width: 180px;
  padding: 10px;
  scroll-snap-align: start;
  text-align: center;
  color: white;
  transition: transform 0.3s;
}
.carousel-item:hover{
    transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 255, 180, 0.2);
  filter: brightness(1.1);
}

.carousel-item img {
  width: 100%;
  border-radius: 8px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}

footer {
  background-color: #0B0E2B;
  color: #999;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 900px) {
  .main-wrapper {
    flex-direction: column;
  }

  .content {
    padding-right: 0;
  }
  .sidebar{
    margin-top: 30px;
  }

  .carousel {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 28px;
  }

  .carousel-item {
    min-width: 150px;
  }

  .sidebar {
    margin-top: 30px;
  }
}