@charset "UTF-8";
body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  text-align: center;
}

.container, .hero_inner, .product-row {
  margin: 0 auto;
  text-align: center;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}

.header-top h1, .header-top .header-link {
  text-align: center;
}

.product-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  text-align: center;
}

.product-col {
  text-align: center;
}

.product-col img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
  background-color: #f8f9fa;
  padding: 1.5rem;
  text-align: center;
}

footer nav ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
}

footer nav ul li a {
  text-decoration: none;
  color: #000;
}

footer .container {
  text-align: center;
}

footer .container a i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
  }

  .product-row {
    flex-direction: column;
  }

  .product-col img {
    max-width: 90%;
  }

  footer nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
h3 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background-color: #333;
}
.carousel-caption {
  position: absolute !important;
  bottom: 10% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.8em 1.2em;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  width: 80%;
  max-width: 500px;
  box-sizing: border-box;
}

.carousel-caption h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin: 0;
}

.carousel-caption h2 {
  font-size: 2rem;/
  font-weight: bold;
  margin: 0.5em 0;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin: 0.5em 0;
}
.carousel-item img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.carousel-caption h2 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.4em 0;
}

.carousel-caption p {
  font-size: 0.875rem;
  margin: 0.4em 0;
}

.carousel-caption {
  bottom: 3% !important;
  padding: 0.5em 0.8em;
  max-width: 300px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  z-index: 10;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .carousel-caption {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 90%;
    padding: 0.8em 1em;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 10;
  }

  .carousel-caption h2 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}
.product-overlay {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.product-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem;
  width: 90%;
  max-width: 90%;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.product-caption strong {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
}
.about-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.about-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.about-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.8em 1.2em;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}
.about-image {
  text-align: center;
  margin-bottom: 1rem;
}

.about-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
















