:root {
  --primary: #59c7ff;
  --primary-deep: #0b5d87;
  --white: #ffffff;
  --black: #101214;
  --soft-bg: #edf8ff;
  --border-soft: #d6ecfa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 8% 10%, #d6f0ff 0, transparent 38%),
    radial-gradient(circle at 94% 88%, #dbf7ff 0, transparent 34%),
    linear-gradient(160deg, #fafdff 0%, #eff8ff 45%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-text {
  font-family: "Bahnschrift", "Segoe UI Semibold", "Segoe UI", sans-serif;
}

.custom-nav {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--border-soft);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--primary), #2aa8e5);
  color: var(--black);
  font-weight: 800;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav-link {
  color: var(--black);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-deep);
}

.hero-section {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #d4f0ff;
  color: #004e73;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-accent {
  color: #0078b8;
}

.hero-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 20px 35px rgba(27, 91, 128, 0.12);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #24688c;
  font-weight: 700;
}

.section-title {
  font-weight: 800;
}

.search-wrap {
  width: min(100%, 320px);
}

.search-wrap .form-control {
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
}

.product-card {
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 22px rgba(34, 71, 90, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 0.65s forwards;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(31, 92, 122, 0.18);
}

.product-thumb {
  border-radius: 0.8rem;
  height: 170px;
  display: grid;
  place-items: center;
  color: #084b6e;
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(145deg, #d3efff, #f5fcff);
  border: 1px solid #bfe5fb;
}

.product-price {
  font-weight: 800;
  color: #036ea8;
}

.btn-primary {
  background-color: #129be1;
  border-color: #129be1;
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0f88c6;
  border-color: #0f88c6;
}

.bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.bg-shape-1 {
  width: 220px;
  height: 220px;
  top: 70px;
  left: -60px;
  background: rgba(89, 199, 255, 0.58);
  animation: floatOne 8s ease-in-out infinite;
}

.bg-shape-2 {
  width: 170px;
  height: 170px;
  bottom: 45px;
  right: -30px;
  background: rgba(119, 216, 255, 0.65);
  animation: floatTwo 10s ease-in-out infinite;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.py-lg-6 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 767.98px) {
  .py-lg-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-card {
    box-shadow: 0 14px 20px rgba(27, 91, 128, 0.11);
  }
}
