:root {
  --ink: #06285c;
  --muted: #526a91;
  --blue: #1d73ee;
  --blue-dark: #0d56d9;
  --cyan: #47c5f6;
  --green: #10c99a;
  --yellow: #ffc107;
  --orange: #ff8a00;
  --purple: #7f43dc;
  --line: #dce7f6;
  --surface: #ffffff;
  --bg: #f7fbff;
  --shadow: 0 20px 45px rgba(21, 72, 140, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at -6% 36%, rgba(120, 183, 255, 0.26) 0 90px, transparent 91px),
    radial-gradient(circle at 96% 14%, rgba(18, 119, 239, 0.11), transparent 280px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #fbfdff 100%);
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  color: #8abdfc;
  font-size: 36px;
  font-weight: 700;
  content: "+";
  opacity: 0.55;
}

body::before {
  top: 78px;
  left: 0;
}

body::after {
  top: 514px;
  left: 36%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.page-shell {
  width: min(1150px, calc(100% - 48px));
  margin: 18px auto 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 30px 0 34px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 36px rgba(34, 71, 122, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: 248px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 22px;
  font-weight: 800;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #061e4b;
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link.active::after {
  position: absolute;
  right: -8px;
  bottom: -29px;
  left: -8px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #d8e7f8;
  border-radius: 999px;
  background: #f7fbff;
}

.language-option {
  min-width: 42px;
  height: 34px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.language-option.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 14px rgba(29, 115, 238, 0.22);
}

.cart-button {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0, 180, 139, 0.25);
  cursor: pointer;
}

.cart-button svg {
  width: 28px;
  height: 28px;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -2px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  border: 3px solid #fff;
  font-size: 12px;
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  padding: 18px;
  pointer-events: none;
  background: rgba(5, 23, 54, 0);
  transition: background 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(5, 23, 54, 0.34);
}

.cart-panel {
  width: min(420px, 100%);
  height: 100%;
  overflow: auto;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(3, 24, 61, 0.26);
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.cart-head p {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 900;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f8fbff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.cart-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed #c6d8ee;
  border-radius: 14px;
  background: #f8fbff;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  padding: 14px;
  border: 1px solid #dce8f7;
  border-radius: 14px;
  background: #fff;
}

.cart-item strong {
  font-size: 15px;
  line-height: 1.35;
}

.cart-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-remove {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ef3e82;
  border: 0;
  border-radius: 50%;
  background: #fff0f5;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.order-form {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.order-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #cfe0f7;
  border-radius: 14px;
  padding: 0 15px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  font-weight: 600;
  outline: 0;
}

.order-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 115, 238, 0.12);
}

.order-button {
  height: 54px;
  margin-top: 4px;
  color: #fff;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0, 180, 139, 0.2);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.form-note {
  min-height: 20px;
  margin-bottom: 0;
  color: #ef3e82;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(420px, 1fr);
  align-items: center;
  min-height: 585px;
  padding: 70px 12px 20px;
}

.catalog-hero {
  padding: 68px 0 8px;
}

.catalog-hero .eyebrow {
  margin-bottom: 18px;
}

.catalog-hero h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #155ff0, #466ef5);
  box-shadow: 0 10px 20px rgba(24, 104, 240, 0.22);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 61px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 510px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.primary-button,
.add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 18px rgba(21, 105, 237, 0.24);
  cursor: pointer;
  font-weight: 900;
}

.primary-button {
  min-width: 178px;
  height: 62px;
  gap: 10px;
  border-radius: 34px;
  background: var(--green);
  font-size: 16px;
}

.primary-button svg {
  width: 22px;
  height: 22px;
}

.quality-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.quality-chip span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(33, 83, 145, 0.16);
}

.quality-chip svg {
  width: 30px;
  height: 30px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: end;
}

