html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(160deg, #ffe6f2 0%, #f8f9fa 35%, #e8f4fc 70%, #e3f3ff 100%);
  background-attachment: fixed;
  color: #212529;
}

body > main {
  flex: 1 0 auto;
}

.navbar-blur {
  background: rgba(33, 37, 41, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
}

.brand-accent {
  font-family: "Marck Script", cursive;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: #ffe8f1 !important;
}

.brand-accent:hover {
  color: #ffffff !important;
}

.brand-accent:hover .navbar-logo {
  opacity: 1;
}

.navbar-logo {
  flex-shrink: 0;
  opacity: 1;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px;
}

.fade-in {
  animation: fadeInSoft 0.7s ease-out;
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.95), rgba(227, 243, 255, 0.9));
  box-shadow: 0 18px 45px rgba(190, 24, 93, 0.16);
  position: relative;
  overflow: hidden;
}

.hero .row {
  position: relative;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.65;
}

.hero::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #ff8fb3, transparent 60%);
  top: -40px;
  right: 5%;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #7dd3fc, transparent 65%);
  bottom: -80px;
  left: -40px;
}

.hero-title {
  font-family: "Marck Script", cursive;
  font-size: 3rem;
  color: #be123c;
  text-shadow: 0 10px 25px rgba(190, 18, 60, 0.25);
}

.hero-subtitle {
  font-size: 1.05rem;
}

.hero-badge {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  max-width: 260px;
  margin-left: auto;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-main {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hero-badge-sub {
  font-size: 0.9rem;
  color: #e5e7eb;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #6b7280;
}

.catalog-grid .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.catalog-grid .card-link:hover {
  color: inherit;
}

.catalog-grid .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    translate 0.18s ease-out;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.catalog-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.card img {
  object-fit: cover;
  height: 220px;
  transform: scale(1.01);
  transition: transform 0.25s ease-out;
}

.catalog-grid .card:hover img {
  transform: scale(1.05);
}

.btn-hero {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border: none;
  color: #fff;
  padding-inline: 2rem;
  padding-block: 0.5rem 0.6rem;
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    filter 0.16s ease-out;
  text-decoration: none;
  text-align: center;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.5);
  filter: brightness(1.03);
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.45);
}

.btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.4);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.5);
}

.footer-soft {
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(8px);
}

textarea.form-control {
  min-height: 80px;
}

.product-highlight {
  border-radius: 18px;
  padding: 1rem 1.25rem;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.15);
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #16a34a;
}

.benefit-pill {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
}

.benefit-title {
  display: block;
  font-weight: 600;
  color: #111827;
}

.benefit-sub {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.order-card {
  border-radius: 18px;
  border: none;
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.35);
}

.order-card .form-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.order-card .form-control {
  border-radius: 12px;
  border-color: #e5e7eb;
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
}

.order-card .form-control:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.order-success {
  max-width: 540px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.3);
}

.order-success-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #bbf7d0 0, #22c55e 55%, #16a34a 100%);
  position: relative;
}

.order-success-icon::after {
  content: "";
  position: absolute;
  inset: 18px 14px 14px 18px;
  border: 3px solid #ecfdf3;
  border-top: 0;
  border-right: 0;
  transform: rotate(-35deg);
}

.info-strip {
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.25);
}

.info-pill {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(249, 250, 251, 0.95);
}

.info-pill-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.15rem;
}

.info-pill-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #374151;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  transition: background 0.15s ease-out, color 0.15s ease-out,
    box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.category-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.3);
}

.category-pill.active {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.4);
}

.about-section .about-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 28px rgba(148, 163, 184, 0.3);
  height: 100%;
}

.about-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #111827;
}

.faq-section .accordion-button {
  font-size: 0.95rem;
}

.faq-section .accordion-body {
  background: rgba(249, 250, 251, 0.9);
}

.price-filter .form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.price-filter .form-control {
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
}

.price-slider-wrap {
  max-width: 320px;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(148, 163, 184, 0.2);
}

.price-slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-slider-row .form-range {
  width: 100%;
}

.price-range-value {
  font-weight: 600;
  color: #374151 !important;
}

