:root {
  --pink: #ff96c4;
  --soft-pink: #fff0f7;
  --deep-pink: #e63c8f;
  --lavender: #f5e1ff;
  --text-dark: #3a2146;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #0f5457 0%, #187172 20%, #2a9da0 40%, #3db5b8 60%, #1e7b7c 80%, #0d3c3d 100%);
  min-height: 100vh;
}

.bg-pink {
  background: linear-gradient(90deg, #ff7eb6, #ffc6df);
}

.bg-soft-pink {
  background-color: #000000;
}

.btn-pink {
  background-color: #656565;
  border-color: transparent;
  color: #fff;
}

.btn-pink:hover,
.btn-pink:focus {
  background-color: #555555;
  color: #fff;
}

.btn-outline-pink {
  color: #187172;
  border-color: #187172;
}
.btn-outline-pink:hover,
.btn-outline-pink:focus {
  background-color: rgba(24, 113, 114, 0.12);
  color: #187172;
}

.hero-carousel {
  position: relative;
}

.carousel-item {
  height: 500px;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  bottom: 20%;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1.1rem;
}

.text-shadow {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.section-label {
  display: inline-block;
  background: rgba(255, 150, 196, 0.15);
  color: var(--deep-pink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.product-card {
  border: none;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  opacity: 0.7;
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  height: 250px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 1.5rem;
}

.price {
  font-weight: 700;
  color: var(--deep-pink);
}

.hidden-products {
  display: none;
}

.products-page-main {
  padding-top: 0;
}

.products-page .header-bar {
  position: sticky !important;
  top: 0;
}

.products-page [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.owner-bio-image {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 575.98px) {
  .products-page-main {
    padding-top: 0;
  }

  .products-page .product-card:hover {
    opacity: 1;
    transform: none;
  }

  .owner-bio-image {
    max-width: 180px;
  }
}

.info-card,
.contact-card {
  border: 1px solid rgba(229, 60, 143, 0.12);
  color: #000000;
}

.social-links .btn {
  border: 1px solid rgba(229, 60, 143, 0.18);
}

.social-icons {
  gap: 1.5rem;
}

.social-icons a {
  color: #000000;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: #ffffff;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.header-bar {
  background: #ffffff;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.header-bar.scrolled {
  padding: 0.35rem 0;
}

.header-bar .navbar-brand {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .header-bar .navbar-collapse {
    flex-direction: column;
    text-align: center;
  }
  
  .header-bar .navbar-nav {
    flex-direction: row;
    justify-content: center;
    margin-top: 0.5rem;
  }
  
  .header-bar .navbar-toggler {
    display: none;
  }
}

.header-bar .nav-link:hover,
.header-bar .nav-link.active {
  color: #d63384;
}


.logo-image {
  width: 220px;
  height: 150px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
}

.navbar-brand span {
  font-size: 1.2rem;
}

.carousel-caption p {
  font-size: 1rem;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #3e3e3e;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