.hero-shape {
  position: absolute;
  right: -80px;
  bottom: 10px;
  width: min(720px, 70vw);
  height: 560px;
  border-radius: 44% 0 0 42%;
  background:
    radial-gradient(circle at 76% 24%, rgba(76, 193, 255, 0.68), transparent 110px),
    linear-gradient(135deg, #1c79ef 8%, #0c5fd8 52%, #6dd2ff 100%);
  clip-path: polygon(26% 0, 88% 0, 100% 12%, 100% 100%, 5% 100%, 0 76%, 12% 53%);
  box-shadow: inset 0 -48px 80px rgba(255, 255, 255, 0.38);
}

.hero-visual::after {
  position: absolute;
  top: 64px;
  right: 16px;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(#bbdcff 2px, transparent 3px);
  background-size: 14px 14px;
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  margin: 0 -28px 8px auto;
  filter: drop-shadow(0 30px 28px rgba(10, 86, 176, 0.24));
}

.badge {
  position: absolute;
  z-index: 3;
  display: none;
  width: 108px;
  height: 108px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 18px 28px rgba(16, 75, 150, 0.18);
}

.badge svg {
  width: 32px;
  height: 32px;
  margin-bottom: -8px;
}

.badge-safe {
  top: 190px;
  left: 70px;
  background: var(--green);
}

.badge-delivery {
  right: -18px;
  top: 250px;
  background: var(--yellow);
}

.trust-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -28px;
  padding: 28px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.trust-row article,
.bottom-content article {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-row article + article,
.bottom-content article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.icon,
.mini-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
}

.icon {
  width: 62px;
  height: 62px;
  font-size: 28px;
}

.mini-icon {
  width: 50px;
  height: 50px;
  font-size: 26px;
}

.blue { background: var(--blue); }
.green { background: var(--green); }
.purple { background: var(--purple); }
.orange { background: var(--orange); }
.amber { background: #f9a91a; }
.tag { background: #18bd91; }

.trust-row h3,
.bottom-band h3 {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 900;
}

.trust-row p,
.bottom-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.section-block {
  padding-top: 52px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 900;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}

.products-section .text-button {
  border-color: transparent;
  padding-right: 0;
  background: transparent;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-page-grid {
  grid-template-columns: repeat(4, minmax(190px, 1fr));
}

.category-page-grid .category-card {
  min-height: 176px;
}

.category-text-card {
  display: flex;
  align-items: flex-start;
  padding: 28px 22px 22px;
  isolation: isolate;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-text-card:hover,
.category-text-card.active {
  border-color: rgba(29, 115, 238, 0.42);
  box-shadow: 0 18px 30px rgba(28, 69, 128, 0.12);
  transform: translateY(-2px);
}

.category-text-card::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  z-index: -1;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  content: "";
}

.category-text-card h3 {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.28;
  text-transform: uppercase;
}

.category-card {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px 18px 18px;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
}

.category-card img {
  position: absolute;
  right: 4px;
  bottom: 0;
  max-width: 70%;
  max-height: 128px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-card a,
.category-open {
  position: absolute;
  bottom: 24px;
  left: 22px;
  z-index: 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 0;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.category-card.sky a,
.category-card.sky .category-open,
.category-card.sky {
  --cat-accent: var(--blue);
}

.category-card.lemon a,
.category-card.lemon .category-open,
.category-card.lemon {
  --cat-accent: #f2bd00;
}

.category-card.lavender a,
.category-card.lavender .category-open,
.category-card.lavender {
  --cat-accent: var(--purple);
}

.category-card.rose a,
.category-card.rose .category-open,
.category-card.rose {
  --cat-accent: #ef3e82;
}

.category-card a,
.category-open {
  background: var(--cat-accent, var(--green));
}

.category-products-wrap {
  margin-top: 34px;
}

.category-products {
  display: none;
}

.category-products.active {
  display: block;
}

.category-product-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.admin-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 36px;
}

.admin-card {
  padding: 24px;
  border: 1px solid #dce8f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(28, 69, 128, 0.08);
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-card-head h2 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 900;
}

.admin-form {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.admin-form input,
.admin-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfe0f7;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  font-weight: 600;
  outline: 0;
}

.admin-form input:focus,
.admin-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 115, 238, 0.12);
}

.secondary-button,
.danger-button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.secondary-button {
  padding: 0 16px;
  color: var(--blue);
  background: #eaf3ff;
}

.danger-button {
  color: #ef3e82;
  background: #fff0f5;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-list-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  border: 1px solid #dce8f7;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.admin-list-item strong {
  font-size: 15px;
}

.admin-list-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-body {
  background: #f1f1f1;
}

.admin-body::before,
.admin-body::after {
  display: none;
}

.admin-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  color: #dbe4f4;
  background: #22314a;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #8290a8;
  background: #fff;
  font-weight: 900;
}

.admin-menu {
  display: grid;
}

.admin-menu a {
  padding: 18px 28px;
  color: #dbe4f4;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-menu a.active,
.admin-menu a:hover {
  color: #fff;
  background: #111c2d;
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 0 28px;
  color: #fff;
  background: #f7a12b;
}

.admin-topbar h1 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 800;
}

.admin-menu-button {
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
}

.admin-site-link {
  margin-left: auto;
  padding: 10px 16px;
  color: #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.admin-dashboard {
  padding: 34px;
}

.admin-breadcrumb {
  margin-bottom: 26px;
  color: #555;
  font-weight: 800;
}

.admin-management-card {
  padding: 24px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.admin-management-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-management-head h2 {
  margin-bottom: 0;
  color: #777;
  font-size: 24px;
  font-weight: 500;
}

.admin-management-head input {
  width: min(340px, 100%);
  height: 44px;
  border: 0;
  border-bottom: 1px solid #d6d6d6;
  color: #333;
  background: transparent;
  font: inherit;
  outline: 0;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  color: #222;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #666;
  font-size: 14px;
  font-weight: 800;
}

.admin-table td:first-child {
  min-width: 360px;
  font-size: 18px;
  line-height: 1.35;
}

.admin-table img {
  width: 58px;
  height: 70px;
  object-fit: contain;
}

.status-pill {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  border-radius: 999px;
  background: #4f8d47;
  font-size: 12px;
  font-weight: 900;
}

.table-action {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #222;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.table-action:hover {
  background: #f0f0f0;
}

.table-action.danger {
  color: #111;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  margin-top: 24px;
}

.mint { background: linear-gradient(135deg, #c8f5ec, #e7fff7); }
.sky { background: linear-gradient(135deg, #dbefff, #eef7ff); }
.lemon { background: linear-gradient(135deg, #fff4bd, #fffceb); }
.lavender { background: linear-gradient(135deg, #efe1ff, #f9f3ff); }
.rose { background: linear-gradient(135deg, #ffdce9, #fff0f5); }

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 398px;
  padding: 18px 18px 20px;
  border: 1px solid #dce8f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(28, 69, 128, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(28, 69, 128, 0.12);
}

.product-card img {
  align-self: center;
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 8px;
}

.product-card h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.product-card strong {
  display: block;
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 900;
}

.rating {
  margin-bottom: 20px;
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 1px;
}

.rating span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.add-cart {
  width: 100%;
  height: 48px;
  gap: 8px;
  margin-top: auto;
  border-radius: 12px;
  font-size: 14px;
}

.add-cart.added {
  background: var(--green);
}

.add-cart svg {
  width: 20px;
  height: 20px;
}

.bottom-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: stretch;
  min-height: 200px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 95% 64%, #1d73ee 0 90px, transparent 91px),
    linear-gradient(90deg, #e9fbff 0%, #f4fbff 60%, #d5f4ff 100%);
}

.bottom-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  padding: 42px 26px 42px 32px;
}

.bottom-band img {
  align-self: end;
  width: 240px;
  max-height: 210px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 20px rgba(21, 100, 189, 0.16));
}

@media (max-width: 1000px) {
  .page-shell {
    width: min(100% - 30px, 900px);
  }

  .site-header {
    gap: 18px;
    padding: 16px 20px;
    border-radius: 34px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 205px;
    height: 60px;
  }

  .nav-links {
    gap: 16px;
  }

  .language-option {
    min-width: 38px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: -10px;
  }

  .hero-shape {
    right: -40px;
    width: 100%;
    height: 455px;
  }

  .badge-safe {
    left: 18%;
  }

  .trust-row,
  .bottom-content {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .trust-row article + article,
  .bottom-content article + article {
    border-left: 0;
    padding-left: 0;
  }

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

  .category-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bottom-band {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .bottom-band img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 210px;
    opacity: 0.82;
  }

  .bottom-content {
    padding-right: 190px;
  }
}

@media (max-width: 740px) {
  body::before,
  body::after {
    display: none;
  }

  .page-shell {
    width: min(100% - 22px, 620px);
    margin-top: 10px;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: auto;
    border-radius: 24px;
  }

  .brand-logo {
    width: 185px;
    height: 56px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    gap: 8px;
  }

  .nav-link {
    font-size: 13px;
    gap: 6px;
  }

  .nav-link.active::after {
    bottom: -14px;
  }

  .cart-button {
    width: 52px;
    height: 52px;
  }

  .language-switch {
    justify-self: end;
  }

  .cart-drawer {
    padding: 10px;
  }

  .cart-panel {
    border-radius: 22px;
    padding: 22px;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-shape {
    height: 335px;
    right: -12px;
  }

  .hero-visual img {
    width: 104%;
    margin-right: -20px;
  }

  .badge {
    width: 82px;
    height: 82px;
    font-size: 11px;
  }

  .badge svg {
    width: 24px;
    height: 24px;
  }

  .badge-safe {
    top: 92px;
    left: 22px;
  }

  .badge-delivery {
    top: 122px;
    right: -2px;
  }

  .trust-row {
    margin-top: 10px;
    padding: 24px;
  }

  .category-grid,
  .product-grid,
  .category-page-grid,
  .trust-row,
  .bottom-content {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 150px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card img {
    height: 180px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .text-button {
    flex: 0 0 auto;
    padding: 10px 14px;
  }

  .bottom-content {
    padding: 28px 138px 28px 24px;
  }

  .bottom-band img {
    width: 150px;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: 168px;
    height: 52px;
  }

  .nav-link {
    flex-direction: column;
    font-size: 12px;
  }

  .language-switch {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    order: 2;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .primary-button {
    width: 100%;
  }

  .quality-chip {
    width: 100%;
  }

  .section-heading {
    flex-direction: column;
  }

  .bottom-content {
    padding-right: 24px;
    padding-bottom: 150px;
  }

  .bottom-band img {
    width: 170px;
  }
}
