body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.top-bar {
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff0000;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff0000;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #ff0000;
}

.navbar {
  background-color: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff0000;
}
.logo img {
  width: 150px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #ff0000;
  border-radius: 4px;
  padding: 0.5rem;
  width: 40%;
}
.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  padding: 0.5rem;
  background: #1a1a1a;
  color: #fff;
}
.search-bar input::placeholder {
  color: #666;
}
.search-bar button {
  background: none;
  border: none;
  color: #ff0000;
  cursor: pointer;
  padding: 0.5rem;
}
.cart-icon {
  color: #ff0000;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff0000;
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
}

.category-nav {
  background-color: #1a1a1a;
  padding: 0.5rem 2rem;
  border-bottom: 2px solid #ff0000;
}
.category-links {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 2rem;
}
.category-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;

  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.category-links a:hover,
.category-links a.active {
  color: #ff0000;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid #ff0000;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  color: #fff;
  padding: 0.5rem 1rem;
  display: block;
}
.dropdown-menu a:hover {
  background-color: #ff0000;
  color: #fff;
}

.site-footer {
  background: #000;
  color: white;
  padding: 50px 20px 20px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}
.footer-left p {
  margin-bottom: 10px;
  color: #ddd;
}
.social-icons span {
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.footer-col {
  flex: 1 1 200px;
}
.footer-col h4 {
  margin-bottom: 15px;
  color: white;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
  color: #ccc;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: red;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #222;
  padding-top: 15px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1500px;
  margin: auto;
}

.product-gallery {
  flex: 1;
  min-width: 300px;
}

.main-image img {
  width: 100%;
  max-width: 600px;
  border: 2px solid #444;
  border-radius: 8px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #ccc;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.thumbnails img:hover {
  border-color: red;
}

.product-details {
  flex: 1;
  margin-left: 20px;
  min-width: 500px;
}

.price {
  color: red;
  font-size: 24px;
  margin: 10px 0;
}

.add-to-cart {
  background: red;
  color: #fff;
  padding: 10px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin: 15px 0;
}

.icons span {
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
  color: #ddd;
}

.tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  flex-wrap: wrap;
  margin-left: 20px;
  color: white;
}

.tabs button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tabs button:hover,
.tabs button.active {
  border-bottom: 2px solid red;
}

.tab-content {
  max-width: 1500px;
  margin: 20px auto;
  padding: 0 20px;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

ul {
  padding-left: 20px;
}
