:root {
  --bg: #d7e1ef;
  --ink: #0e1323;
  --muted: #4e5f7c;
  --glass: rgba(237, 243, 252, 0.55);
  --glass-strong: rgba(237, 243, 252, 0.75);
  --line: rgba(255, 255, 255, 0.45);
  --navy: #05163f;
  --shadow: 0 14px 40px rgba(59, 85, 125, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at 50% 12%, #f2f5fb 0%, var(--bg) 62%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  padding: 16px;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}
.orb-1 {
  width: 240px;
  height: 240px;
  background: rgba(157, 191, 255, 0.35);
  top: -40px;
  left: -40px;
}
.orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(93, 144, 255, 0.22);
  right: -70px;
  top: 140px;
}
.orb-3 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.38);
  left: 35%;
  bottom: -80px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.glass-inner {
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar {
  position: sticky;
  top: 12px;
  z-index: 10;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icons input {
  height: 34px;
  width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 12px;
  outline: none;
  font-size: 12px;
}
.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}

.page-wrap {
  max-width: 1180px;
  margin: 16px auto 0;
  display: grid;
  gap: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.hero-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
}
.hero-text h1 {
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.2;
}
.hero-text p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(165deg, #0a2052, #06143a);
  color: #eef4ff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.section-card {
  padding: 14px;
}
.section-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-section {
  padding: 18px;
}

.home-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-section-head h2 {
  margin-bottom: 4px;
  font-size: 22px;
}

.home-section-head p {
  color: var(--muted);
  font-size: 13px;
}

.section-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.category-grid-home,
.product-grid-home {
  display: grid;
  gap: 12px;
}

.category-grid-home,
.product-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card-home {
  min-height: 110px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card-home:hover,
.product-card-home:hover {
  transform: translateY(-3px);
}

.category-card-home span {
  font-size: 18px;
  font-weight: 800;
}

.category-card-home small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.product-card-home {
  position: relative;
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card-home img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 12px;
}

.product-card-home h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.product-card-home p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.price-row-home {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-row-home strong {
  font-size: 14px;
}

.price-row-home span {
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
}

.offer-badge-home {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: #05163f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.summer-banner {
  position: relative;
  overflow: hidden;
}
.summer-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.banner-text {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 14px;
}
.banner-text h1 {
  font-size: clamp(18px, 2.2vw, 30px);
}

.footer {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.footer-grid h4 {
  margin-bottom: 6px;
  font-size: 13px;
}
.footer-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .nav-icons {
    justify-content: flex-start;
  }
  .home-section-head {
    flex-direction: column;
  }
  .category-grid-home,
  .product-grid-home,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
