/* ===== Global Style ===== */
body {
  font-family: "Tahoma", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  background: rgb(255, 255, 255);
  padding: 20px 60px;
  height: 100px;
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .logo img {
  width: 80px;   /* bigger logo */
  height: 80px;
}

header .logo h1 {
  color: black;
  font-size: 28px;
  font-weight: bold;
}

/* Navbar */
nav ul {
  list-style: none;
  display: flex;
  margin-left: 300px;
  gap: 60px; /* more gap between items */
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold; /* bold links */
  transition: color 0.3s ease;
}
nav .search-icon{
  position: absolute;
  margin-right: 300px;
  
}
nav ul li a:hover {
  color: #ffcc00; /* gold hover effect */
 
}

/* Product Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.product-images {
  flex: 1;
  min-width: 350px;
}

.big-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnails img {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnails img:hover {
  border: 2px solid #444;
}

.product-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.product-info h1 {
  font-size: 34px;
  color: #333;
}

.product-info p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 20px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #c0392b;
  margin: 15px 0;
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-block;
  padding: 14px 24px;
  background: #25d366;
  color: white;
  font-size: 18px;
  align-items: center;
  margin-top: 50px;
  margin-right: 160px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
}

/* ===== Footer ===== */
.footer {
  background: #222;
  color: #ddd;
  padding: 60px 80px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3, 
.footer-column h4 {
  color: #ffcc00;
  font-size: 22px;
  margin-bottom: 18px;
}

.footer-column p {
  font-size: 16px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffcc00;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    padding: 20px;
  }

  .big-image {
    max-width: 100%;
  }

  .product-info {
    margin-top: 20px;
  }
}
