/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #edeff0;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #0077cc;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

header nav a {
  color: white;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
}

.categories ul {
  list-style: none;
  margin-top: 1.5rem;
}

.categories li {
  margin-bottom: 1rem;
}

.categories a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
  font-size: 1.2rem;
}

.categories a:hover {
  text-decoration: underline;
}

.product-grid {
 margin-top: 20px;
 margin-bottom: 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h2 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

.product-card ul {
  text-align: left;
  margin: 1rem 0;
}

footer {
  margin-top: 3rem;
  padding: 2rem 0;
  background: #f1f1f1;
  text-align: center;
  font-size: 0.9rem;
}
/* Table of Contents */
.toc {
  margin-top: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.toc li {
  margin: 0;
}

.toc a {
  color: #333; /* Dark gray text */
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: #ff7f50; /* Coral color on hover */
}

/* Comparison Table */
.comparison-table {
  margin-top: 2.5rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.comparison-table th, 
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #f4f4f4;
  font-weight: bold;
}

/* Top Pick Badge */
.badge {
  background: #ff5a00;
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 0 0 10px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.top-pick {
  position: relative;
}
/* Homepage Product Grid */
.homepage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.home-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.home-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.home-card-info {
  padding: 1rem;
}

.home-card-info h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.home-card-info p {
  color: #555;
  font-size: 0.95rem;
}
.product-image-small {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
}
/* Styling for Product Details */
.product-details {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}


.details-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.details-card ul {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}

.details-card li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.details-card li::before {
  content: "⚬"; /* You can change this to any other emoji: 🛠️ 🧰 🎧 etc. */
  position: absolute;
  left: 0;
  top: 0;
}

/* Styling for Related Articles */
.related-articles {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.related-articles h2 {
  margin-bottom: 10px;
}

.related-articles ul {
  list-style-type: none;
  padding: 0;
}

.related-articles li {
  margin-bottom: 10px;
}

.related-articles a {
  color: #0073e6;
  text-decoration: none;
}

.related-articles a:hover {
  text-decoration
}
/* General Product Card Styling */
.product-reviews {
  margin: 50px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge {
  background-color: #ff7f50;
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* Product Image */
.product-image-small {
  width: 180px;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* Product Info */
.product-info h3 {
  font-size: 1.3rem;
  margin: 10px 0;
}

.rating {
  margin: 8px 0;
  font-size: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Fancy List Styling */
.product-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.product-info li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.product-info li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #ff7f50;
  font-size: 1rem;
}
/* Product Details Section Styling */
.product-details {
  margin-top: 30px;
}

.details-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.details-card h3 {
  font-size: 
}
/* Hero Section */
.hero {
  background: url('../images/back.webp') no-repeat center center/cover;
  color: white;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #ff7f50;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ff6330;
}
/* Footer */
.site-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
}

.site-footer p {
  margin: 5px 0;
}

.footer-links a {
  color: #ff7f50;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* Testimonials Section */
.testimonials {
  margin: 60px 0;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-style: italic;
  line-height: 1.5;
}

.testimonial-author {
  margin-top: 15px;
  font-weight: bold;
  color: #ff7f50;
}
.product-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0;
  align-items: center;
}

.product-image-side {
  flex: 1 1 45%;
  text-align: center;
}

.product-image-side img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-info-side {
  flex: 1 1 50%;
}

.product-info-side h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info-side .rating {
  margin-bottom: 10px;
}

.product-info-side .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
  color: #ff7f50;
}

.product-info-side ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-info-side li {
  background: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #333;
  position: relative;
}

.product-info-side li::before {
  content: "✔️";
  margin-right: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-split {
    flex-direction: column;
    text-align: center;
  }

  .product-info-side ul {
    justify-content: center;
  }
}