/* Header Styles */

#header-container {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background-color: white; 
    z-index: 1000; 
    padding: 0px;
    
}

body {
    padding-top: 130px; 
}



/* Banner Section

.product-banner {
  position: relative;
  width: 100%;
  height: 175px;
  min-height: 50px;
  max-height: 4000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 15px 0;
  border-radius: 12px;
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.18); 
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;

}

.product-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  display: block;
  opacity: 0.75;

}

.product-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 40px 10px;
}

.product-title {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
}

.product-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .product-title {
    font-size: 32px;
  }
  .product-subtitle {
    font-size: 16px;
  }
  .product-content {
    padding: 24px 4px;
  }
}

 */



/* Product Detail Section */

.product-view-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 32px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.product-view-image {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-view-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 18px;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.product-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s;
}
.product-thumbnails img.active,
.product-thumbnails img:hover {
  border: 2px solid #4CAF50;
}
.product-view-details {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-view-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}
.product-view-price {
  font-size: 1.3rem;
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 18px;
}
.product-view-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.7;
}
.product-view-meta {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 18px;
}
.product-view-btns {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.product-view-btns .btn {
  background: #222;
  color: #fff;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.product-view-btns .btn:hover {
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
@media (max-width: 900px) {
  .product-view-container {
    flex-direction: column;
    gap: 24px;
  }
  .product-view-image, .product-view-details {
    max-width: 100%;
  }
}



/* Featured Section */

.featured-section {
  text-align: center;
  max-width: fit-content;
  margin: 0 auto;
  padding: 30px;
}

.heading {
  font-size: 32px;
  padding-bottom: 20px;
}

.description {
  margin: 0 0 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  justify-content: flex-start;
}

.column {
  flex: 0 1 calc(25% - 10px); 
  max-width: calc(25% - 15px);
  margin-bottom: 20px;
  padding: 20px 5px;
  border-radius: 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column img {
  width: 240px;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
  border: 4px solid #222;
}

.column h3 {
  font-size: 20px;
  margin: 10px 0 6px 0;
  color: #222;
}

.column p {
  font-size: 15px;
  color: #555;
  margin: 0 0 10px 0;
  text-align: center;
}

.column .btn {
  margin-top: 10px; 
}

.buttons {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #ffffff;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
  .column {
    flex: 0 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 900px) {
  .columns {
    flex-direction: column;
    gap: 20px;
  }
  .column {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 700px) {
  .column {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .columns {
    gap: 20px;
  }
}
