* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #ffffff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

/* NAVBAR */

.custom-navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000 !important;
}

.logo span {
  color: #5eead4;
}

.nav-link {
  color: #000 !important;
  margin-inline: 0.5rem;
}

.nav-link:hover {
  color: #5eead4 !important;
}

/* BUTTONS */

.primary-btn {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  color: #ffffff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
}

.primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* HERO */
.hero-section {
  padding: 5em 0;
}
.hero-section h1 {
  margin-bottom: 1em;
  font-size: 4rem;
}
.hero-section p {
  margin-bottom: 3em;
}
.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-heading p {
  color: #94a3b8;
}
/* Products */
.products-section {
  padding: 5em 0;
  background-color: #f7f7f7;
}
.products-section p {
  margin-bottom: 4em;
}
.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
  margin-bottom: 3em;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrapper {
  height: 260px;
  overflow: hidden;
}

.product-image {
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.2rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
}

.product-status {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.product-status.active {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.product-status.inactive {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

/* FOOTER */

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #000;
}
.site-footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff !important;
}
.site-footer a {
  color: #5eead4;
  transition: all 0.2s !important;
}
.site-footer:hover {
  color: #fff;
}
.site-footer h3 span {
  color: #5eead4;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-wrapper p {
  color: #c6cedb;
}
.footer-wrapper p span {
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 4rem;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
  .site-footer {
    text-align: center !important;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
