:root {
  --brand-red: #f23d3d;
  --brand-red-dark: #c91f2d;
  --brand-navy: #16233b;
  --brand-blue: #2356b8;
  --brand-teal: #0aa6a6;
  --brand-teal-dark: #087b82;
  --brand-gold: #f5b942;
  --ink: #182033;
  --muted: #667085;
  --soft: #f5f8fb;
  --surface: #ffffff;
  --line: #d9e2ec;
  --success: #14865f;
  --danger: #cc2d3a;
  --shadow: 0 18px 45px rgba(22, 35, 59, 0.12);
  --shadow-soft: 0 10px 24px rgba(22, 35, 59, 0.08);
  --radius: 8px;
  --container: 1280px;
  --header-height: 156px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  letter-spacing: 0;
}

html.menu-open {
  height: 100%;
  overflow: hidden;
}

body.menu-open {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.category-filter-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.page-main {
  min-height: 60vh;
}

.page-main,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 40px 0;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2,
.section-title h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.section-title p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.section-title.centered {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-title.centered p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-red-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--brand-navy);
  background: #fff;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease;
}

.btn svg,
.icon-btn svg,
.nav-action svg,
.benefit svg,
.feature-icon svg,
.contact-line svg,
.account-menu svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-whatsapp {
  color: #fff;
  border-color: #20c76a;
  background: #20c76a;
  gap: 9px;
}

.btn-whatsapp:hover {
  color: #fff;
  background: #18a957;
}

.btn-whatsapp .whatsapp-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  fill: currentColor;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.detail-actions .btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.detail-actions .btn svg,
.detail-actions .btn .whatsapp-mark {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.btn-secondary {
  color: #fff;
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.btn-light {
  border-color: rgba(10, 166, 166, 0.18);
  color: var(--brand-teal-dark);
  background: #eefafa;
}

.btn-teal {
  color: #fff;
  background: var(--brand-teal);
  border-color: var(--brand-teal);
}

.btn-sm {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--brand-navy);
  transition: background 160ms ease, color 160ms ease, border 160ms ease, transform 160ms ease;
}

.icon-btn:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
  transform: translateY(-1px);
}

.announcement-bar {
  --announcement-bg: #ffbf00;
  --announcement-color: #111;
  --announcement-font-size: 14px;
  --announcement-font-weight: 700;
  background: var(--announcement-bg);
  color: var(--announcement-color);
}

.announcement-bar[hidden] {
  display: none;
}

.announcement-inner {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 44px;
  text-align: center;
}

.announcement-bar.is-not-closable .announcement-inner {
  padding-right: 18px;
  padding-left: 18px;
}

.announcement-content {
  min-width: 0;
  font-size: var(--announcement-font-size);
  font-weight: var(--announcement-font-weight);
  line-height: 1.35;
}

.announcement-content a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.announcement-close {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.announcement-close svg,
.announcement-close i {
  width: 12px;
  height: 12px;
  stroke-width: 1.8;
}

.topbar {
  background: var(--topbar-bg, #10233d);
  color: var(--topbar-text, #fff);
  font-size: var(--topbar-font-size, 13px);
  font-weight: var(--topbar-font-weight, 600);
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links,
.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-links a,
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--topbar-text, #fff) 88%, transparent);
  line-height: 1;
  letter-spacing: 0;
}

.topbar-links a:hover,
.topbar-contact a:hover {
  color: var(--topbar-text, #fff);
}

.topbar-contact {
  justify-content: flex-end;
}

.topbar-links svg,
.topbar-contact svg,
.topbar-links i.fa,
.topbar-contact i.fa {
  width: 15px;
  height: 15px;
  color: var(--topbar-icon, #d8ad42);
  stroke-width: 2;
}

.topbar-links i.fa,
.topbar-contact i.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: calc(-1 * var(--site-menu-sticky-offset, 129px));
  z-index: 130;
  background: #fff;
  border-bottom: 1px solid rgba(217, 226, 236, 0.7);
}

.header-main {
  min-height: 94px;
  display: grid;
  grid-template-columns: 240px minmax(300px, 452px) 430px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 158px;
  height: auto;
}

.brand-text {
  display: none;
  gap: 2px;
}

.brand-name {
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 19px;
  line-height: 1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid #dce7f1;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  overflow: visible;
  box-shadow: none;
  z-index: 35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-form:focus-within {
  border-color: rgba(10, 166, 166, 0.42);
  background: #fff;
  box-shadow: none;
}

.search-leading-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: #8a98aa;
  pointer-events: none;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 74px 0 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.search-form input::placeholder {
  color: #738198;
  font-weight: 500;
}

.search-form button {
  position: absolute;
  right: 6px;
  width: 52px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6633, #ec1f3f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.search-form button:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.search-form svg {
  width: 18px;
  height: 18px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(22, 35, 59, 0.14);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestion-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  transition: background 160ms ease;
}

.search-suggestion-item:hover {
  background: #f6fafc;
}

.search-suggestion-image {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.search-suggestion-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-suggestion-text {
  min-width: 0;
}

.search-suggestion-text strong,
.search-suggestion-text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion-text strong {
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 500;
}

.search-suggestion-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.search-suggestion-item b {
  color: var(--brand-red-dark);
  font-size: 14px;
  white-space: nowrap;
}

.search-suggestion-empty {
  padding: 14px 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.search-suggestion-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 6px;
  border-radius: 8px;
  background: #eefafa;
  color: var(--brand-teal-dark);
  font-weight: 900;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-action {
  position: relative;
  min-width: 78px;
  height: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 650;
  border: 1px solid transparent;
}

.nav-action svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}

.notify-action svg {
  color: #e51d2d;
}

.track-action svg {
  color: #2356b8;
}

.user-action svg {
  color: #111827;
}

.cart-action svg {
  color: #d8a32e;
}

.nav-action:hover {
  background: #fafafa;
}

.badge {
  position: absolute;
  top: 3px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.badge.red {
  background: #ff0f24;
}

.badge.gold {
  color: #fff;
  background: #d8a32e;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.site-nav {
  border-top: 0;
  background: #fff;
  box-shadow: 0 8px 18px rgba(22, 35, 59, 0.06);
}

.mobile-nav-head {
  display: none;
}

.nav-inner {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 30px);
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-symbol {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.4;
  filter: none;
  text-shadow: none;
}

.nav-symbol.red {
  color: var(--brand-red);
}

.nav-symbol.blue {
  color: var(--brand-blue);
}

.nav-symbol.green {
  color: #28a745;
}

.nav-symbol.gold {
  color: #d48d13;
}

.nav-symbol.teal {
  color: var(--brand-teal-dark);
}

.nav-symbol.cyan {
  color: #0891b2;
}

.nav-menu-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

.nav-menu-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-menu-icon-fa {
  color: currentColor;
  font-size: 15px;
  line-height: 1;
}

.nav-link:hover,
.nav-link.is-active {
  color: #d48d13;
  background: transparent;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 30;
  width: 278px;
  overflow: visible;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(22, 35, 59, 0.16);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-flyout-item {
  position: relative;
}

.nav-dropdown a,
.nav-flyout a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
}

.nav-dropdown a b,
.nav-flyout a b {
  color: var(--brand-teal-dark);
  font-size: 18px;
  line-height: 1;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active,
.nav-flyout a:hover,
.nav-flyout a.is-active {
  color: var(--brand-red);
  background: #fff2f2;
}

.nav-flyout {
  position: absolute;
  top: -10px;
  left: calc(100% - 1px);
  z-index: 35;
  width: 278px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(22, 35, 59, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.nav-flyout-item:hover > .nav-flyout,
.nav-flyout-item:focus-within > .nav-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-item:nth-last-child(-n + 2) .nav-flyout {
  left: auto;
  right: calc(100% - 1px);
  transform: translateX(-8px);
}

.nav-item:nth-last-child(-n + 2) .nav-flyout-item:hover > .nav-flyout,
.nav-item:nth-last-child(-n + 2) .nav-flyout-item:focus-within > .nav-flyout {
  transform: translateX(0);
}

.nav-promo,
.nav-contact-actions {
  display: none;
}

.home-slider {
  width: 100%;
  background: var(--soft);
}

.slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1905 / 530;
  overflow: hidden;
  background: #edf2f7;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slider-slide picture,
.slider-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.slider-slide img {
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 6px rgba(22, 35, 59, 0.22);
  transition: width 160ms ease, background 160ms ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--brand-red);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 26, 45, 0.9) 0%, rgba(13, 26, 45, 0.72) 40%, rgba(13, 26, 45, 0.2) 74%),
    url("../img/hero-red-cherry-shrimp.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 56px 0 92px;
}

.hero .eyebrow {
  color: #ffd3d3;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  max-width: 740px;
}

.hero p {
  margin: 0 0 28px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
  max-width: 620px;
}

.hero-badge {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border 160ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--category-color, var(--brand-red)) 20%, transparent);
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--category-color, var(--brand-red)) 55%, var(--line));
}

.category-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--category-color, var(--brand-red));
}

.category-icon svg {
  width: 22px;
  height: 22px;
}

.category-card strong {
  display: block;
  margin-top: 14px;
  color: var(--brand-navy);
  font-size: 16px;
  font-weight: 500;
}

.category-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.section.soft .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.account-favorites-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-showcase-section {
  padding-top: 64px;
}

.brand-showcase-section .container {
  position: relative;
}

.brand-showcase-title {
  padding-right: 108px;
  margin-bottom: 18px;
}

.home-brand-carousel {
  position: relative;
}

.home-brand-window {
  min-width: 0;
  overflow: hidden;
}

.brand-carousel-controls {
  position: absolute;
  right: 0;
  top: -92px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-brand-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 98px) / 8);
  grid-template-columns: none;
  gap: 14px;
  transition: transform 260ms ease;
  will-change: transform;
}

.brand-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 35, 59, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, color 160ms ease, background 160ms ease;
}

.brand-carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 166, 0.35);
  color: var(--brand-teal-dark);
}

.brand-carousel-btn:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.brand-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.home-brand-card {
  min-height: 92px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 35, 59, 0.06);
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease;
}

.home-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 166, 166, 0.35);
  box-shadow: var(--shadow-soft);
}

.home-brand-card img {
  width: 100%;
  max-width: 132px;
  height: 58px;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.home-brand-card strong {
  max-width: 100%;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-brand-fallback {
  display: grid;
  place-items: center;
  width: 74px;
  height: 46px;
  border-radius: 8px;
  color: var(--brand-teal-dark);
  background: #eefafa;
  font-size: 20px;
  font-weight: 900;
}

.product-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(242, 61, 61, 0.38);
}

.product-media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  min-width: 64px;
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #f51f3f, #d8142f);
  box-shadow: 0 12px 28px rgba(216, 20, 47, 0.28);
  text-align: center;
  text-transform: uppercase;
}

.discount-badge strong,
.discount-badge em {
  display: block;
  line-height: 1;
}

.discount-badge strong {
  font-size: 20px;
  font-weight: 950;
}

.discount-badge em {
  margin-top: 3px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.product-card:nth-child(2n) .product-media {
  background-position: right center;
}

.product-card:nth-child(3n) .product-media {
  background-position: center bottom;
}

.product-card:nth-child(4n) .product-media {
  background-position: 65% 42%;
}

.home-product-card .product-media {
  background: #f7fafc;
}

.home-product-card .product-body {
  min-width: 0;
  grid-template-rows: auto minmax(48px, auto) auto auto;
  gap: 10px;
  padding: 14px;
}

.home-product-card .product-brand,
.home-product-card .product-title,
.home-product-card .price-row,
.home-product-card .product-actions {
  min-width: 0;
}

.home-product-card .product-brand {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-product-card .product-title {
  font-size: 16px;
  line-height: 1.28;
}

.home-product-card .product-title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-card .price-row {
  justify-content: flex-start;
}

.home-product-card .price {
  font-size: 18px;
  font-weight: 720;
  line-height: 1.12;
}

.home-product-card .product-actions {
  grid-template-columns: 1fr;
}

.home-product-card .product-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 36px;
  padding-inline: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.home-product-card .product-actions .btn:hover {
  transform: none;
  box-shadow: none;
}

.home-product-card .product-actions .icon-btn {
  display: none;
}

.home-product-card .product-fav {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(22, 35, 59, 0.08);
}

.home-product-card .product-fav svg {
  width: 16px;
  height: 16px;
}

.product-labels {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.label {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-red);
  font-size: 11px;
  font-weight: 900;
}

.label.teal {
  background: var(--brand-teal);
}

.label.dark {
  background: var(--brand-navy);
}

.label.gold {
  color: var(--brand-navy);
  background: var(--brand-gold);
}

.product-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(22, 35, 59, 0.08);
}

.product-fav svg {
  width: 16px;
  height: 16px;
}

.product-fav.is-active {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.product-fav.is-active svg {
  fill: currentColor;
}

.product-body {
  padding: 15px;
  display: grid;
  gap: 10px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d99219;
  font-size: 13px;
  font-weight: 800;
}

.rating svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.product-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  font-size: 12px;
  font-weight: 900;
}

.product-brand:hover {
  color: var(--brand-red-dark);
}

.product-title {
  margin: 0;
  color: var(--brand-navy);
  font-size: 17px;
  line-height: 1.28;
}

.product-title a:hover {
  color: var(--brand-red-dark);
}

.product-desc {
  margin: 0;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--brand-red-dark);
  font-size: 22px;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}

.discount-price-box {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.discount-price-box .price {
  line-height: 1.05;
}

.saving {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
}

.stock {
  color: var(--success);
  font-size: 12px;
  font-weight: 850;
}

.catalog-card .product-body {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
}

.catalog-card .product-category {
  max-width: 100%;
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card h3 {
  margin: 0;
  min-width: 0;
  min-height: 42px;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.catalog-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card .price-row {
  justify-content: flex-start;
  min-height: 28px;
}

.catalog-card .price {
  font-size: 18px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.12;
}

.catalog-card .old-price {
  font-size: 12px;
}

.catalog-card .saving {
  font-size: 11px;
  font-weight: 600;
}

.catalog-card .product-actions {
  margin-top: auto;
  padding-top: 4px;
  min-width: 0;
}

.catalog-card .product-actions .btn {
  width: 100%;
  min-height: 32px;
  padding-inline: 9px;
  border-radius: 8px;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.1;
  box-shadow: none;
}

.catalog-card .product-actions .btn:hover {
  transform: none;
  box-shadow: none;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.home-testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.home-testimonials::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 50%;
  width: min(620px, 70vw);
  height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 166, 166, 0.08);
  filter: blur(42px);
  pointer-events: none;
}

.home-testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-testimonials .container {
  position: relative;
}

.home-testimonials-title {
  padding-right: 112px;
}

.home-testimonial-carousel {
  position: relative;
}

.home-testimonial-window {
  min-width: 0;
  overflow: hidden;
}

.home-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-template-columns: none;
  gap: 24px;
  transition: transform 260ms ease;
  will-change: transform;
}

.testimonial-carousel-controls {
  position: absolute;
  right: 0;
  top: -88px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.testimonial-carousel-controls.is-hidden {
  display: none;
}

.testimonial-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(22, 35, 59, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, color 160ms ease, background 160ms ease;
}

.testimonial-carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 166, 0.35);
  color: var(--brand-teal-dark);
}

.testimonial-carousel-btn:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.testimonial-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.home-testimonial-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 330px;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(22, 35, 59, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 166, 166, 0.32);
  box-shadow: 0 24px 54px rgba(22, 35, 59, 0.11);
}

.home-testimonial-avatar {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  background: #eefafa;
  box-shadow: inset 0 0 0 1px rgba(10, 166, 166, 0.12);
}

.home-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonial-avatar strong {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand-teal-dark);
  font-size: 34px;
  font-weight: 760;
}

.home-testimonial-card > span {
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.home-testimonial-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.2;
}

.home-testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.home-testimonial-stars {
  color: #f8a700;
  font-size: 18px;
  letter-spacing: 1px;
}

.promo-band {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 166, 166, 0.34), transparent 32%),
    linear-gradient(105deg, rgba(22, 35, 59, 0.96), rgba(35, 86, 184, 0.76)),
    url("../img/hero-red-cherry-shrimp.jpg") right center / cover no-repeat;
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.promo-band h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
}

.promo-band p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  max-width: 640px;
}

.promo-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.promo-panel strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.promo-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 360px) auto;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.promo-newsletter input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  outline: 0;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.promo-newsletter input::placeholder {
  color: #6c7a90;
}

.promo-newsletter .btn {
  min-height: 50px;
}

.newsletter-message {
  min-height: 22px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.newsletter-message.is-error {
  color: #ffd8dd;
}

.promo-checks {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.promo-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.promo-checks svg {
  width: 18px;
  height: 18px;
  color: #75f0df;
  stroke-width: 2.4;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.benefit svg {
  flex: 0 0 auto;
  color: var(--brand-teal);
}

.benefit strong {
  display: block;
  color: var(--brand-navy);
}

.benefit span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.panel.pad {
  padding: 24px;
}

.panel h2,
.panel h3 {
  margin: 0 0 12px;
  color: var(--brand-navy);
}

.panel p {
  color: var(--muted);
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--brand-red-dark);
  font-size: 30px;
}

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

.breadcrumb {
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--brand-navy);
  font-weight: 800;
}

.page-hero {
  padding: 46px 0;
  color: #fff;
  background:
    linear-gradient(95deg, rgba(22, 35, 59, 0.94), rgba(10, 166, 166, 0.72)),
    url("../img/hero-red-cherry-shrimp.jpg") right center / cover no-repeat;
}

.page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.page-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.category-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.category-sidebar {
  position: static;
  max-height: none;
  overflow: visible;
  display: grid;
  gap: 14px;
}

.category-mobile-filter-bar,
.category-sheet-head {
  display: none;
}

.category-sidebar-panel,
.category-filter-form {
  padding: 20px;
  border: 1px solid #d5e0ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 35, 59, 0.1);
}

.category-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef3f8;
}

.category-sidebar-head h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 20px;
  letter-spacing: 0;
}

.category-sidebar-head a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  font-size: 12px;
  font-weight: 900;
}

.category-sidebar-tree {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-sidebar-tree .category-sidebar-tree {
  display: none;
  margin: 7px 0 2px 9px;
  padding: 2px 0 2px 14px;
  border-left: 1px solid #dfe8f1;
}

.category-sidebar-tree li.is-open > .category-sidebar-tree {
  display: grid;
}

.category-sidebar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.category-sidebar-tree a {
  min-height: 42px;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-sidebar-tree a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-sidebar-tree .depth-1 a,
.category-sidebar-tree .depth-2 a,
.category-sidebar-tree .depth-3 a {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #24324a;
}

.category-sidebar-tree a:hover,
.category-sidebar-tree .is-active > .category-sidebar-row > a {
  border-color: rgba(10, 166, 166, 0.18);
  color: var(--brand-teal-dark);
  background: #f4fbfb;
}

.category-sidebar-tree .is-active > .category-sidebar-row > a {
  font-weight: 500;
  box-shadow: inset 2px 0 0 var(--brand-teal), 0 6px 14px rgba(10, 166, 166, 0.06);
}

.category-sidebar-tree .is-parent > .category-sidebar-row > a {
  font-weight: 500;
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  border-color: rgba(10, 166, 166, 0.2);
}

.category-sidebar-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(22, 35, 59, 0.06);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.category-sidebar-toggle:hover,
.category-sidebar-tree li.is-open > .category-sidebar-row .category-sidebar-toggle {
  border-color: rgba(10, 166, 166, 0.34);
  background: #f1fcfc;
}

.category-sidebar-toggle span {
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  border-right: 2px solid var(--brand-navy);
  border-bottom: 2px solid var(--brand-navy);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 160ms ease;
}

.category-sidebar-tree li.is-open > .category-sidebar-row .category-sidebar-toggle span {
  transform: rotate(225deg) translate(-1px, -1px);
}

.category-results {
  min-width: 0;
}

.category-result-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-result-bar strong {
  color: var(--brand-navy);
}

.category-result-bar span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.catalog-pagination a,
.catalog-pagination strong,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.catalog-pagination a:hover {
  border-color: rgba(10, 166, 166, 0.38);
  color: var(--brand-teal);
  box-shadow: var(--shadow-soft);
}

.catalog-pagination strong {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
}

.catalog-pagination span {
  min-width: 20px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 2px;
}

.filter-panel {
  position: static;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.filter-panel h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
}

.filter-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.filter-group strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 14px;
}

.category-filter-form .filter-group {
  padding: 15px 0;
}

.category-filter-form .filter-group:first-child {
  padding-top: 0;
}

.category-filter-form .filter-group:last-of-type {
  padding-bottom: 0;
}

.brand-filter-list {
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

.brand-filter-list label {
  justify-content: flex-start;
  min-height: 30px;
}

.brand-filter-list input {
  flex: 0 0 auto;
  accent-color: var(--brand-red);
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.filter-actions .btn {
  justify-content: center;
  min-height: 40px;
}

.muted-small {
  color: var(--muted);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 9px;
}

.category-tree {
  display: grid;
  gap: 8px;
}

.category-tree details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.category-tree summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.category-tree summary::-webkit-details-marker {
  display: none;
}

.category-tree summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand-teal-dark);
  font-weight: 900;
}

.category-tree details[open] summary {
  background: #f8fbff;
}

.category-tree details[open] summary::after {
  content: "-";
}

.check-list.nested {
  padding: 0 12px 12px;
  gap: 8px;
}

.check-list.nested label {
  padding-left: 8px;
  border-left: 2px solid #e9eef5;
}

.check-list label,
.radio-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.field,
.select-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

textarea.field {
  min-height: 118px;
  resize: vertical;
  padding-top: 12px;
}

.field:focus,
.select-field:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(10, 166, 166, 0.12);
}

.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.catalog-top p {
  margin: 0;
  color: var(--muted);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.product-detail-tabs {
  grid-column: 1 / -1;
  margin-top: 14px;
}

.product-detail-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 22px 52px rgba(22, 35, 59, 0.08);
  overflow: hidden;
}

.product-detail-card::before {
  content: none;
}

.product-detail-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.85);
}

.product-detail-card-head h2 {
  margin: 2px 0 0;
  color: var(--brand-navy);
  font-size: 19px;
  line-height: 1.15;
}

.detail-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-navy);
  box-shadow: 0 10px 22px rgba(22, 35, 59, 0.16);
}

.detail-card-icon svg {
  width: 21px;
  height: 21px;
}

.product-tab-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  border: 1px solid rgba(204, 220, 235, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f8fb 100%);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-tab-list::-webkit-scrollbar {
  display: none;
}

.product-tab-list .tab-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-tab-list .tab-button:hover {
  color: var(--brand-teal);
  background: rgba(255, 255, 255, 0.72);
}

.product-tab-list .tab-button.is-active {
  position: relative;
  z-index: 2;
  border-color: rgba(10, 166, 166, 0.28);
  color: var(--brand-teal);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(10, 166, 166, 0.10);
}

.product-detail-tabs .tab-panel {
  padding: 18px 4px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-detail-tabs .product-rich-text {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(204, 220, 235, 0.95);
  border-radius: 16px;
  background: #071526;
  box-shadow: 0 18px 42px rgba(22, 35, 59, 0.14);
}

.product-video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-rich-text {
  max-width: 1080px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.78;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.product-rich-text > :first-child {
  margin-top: 0;
}

.product-rich-text > :last-child {
  margin-bottom: 0;
}

.product-rich-text p,
.product-rich-text ul,
.product-rich-text ol,
.product-rich-text blockquote {
  margin: 0 0 16px;
}

.product-rich-text strong,
.product-rich-text b {
  color: var(--brand-navy);
}

.product-rich-text h2,
.product-rich-text h3 {
  margin: 18px 0 8px;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.2;
}

.product-rich-text ul,
.product-rich-text ol {
  padding-left: 22px;
}

.product-rich-text li + li {
  margin-top: 6px;
}

.review-tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: start;
}

.review-overview {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.review-score-card,
.review-list,
.review-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(22, 35, 59, 0.06);
}

.review-score-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 96% 12%, rgba(10, 166, 166, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
}

.review-score-icon,
.review-form-head span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand-teal);
}

.review-score-icon svg,
.review-form-head svg {
  width: 21px;
  height: 21px;
}

.review-score-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-score-card strong {
  display: block;
  color: var(--brand-navy);
  font-size: 24px;
  line-height: 1.1;
}

.review-score-card p {
  max-width: 680px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.review-list {
  padding: 18px;
  min-height: 220px;
}

.review-empty {
  min-height: 184px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px dashed rgba(10, 166, 166, 0.35);
  border-radius: 10px;
  text-align: center;
  background: #f8fcfc;
}

.review-empty svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 14px;
  color: var(--brand-teal);
  background: #e9fbfb;
}

.review-empty h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 20px;
}

.review-empty p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.review-form-head span {
  background: var(--brand-navy);
}

.review-form-head h3 {
  margin: 0 0 4px;
  color: var(--brand-navy);
  font-size: 20px;
}

.review-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-item {
  padding: 16px 0;
  border-bottom: 1px solid #edf2f8;
}

.review-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.review-item strong {
  color: var(--brand-navy);
}

.review-item span {
  color: #f5a300;
  letter-spacing: 1px;
}

.review-stars {
  white-space: nowrap;
}

.review-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-tabs .review-form {
  padding: 18px;
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
  display: block;
  padding: 0;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.gallery-main:focus-visible,
.thumb:focus-visible {
  outline: 3px solid rgba(10, 166, 166, 0.34);
  outline-offset: 3px;
}

.gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.gallery-zoom svg {
  width: 20px;
  height: 20px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  aspect-ratio: 1.25 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.thumb.is-active {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(242, 61, 61, 0.12);
}

.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumb:nth-child(2) {
  background-position: right center;
}

.thumb:nth-child(3) {
  background-position: center bottom;
}

.thumb:nth-child(4) {
  background-position: 68% 40%;
}

.detail-summary h1 {
  margin: 10px 0;
  color: var(--brand-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.product-info h1 {
  margin: 2px 0 12px;
  color: var(--brand-navy);
  font-size: clamp(22px, 2.05vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 12px 0 16px;
}

.detail-stock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 16px 0 8px;
}

.detail-stock-row .label {
  position: static;
  font-weight: 400;
}

.detail-brand-link {
  color: var(--brand-navy);
  font-weight: 900;
  text-decoration: none;
}

.detail-brand-link:hover {
  color: var(--brand-red);
}

.detail-brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-brand img {
  width: 118px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.detail-brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.detail-brand strong {
  display: block;
  margin-top: 2px;
  color: var(--brand-navy);
  font-size: 18px;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 18px;
}

.detail-price .price {
  font-size: 36px;
}

.detail-free-shipping {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -4px 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 166, 166, 0.22);
  border-radius: 8px;
  color: var(--brand-navy);
  background: linear-gradient(135deg, #ecfbfa 0%, #f7fffd 100%);
}

.product-variant-picker {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(0, 159, 176, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfeff 0%, #f6fbfb 100%);
}

.product-variant-picker label {
  display: grid;
  gap: 7px;
}

.product-variant-picker label > span {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 800;
}

.product-variant-picker .is-invalid {
  border-color: #ff3b3f;
  background: #fff7f7;
}

.variant-choice-group {
  display: grid;
  gap: 10px;
}

.variant-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.variant-choice-head span {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 700;
}

.variant-choice-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.variant-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-choice {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  color: var(--brand-navy);
  background: #fff;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 35, 61, 0.04);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.variant-choice:hover,
.variant-choice:focus-visible {
  border-color: rgba(0, 159, 176, 0.55);
  color: #007985;
  background: #f1fcfc;
  outline: none;
}

.variant-choice.is-selected {
  border-color: rgba(0, 159, 176, 0.7);
  color: #006f78;
  background: linear-gradient(180deg, #e9fbfb, #f8ffff);
  box-shadow: 0 10px 22px rgba(0, 159, 176, 0.12);
}

.variant-choice.is-selected::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #00a2ad;
  box-shadow: 0 0 0 4px rgba(0, 159, 176, 0.12);
  vertical-align: 1px;
}

.variant-choice-group.is-invalid .variant-choice-list {
  padding: 8px;
  border: 1px solid rgba(255, 59, 63, 0.35);
  border-radius: 14px;
  background: #fff7f7;
}

.cart-variant-label {
  margin-top: 4px !important;
  color: #007d8c !important;
  font-size: 13px;
  font-weight: 800;
}

.detail-free-shipping > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-teal);
}

.detail-free-shipping svg {
  width: 21px;
  height: 21px;
}

.detail-free-shipping strong,
.detail-free-shipping small {
  display: block;
}

.detail-free-shipping strong {
  font-size: 14px;
  font-weight: 900;
}

.detail-free-shipping small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand-teal);
}

.required-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 16px;
  padding: 14px;
  border: 1px solid rgba(242, 61, 61, 0.28);
  border-radius: 8px;
  background: #fff7f7;
  color: var(--brand-navy);
  cursor: pointer;
}

.required-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-red);
}

.required-consent strong,
.required-consent em {
  display: block;
}

.required-consent strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.required-consent em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.required-consent.is-invalid {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(242, 61, 61, 0.12);
}

.qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.qty-control {
  width: 128px;
  height: 44px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  border: 0;
  background: var(--soft);
  color: var(--brand-navy);
  font-weight: 900;
}

.qty-control input {
  width: 100%;
  border: 0;
  text-align: center;
  font-weight: 900;
  outline: 0;
}

.tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-weight: 850;
}

.tab-button.is-active {
  color: var(--brand-red-dark);
  background: #fff2f2;
}

.tab-panel {
  display: none;
  padding: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.tab-panel.is-active {
  display: block;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.review-form,
.review-list-wrap {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.review-form h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
}

.review-pending-popup {
  position: fixed;
  top: 104px;
  right: 22px;
  z-index: 2200;
  width: min(390px, calc(100vw - 28px));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(10, 166, 166, 0.28);
  border-radius: 16px;
  background: #f0fdf7;
  color: var(--brand-navy);
  box-shadow: 0 22px 55px rgba(22, 35, 59, 0.18);
}

.review-pending-popup strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.review-pending-popup span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-pending-popup button {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.review-label {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 850;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 3px;
  min-height: 44px;
  align-items: center;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  color: #c8d0da;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: color 140ms ease, transform 140ms ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f5b942;
}

.star-rating input:focus-visible + label {
  outline: 3px solid rgba(10, 166, 166, 0.24);
  outline-offset: 3px;
  border-radius: 4px;
}

.star-rating label:hover {
  transform: translateY(-1px);
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.review-summary strong {
  display: block;
  color: var(--brand-red-dark);
  font-size: 34px;
  line-height: 1;
}

.review-summary span,
.review-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card-head strong {
  color: var(--brand-navy);
}

.review-stars {
  color: #f5b942;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.checkout-info-card {
  overflow: hidden;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
}

.checkout-card-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--brand-teal);
  background: #ecfbfa;
  border: 1px solid rgba(10, 166, 166, 0.2);
}

.checkout-card-head svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}

.checkout-card-head h2 {
  margin: 0 0 4px;
}

.checkout-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.checkout-info-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.checkout-info-item > i,
.checkout-info-item > svg {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--brand-navy);
  background: #eef8f8;
}

.checkout-info-item svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.checkout-info-item span {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.checkout-info-item strong {
  grid-column: 2;
  min-width: 0;
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: normal;
}

.checkout-info-item.span-2 {
  grid-column: 1 / -1;
}

.checkout-layout .tracking-products strong {
  font-weight: 500;
}

.checkout-layout .tracking-products b {
  font-size: 15px;
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cart-img {
  aspect-ratio: 1.2 / 1;
  border-radius: var(--radius);
  background: url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.cart-info h3 {
  margin: 0 0 6px;
  color: var(--brand-navy);
}

.cart-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-price {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.summary-card {
  position: sticky;
  top: 166px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.summary-card h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
}

.payment-result-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(10, 166, 166, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #fff 58%);
}

.payment-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 22px;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(22, 35, 59, 0.12);
}

.payment-result-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-red));
}

.payment-result-card.is-failed::before {
  background: linear-gradient(90deg, var(--brand-red), #ff9f1c);
}

.payment-result-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-teal), #20c76a);
  box-shadow: 0 16px 34px rgba(10, 166, 166, 0.22);
}

.payment-result-card.is-failed .payment-result-icon {
  background: linear-gradient(135deg, var(--brand-red), #ff7a59);
  box-shadow: 0 16px 34px rgba(242, 61, 61, 0.2);
}

.payment-result-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 3;
}

.payment-result-content {
  min-width: 0;
}

.payment-result-content h1 {
  margin: 8px 0 10px;
  color: var(--brand-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.payment-result-content p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.payment-result-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.payment-result-summary div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfd;
}

.payment-result-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-result-summary strong {
  display: block;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-result-actions .btn {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 8px;
}

.payment-failed-card {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  width: min(960px, 100%);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 253, 0.94)),
    radial-gradient(circle at 92% 8%, rgba(255, 154, 59, 0.12), transparent 32%);
  box-shadow: 0 26px 70px rgba(15, 29, 52, 0.11);
}

.payment-failed-card::before {
  height: 4px;
  background: linear-gradient(90deg, #ff3f46, #ffb23e, #14b8b8);
}

.payment-failed-card .payment-result-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4c55, #ff7a55);
  box-shadow: 0 18px 36px rgba(242, 61, 61, 0.18);
}

.payment-failed-card .payment-result-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.4;
}

.payment-failed-card .eyebrow {
  font-weight: 600;
}

.payment-failed-card .payment-result-content h1 {
  max-width: 720px;
  margin: 6px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.08;
}

.payment-failed-card .payment-result-reason {
  max-width: 720px;
  color: #53657f;
  font-size: 16px;
  font-weight: 400;
}

.payment-failed-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 24px;
}

.payment-failed-help article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(197, 214, 230, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.payment-failed-help i,
.payment-failed-help svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 14px;
  color: #0a8f94;
  background: #edfafa;
  stroke-width: 2;
}

.payment-failed-help strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.payment-failed-help span {
  display: block;
  color: #5d6d84;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.payment-failed-card .payment-result-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 500;
}

.free-cargo-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(10, 166, 166, 0.24);
  border-radius: var(--radius);
  background: #ecfbfa;
}

.free-cargo-box.is-complete {
  border-color: rgba(20, 134, 95, 0.28);
  background: #e9f8f5;
}

.free-cargo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.free-cargo-top strong {
  color: var(--brand-navy);
  line-height: 1.35;
}

.free-cargo-top span {
  color: var(--brand-red-dark);
  font-weight: 950;
  white-space: nowrap;
}

.free-cargo-box.is-complete .free-cargo-top span {
  color: var(--success);
}

.free-cargo-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 166, 166, 0.16);
}

.free-cargo-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-teal);
  transition: width 220ms ease;
}

.free-cargo-box p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.summary-lines {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.summary-line strong {
  color: var(--brand-navy);
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 950;
}

.payment-logo-box {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.payment-logo-box img {
  width: 236px;
  max-width: 100%;
  height: auto;
}

.payment-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

.payment-card-layout .payment-card-form .payment-logo-box {
  display: none;
}

.payment-card-main {
  min-width: 0;
}

.payment-secure-card {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(10, 166, 166, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, #f4ffff 0%, #ffffff 62%, #eef9f8 100%);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.08);
}

.payment-secure-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-teal);
  margin-bottom: 12px;
}

.payment-secure-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.payment-secure-card h3 {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.25;
}

.payment-secure-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.payment-secure-card img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 16px 0 14px;
}

.payment-secure-list {
  display: grid;
  gap: 8px;
}

.payment-secure-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 600;
}

.payment-secure-list svg {
  width: 16px;
  height: 16px;
  color: var(--brand-teal);
  stroke-width: 1.9;
}

.form-grid.payment-card-form {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.payment-card-form .card-holder-field,
.payment-card-form .card-number-field {
  grid-column: span 3;
}

.payment-card-form .card-exp-field,
.payment-card-form .card-cvc-field {
  grid-column: span 2;
}

.payment-card-form .payment-logo-box {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.payment-card-form .full {
  grid-column: 1 / -1;
}

.bank-transfer-box {
  padding: 18px;
  border: 1px solid rgba(10, 166, 166, 0.24);
  border-radius: var(--radius);
  background: #ecfbfa;
}

.bank-transfer-box h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
}

.bank-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.bank-info div {
  padding: 12px;
  border-radius: 6px;
  background: #fff;
}

.bank-info .full {
  grid-column: 1 / -1;
}

.bank-info dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.bank-info dd {
  margin: 4px 0 0;
  color: var(--brand-navy);
  font-weight: 500;
  word-break: break-word;
}

.transfer-notice-form {
  margin-top: 16px;
}

.free-shipping {
  color: var(--brand-red-dark);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 850;
}

.help-text {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.segment {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
}

.segment.is-active {
  color: #fff;
  background: var(--brand-navy);
}

.toggle-panel {
  display: none;
}

.toggle-panel.is-active {
  display: block;
}

.auth-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.auth-visual {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(22, 35, 59, 0.1), rgba(22, 35, 59, 0.78)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.auth-visual h2 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.auth-visual p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.register-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.register-visual-image {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(22, 35, 59, 0.02), rgba(22, 35, 59, 0.1)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.register-visual-content {
  padding: 24px;
}

.register-visual-content h2 {
  margin: 12px 0 10px;
  color: var(--brand-navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.register-visual-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.register-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.register-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  font-size: 12px;
  font-weight: 900;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-menu {
  position: sticky;
  top: 166px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.account-menu button,
.account-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--brand-navy);
  background: transparent;
  font-weight: 560;
  text-align: left;
}

.account-menu form {
  display: contents;
}

.account-menu form button {
  width: 100%;
}

.account-address-form + .account-address-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.account-address-panel {
  position: relative;
}

.address-panel-head {
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.address-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.address-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f9fcfd);
  box-shadow: 0 18px 42px rgba(13, 26, 45, 0.06);
}

.address-card.is-selected {
  border-color: rgba(8, 166, 166, 0.38);
  background: linear-gradient(180deg, #fff, #f1fffe);
}

.address-card-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.address-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--brand-teal-dark);
  background: #e9fbfa;
}

.address-card h3 {
  margin: 0 0 4px;
  color: var(--brand-navy);
  font-size: 18px;
}

.address-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.address-card-top p {
  font-size: 13px;
}

.address-badge {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: #e6fbf9;
  font-size: 12px;
  font-weight: 750;
}

.address-card-body {
  display: grid;
  gap: 7px;
  flex: 1;
  color: var(--text);
  font-size: 14px;
}

.address-card-body span {
  color: var(--muted);
}

.address-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.address-card-actions form {
  display: contents;
}

.btn-danger-soft {
  border-color: #ffd2d6;
  color: var(--brand-red-dark);
  background: #fff5f6;
}

.btn-danger-soft:hover {
  background: #ffecee;
}

.address-empty-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 20px;
  border: 1px dashed #cbdce9;
  border-radius: 14px;
  background: #fbfdff;
  text-align: center;
}

.address-empty-card > svg {
  width: 42px;
  height: 42px;
  color: var(--brand-teal);
}

.address-empty-card h3 {
  margin: 0;
  color: var(--brand-navy);
}

.address-empty-card p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
}

.address-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.address-modal.is-open {
  display: block;
}

.address-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 26, 45, 0.56);
  backdrop-filter: blur(8px);
}

.address-modal-card {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  max-height: min(760px, calc(100svh - 28px));
  margin: 14px auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(13, 26, 45, 0.26);
  overflow: auto;
}

.address-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.address-modal-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.address-modal-head h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 24px;
}

.address-modal-form textarea {
  min-height: 110px;
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-navy);
  font-weight: 650;
}

.address-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.address-modal-open {
  overflow: hidden;
}

.account-menu button.is-active,
.account-menu button:hover,
.account-menu a:hover {
  color: var(--brand-red-dark);
  background: #fff2f2;
  font-weight: 620;
}

.account-section {
  display: none;
}

.account-section.is-active {
  display: block;
}

.account-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.account-panel-head h2 {
  margin: 0 0 6px;
  color: var(--brand-navy);
  font-size: 26px;
  line-height: 1.15;
}

.account-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.account-section[data-account-section="favorites"] .account-panel-head {
  margin-bottom: 14px;
}

.account-section[data-account-section="favorites"] .account-panel-head h2 {
  font-size: 22px;
  font-weight: 700;
}

.account-favorites-grid .product-card {
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(10, 31, 68, 0.04);
}

.account-favorites-grid .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 31, 68, 0.08);
}

.account-favorites-grid .product-media {
  aspect-ratio: 1.05 / 1;
  background: #f7fafc;
}

.account-favorites-grid .product-body {
  padding: 12px;
  gap: 8px;
}

.account-favorites-grid .product-title {
  min-height: 54px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.account-favorites-grid .product-title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.account-favorites-grid .price-row {
  gap: 8px;
}

.account-favorites-grid .price {
  font-size: 19px;
  font-weight: 800;
}

.account-favorites-grid .stock {
  color: #008867;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.account-favorites-grid .btn {
  width: 100%;
  min-height: 34px;
  justify-content: center;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.account-favorites-grid .btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.account-favorites-grid form .btn {
  min-height: 30px;
  font-size: 11.5px;
}

.invoice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.invoice-type-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fdfe, #fff);
}

.invoice-type-panel > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.invoice-type-panel strong {
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 700;
}

.invoice-type-panel span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.invoice-type-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid #d7e7ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 35, 59, .05);
}

.invoice-type-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.invoice-type-switch button svg {
  width: 17px;
  height: 17px;
}

.invoice-type-switch button.active {
  background: #e9fbfc;
  color: var(--brand-teal);
  box-shadow: inset 0 0 0 1px rgba(0, 159, 176, .22);
}

.invoice-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: var(--shadow-soft);
  transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.invoice-card.is-active {
  order: -1;
  grid-column: 1 / -1;
  border-color: rgba(0, 159, 176, .45);
  box-shadow: 0 18px 42px rgba(0, 159, 176, .10);
}

.invoice-card.is-muted {
  display: none;
}

.invoice-card-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.invoice-card-head > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef9fb;
  color: var(--brand-teal);
}

.invoice-card-head svg {
  width: 22px;
  height: 22px;
}

.invoice-card-head h3 {
  margin: 0 0 4px;
  color: var(--brand-navy);
  font-size: 20px;
}

.invoice-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
    #fff;
  box-shadow: 0 12px 30px rgba(22, 35, 59, 0.06);
}

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

.order-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.order-card h3 {
  margin: 0;
  color: var(--brand-navy);
}

.order-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.order-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.order-meta svg {
  width: 14px;
  height: 14px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.status svg {
  width: 14px;
  height: 14px;
}

.status-preparing {
  color: #9a6200;
  background: #fff7dc;
}

.status-delivered {
  color: var(--success);
  background: #e9f8f5;
}

.order-track-btn {
  white-space: nowrap;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.order-invoice-btn,
.tracking-invoice-link {
  color: #dc2626;
  border-color: #fecaca;
  background: #fff7f7;
}

.order-invoice-btn svg,
.tracking-invoice-link svg {
  color: #dc2626;
}

.return-request-btn {
  color: #007d8c;
  border-color: #bfe9ef;
  background: #f1fdfe;
}

.return-request-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #bfe9ef;
  border-radius: 8px;
  background: #eefbfc;
  color: #056b77;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.return-request-badge svg {
  width: 16px;
  height: 16px;
}

.return-request-modal {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 26, 51, 0.24);
}

.return-request-modal::backdrop {
  background: rgba(10, 26, 51, 0.38);
  backdrop-filter: blur(3px);
}

.return-request-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfd;
}

.return-request-head strong,
.return-request-head span {
  display: block;
}

.return-request-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.return-request-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 24px;
  line-height: 1;
}

.return-request-form {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.return-request-form label {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-line svg {
  justify-self: center;
  align-self: center;
  width: 28px;
  height: 28px;
  color: var(--brand-red);
  stroke-width: 1.9;
}

.contact-line .contact-whatsapp-icon {
  fill: currentColor;
  stroke: none;
  overflow: visible;
}

.contact-line strong {
  display: block;
  color: var(--brand-navy);
  line-height: 1.25;
  font-weight: 500;
}

.contact-line span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-line a {
  color: inherit;
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(22, 35, 59, 0.9), rgba(10, 166, 166, 0.52)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.map-placeholder {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 166, 166, 0.16), rgba(242, 61, 61, 0.12)),
    repeating-linear-gradient(45deg, rgba(22, 35, 59, 0.06) 0 2px, transparent 2px 18px);
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  font-weight: 900;
}

.map-embed {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

@media (max-width: 720px) {
  .contact-hero + .section .section-title .btn-outline {
    margin-top: 12px;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(22, 35, 59, 0.88), rgba(22, 35, 59, 0.64)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 166px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.policy-sidebar strong {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 0 0 14px;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 850;
}

.policy-sidebar strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.policy-sidebar a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.policy-sidebar a:hover,
.policy-sidebar a.is-active {
  color: var(--brand-red-dark);
  background: #fff2f2;
}

.policy-sidebar a.is-active {
  font-weight: 760;
}

.policy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.policy-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.policy-head h2 {
  margin: 8px 0 10px;
  color: var(--brand-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.policy-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-highlight-grid,
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.policy-highlight-grid div,
.payment-method-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-highlight-grid i,
.payment-method-grid i {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  color: var(--brand-teal);
}

.policy-highlight-grid strong,
.policy-highlight-grid span {
  display: block;
}

.policy-highlight-grid strong,
.payment-method-grid h3 {
  margin: 0 0 6px;
  color: var(--brand-navy);
}

.policy-highlight-grid span,
.payment-method-grid p,
.policy-content p,
.legal-section p,
.policy-steps p {
  color: var(--muted);
  line-height: 1.7;
}

.policy-content p,
.faq-list p,
.product-rich-text p,
.blog-content p {
  margin: 0 0 10px;
}

.policy-content p:last-child,
.faq-list p:last-child,
.product-rich-text p:last-child,
.blog-content p:last-child {
  margin-bottom: 0;
}

.policy-content {
  display: grid;
  gap: 4px;
}
.policy-content img,
.faq-list img,
.product-rich-text img,
.blog-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 14px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.policy-content h3,
.legal-section h3 {
  margin: 22px 0 0;
  color: var(--brand-navy);
}

.policy-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(10, 166, 166, 0.25);
  border-radius: 8px;
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  font-weight: 800;
  line-height: 1.55;
}

.policy-note i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--brand-navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-list details[open] summary {
  color: var(--brand-red-dark);
  background: #fff7f7;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-page-shell {
  max-width: 1300px;
}

.faq-standalone {
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.faq-standalone details {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.faq-standalone details:last-child {
  border-bottom: 0;
}

.faq-standalone summary {
  position: relative;
  min-height: 72px;
  padding: 0 28px 0 54px;
  color: var(--brand-navy);
  background: #fff;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0;
  list-style: none;
}

.faq-standalone summary::-webkit-details-marker {
  display: none;
}

.faq-standalone summary::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-standalone details[open] {
  background: #f7f7f8;
}

.faq-standalone details[open] summary {
  color: var(--brand-navy);
  background: #f7f7f8;
}

.faq-standalone details[open] summary::before {
  transform: translateY(-35%) rotate(225deg);
}

.faq-standalone .faq-answer {
  padding: 10px 52px 38px;
  color: #050b18;
  font-size: 15px;
  line-height: 1.45;
}

.faq-standalone .faq-answer p {
  margin: 0 0 12px;
  padding: 0;
  color: inherit;
  line-height: inherit;
}

.faq-standalone .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-empty-state {
  min-height: 220px;
}

@media (max-width: 760px) {
  .faq-page-shell {
    max-width: none;
  }

  .faq-standalone summary {
    min-height: 62px;
    padding: 0 18px 0 42px;
    font-size: 14px;
    line-height: 1.35;
  }

  .faq-standalone summary::before {
    left: 19px;
    width: 8px;
    height: 8px;
  }

  .faq-standalone .faq-answer {
    padding: 6px 20px 26px 42px;
    font-size: 14px;
  }
}

.policy-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.policy-steps div {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-steps span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-red);
  font-weight: 900;
}

.policy-steps strong {
  display: block;
  color: var(--brand-navy);
}

.legal-card {
  counter-reset: legal;
}

.legal-section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.bank-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(22, 35, 59, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.bank-box div {
  padding: 12px;
  border-radius: 6px;
  background: #fff;
}

.bank-box .wide {
  grid-column: 1 / -1;
}

.bank-box span,
.bank-box strong {
  display: block;
}

.bank-box span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-box strong {
  color: var(--brand-navy);
  overflow-wrap: anywhere;
}

.bank-page-hero {
  background:
    linear-gradient(90deg, rgba(22, 35, 59, 0.9), rgba(0, 159, 176, 0.64)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.bank-page-layout {
  align-items: start;
}

.bank-account-card {
  display: grid;
  gap: 22px;
}

.bank-account-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.bank-account-head h2 {
  margin: 6px 0 8px;
  color: var(--brand-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.bank-account-head p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.bank-logo-card {
  width: 150px;
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(22, 35, 59, 0.08);
}

.bank-logo-card img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.bank-logo-placeholder {
  background: #effafa;
  color: var(--brand-teal);
}

.bank-logo-placeholder svg {
  width: 40px;
  height: 40px;
}

.bank-detail-grid,
.bank-detail-pair {
  display: grid;
  gap: 14px;
}

.bank-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bank-detail-pair {
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
}

.bank-detail-item {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfd;
}

.bank-detail-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-detail-item strong {
  display: block;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.iban-item strong {
  letter-spacing: .02em;
}

.bank-payment-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #bcecf1;
  border-radius: 12px;
  background: #effafa;
}

.bank-payment-note i,
.bank-payment-note svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 12px;
  color: #fff;
  background: var(--brand-teal);
}

.bank-payment-note strong {
  display: block;
  color: var(--brand-navy);
}

.bank-payment-note p {
  margin: 4px 0 0;
  color: var(--muted);
}

.tracking-hero {
  background:
    linear-gradient(90deg, rgba(22, 35, 59, 0.9), rgba(35, 86, 184, 0.58)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.tracking-layout-single {
  max-width: 920px;
  grid-template-columns: minmax(0, 1fr);
}

.tracking-card,
.tracking-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tracking-card {
  padding: 28px;
}

.tracking-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.tracking-card-head > i {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-blue);
}

.tracking-card-head h2 {
  margin: 4px 0 6px;
  color: var(--brand-navy);
  font-size: clamp(28px, 4vw, 42px);
}

.tracking-card-head p {
  margin: 0;
  color: var(--muted);
}

.tracking-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-weight: 900;
}

.tracking-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.tracking-result {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(10, 166, 166, 0.25);
  border-radius: 8px;
  background: #f4fbfb;
}

.tracking-result-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.tracking-result-top span,
.tracking-result-top strong {
  display: block;
}

.tracking-result-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-result-top strong {
  margin-top: 4px;
  color: var(--brand-navy);
  font-size: 20px;
}

.tracking-result-top b {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: #dcfce7;
  font-size: 13px;
}

.tracking-progress {
  height: 8px;
  margin: 18px 0;
  border-radius: 999px;
  background: #dbe6ef;
  overflow: hidden;
}

.tracking-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-blue));
}

.tracking-steps {
  display: grid;
  gap: 12px;
}

.tracking-steps div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tracking-steps i {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  color: var(--muted);
  background: var(--soft);
}

.tracking-steps strong {
  color: var(--brand-navy);
}

.tracking-steps span {
  color: var(--muted);
  line-height: 1.45;
}

.tracking-steps .is-complete i,
.tracking-steps .is-current i {
  color: #fff;
  background: var(--brand-teal);
}

.tracking-steps .is-current {
  border-color: rgba(35, 86, 184, 0.32);
  box-shadow: 0 0 0 3px rgba(35, 86, 184, 0.08);
}

.tracking-steps .is-current i {
  background: var(--brand-blue);
}

.tracking-current-only {
  grid-template-columns: 1fr;
}

.tracking-current-only div {
  min-height: auto;
  padding: 18px;
  border-color: rgba(10, 166, 166, 0.28);
  background: linear-gradient(135deg, rgba(10, 166, 166, 0.09), rgba(255, 255, 255, 0.96));
}

.tracking-current-only .is-current strong {
  font-size: 20px;
}

.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tracking-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.tracking-detail-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tracking-detail-list span,
.tracking-detail-list strong {
  display: block;
}

.tracking-detail-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tracking-detail-list strong {
  margin-top: 4px;
  color: var(--brand-navy);
}

.tracking-products {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.tracking-products article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tracking-products img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.tracking-products strong,
.tracking-products span {
  display: block;
}

.tracking-products span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.tracking-products b {
  color: var(--brand-red);
  white-space: nowrap;
}

.tracking-courier-link {
  margin-top: 16px;
}

.tracking-side {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.tracking-side div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.tracking-side div:last-child {
  border-bottom: 0;
}

.tracking-side i {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
  color: var(--brand-blue);
  background: #edf4ff;
}

.tracking-side strong {
  color: var(--brand-navy);
}

.tracking-side span {
  color: var(--muted);
  line-height: 1.45;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.brand-card {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 142px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 166, 166, 0.34);
  box-shadow: var(--shadow);
}

.brand-card img {
  width: 100%;
  max-width: 132px;
  height: 58px;
  object-fit: contain;
}

.brand-card-fallback {
  display: grid;
  place-items: center;
  width: 76px;
  height: 58px;
  border-radius: 8px;
  background: #eef9fb;
  color: var(--brand-teal);
  font-size: 24px;
  font-weight: 900;
}

.brand-card h2 {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 15px;
  text-align: center;
}

.story-image {
  min-height: 460px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(22, 35, 59, 0.5)),
    url("../img/hero-red-cherry-shrimp.jpg") center / cover no-repeat;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-red);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 4px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid #dbe4ef;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  color: var(--brand-navy);
}

.footer-benefits {
  border-bottom: 1px solid #dbe4ef;
  background: rgba(255, 255, 255, 0.78);
}

.footer-benefit-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-benefit svg {
  width: 24px;
  height: 24px;
  color: var(--brand-gold);
}

.footer-benefit > i:not([data-lucide]) {
  width: 24px;
  min-width: 24px;
  color: var(--brand-gold);
  font-size: 21px;
  line-height: 1;
  text-align: center;
}

.footer-benefit strong {
  display: block;
}

.footer-benefit span {
  display: block;
  margin-top: 2px;
  color: #5f6f87;
  font-size: 13px;
}

.footer-main {
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(150px, 0.56fr) minmax(210px, 0.72fr) minmax(150px, 0.46fr);
  gap: clamp(38px, 5.6vw, 92px);
}

.footer-main > div {
  min-width: 0;
}

.footer-main > div:last-child {
  justify-self: end;
  min-width: 170px;
}

.footer-logo {
  width: 138px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 22px rgba(22, 35, 59, 0.1));
}

.footer-main p {
  color: #40516c;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  transition: transform 160ms ease, filter 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.social-links svg,
.social-links i {
  width: 19px;
  height: 19px;
  color: #fff;
}

.social-links svg {
  fill: #fff;
  stroke: none;
}

.social-links .instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #515bd4);
}

.social-links .facebook {
  background: #1877f2;
}

.social-links .twitter {
  background: #0f172a;
}

.social-links .linkedin {
  background: #0a66c2;
}

.social-links .youtube {
  background: #ff0033;
}

.contact-social {
  margin-top: 10px;
}

.contact-social a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #10233d;
}

.contact-social .instagram,
.contact-social .facebook,
.contact-social .twitter,
.contact-social .linkedin,
.contact-social .youtube {
  background: #10233d;
}

.contact-social svg {
  fill: #fff;
}

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 35, 61, .46);
  backdrop-filter: blur(8px);
}

.contact-success-card {
  width: min(430px, 100%);
  padding: 30px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(16, 35, 61, .22);
}

.success-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e8fbf6;
  color: #009f78;
}

.success-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 3;
}

.contact-success-card h2 {
  margin: 0 0 8px;
}

.contact-success-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.phone-login-wrap {
  align-items: stretch;
}

.phone-auth-visual {
  min-height: 520px;
}

.phone-auth-visual h2 {
  max-width: 590px;
  font-size: clamp(32px, 3.35vw, 46px);
  line-height: 1.08;
}

.phone-auth-visual p {
  max-width: 590px;
}

.phone-login-panel {
  align-self: center;
}

.phone-login-panel h1 {
  margin-bottom: 8px;
}

.login-register-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fbfc);
}

.login-register-card span {
  display: block;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 850;
}

.login-register-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.login-register-card .btn {
  min-width: 116px;
  white-space: nowrap;
}

.form-alert {
  padding: 12px 14px;
  margin: 16px 0;
  border: 1px solid #bfe9ef;
  border-radius: 8px;
  background: #eefbfc;
  color: #056b77;
  font-weight: 700;
}

.form-alert-warning {
  display: grid;
  gap: 12px;
  align-items: start;
  border-color: #ffd5a3;
  background: #fff7ed;
  color: #8a4b00;
}

.form-alert-warning .btn {
  width: fit-content;
  color: #fff;
}

.form-alert-success {
  border-color: #b8ead8;
  background: #ecfdf5;
  color: #087052;
}

.register-restart-form {
  margin-top: 12px;
}

.phone-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.phone-input .field {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  background: #f7fafc;
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
}

.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 48px);
  gap: 10px;
}

.otp-inputs input {
  width: 48px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  background: #fff;
}

.otp-inputs input:focus {
  outline: 3px solid rgba(0, 159, 176, .16);
  border-color: var(--brand);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 540px) {
  .otp-inputs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .otp-inputs input {
    width: 100%;
    min-width: 0;
  }

  .login-register-card {
    align-items: stretch;
    flex-direction: column;
  }

  .login-register-card .btn {
    width: 100%;
  }
}

.footer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: var(--brand-navy);
  background: transparent;
  font-size: 16px;
  font-weight: 850;
  text-align: left;
  cursor: default;
}

.footer-toggle svg {
  display: none;
  width: 19px;
  height: 19px;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #40516c;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-links a:hover {
  color: var(--brand-red);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #dbe4ef;
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand-navy);
  outline: 0;
}

.newsletter input::placeholder {
  color: #7c8aa0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid #dbe4ef;
  background: rgba(255, 255, 255, 0.58);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom small {
  color: #52637a;
}

.footer-payments {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-payments span {
  color: #52637a;
  font-size: 12px;
  font-weight: 800;
}

.footer-payments img {
  width: 260px;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-made-by {
  padding: 14px 0 15px;
  border-top: 1px solid #d8e2ee;
  background: #fff;
}

.footer-made-by-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #40516c;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.footer-made-by a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 22px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.footer-made-by a:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.footer-made-by img {
  display: block;
  width: 66px;
  max-height: 18px;
  object-fit: contain;
  filter: none;
  transform: translateY(2px) scale(1.12);
  transform-origin: center;
}

.page-main,
.site-header,
.site-footer {
  opacity: 1;
  transform: none;
}

.page-is-ready .page-main,
.page-is-ready .site-header,
.page-is-ready .site-footer {
  opacity: 1;
  transform: none;
  transition: none;
}

.page-is-ready .site-header {
  transform: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 29990;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .96) 0 0),
    linear-gradient(135deg, rgba(247, 252, 253, .76), rgba(255, 255, 255, .58));
  backdrop-filter: blur(8px) saturate(1.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.page-is-leaving .page-loader {
  opacity: 1;
  visibility: visible;
}

.page-is-leaving .site-header {
  box-shadow: 0 10px 30px rgba(22, 35, 59, 0.05);
  transition: box-shadow 140ms ease;
}

.page-loader-panel {
  width: min(220px, 72vw);
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid rgba(182, 216, 224, .74);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 26px 80px rgba(16, 35, 56, .13);
  overflow: hidden;
  transform: translateY(8px) scale(.985);
  transition: transform 220ms cubic-bezier(.2, .75, .2, 1);
  position: relative;
}

.page-is-leaving .page-loader-panel {
  transform: translateY(0) scale(1);
}

.page-loader-panel::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 110px;
  height: 220px;
  background: linear-gradient(90deg, transparent, rgba(10, 166, 166, .11), transparent);
  transform: rotate(22deg);
  animation: loaderSheen 1400ms cubic-bezier(.2, .75, .2, 1) infinite;
}

.page-loader-orbit {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 166, 166, .12), rgba(242, 61, 61, .08));
  position: relative;
}

.page-loader-orbit::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(0, 159, 176, .2);
  border-top-color: var(--brand-teal);
  border-right-color: var(--brand-red);
  animation: loaderSpin 820ms linear infinite;
}

.page-loader-orbit i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-red);
  opacity: .82;
}

.page-loader-orbit i:nth-child(1) { top: 10px; right: 12px; }
.page-loader-orbit i:nth-child(2) { bottom: 11px; left: 12px; background: var(--brand-teal); }
.page-loader-orbit i:nth-child(3) { right: 10px; bottom: 13px; width: 3px; height: 3px; background: #f0a70a; }

.page-loader-lines {
  display: grid;
  gap: 9px;
}

.page-loader-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 31, 52, .12), rgba(10, 166, 166, .18), rgba(15, 31, 52, .08));
  background-size: 220% 100%;
  animation: loaderLine 1100ms ease-in-out infinite;
}

.page-loader-lines span:first-child {
  width: 112px;
}

.page-loader-lines span:last-child {
  width: 78px;
  animation-delay: 120ms;
}

.page-loader-panel b {
  grid-column: 1 / -1;
  display: block;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 166, 166, .12);
}

.page-loader-panel b::after {
  content: "";
  display: block;
  height: 100%;
  width: 74%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-red));
  transform: translateX(-72%);
  animation: pageProgress 1150ms cubic-bezier(.2, .72, .2, 1) forwards;
}

.page-is-loading-slow .page-loader-panel b::after {
  animation: pageProgressSlow 1400ms cubic-bezier(.2, .72, .2, 1) forwards;
}

@keyframes pageProgress {
  0% {
    transform: translateX(-72%);
  }
  58% {
    transform: translateX(-22%);
  }
  100% {
    transform: translateX(-8%);
  }
}

@keyframes pageProgressSlow {
  from {
    transform: translateX(-8%);
  }
  to {
    transform: translateX(10%);
  }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderLine {
  0%, 100% { background-position: 0% 50%; opacity: .72; }
  50% { background-position: 100% 50%; opacity: 1; }
}

@keyframes loaderSheen {
  0% { transform: translateX(0) rotate(22deg); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateX(310px) rotate(22deg); opacity: 0; }
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.site-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 34, 0.58);
  backdrop-filter: blur(8px);
}

.site-popup-card {
  position: relative;
  width: auto;
  max-width: calc(100vw - 32px);
  max-height: min(86svh, 760px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 28px 80px rgba(9, 18, 34, 0.3);
  transform: translateY(14px) scale(0.98);
  transition: transform 200ms ease;
}

.site-popup.is-visible .site-popup-card {
  transform: translateY(0) scale(1);
}

.site-popup-card img {
  display: block;
  width: auto;
  max-width: min(760px, calc(100vw - 32px));
  height: auto;
  max-height: min(86svh, 760px);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.site-popup-image-link {
  display: block;
}

.site-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22, 35, 59, 0.12);
  border-radius: 999px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.site-popup-close svg {
  width: 20px;
  height: 20px;
}

.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 86;
  display: grid;
  gap: 12px;
}

.floating-contact-btn {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(22, 35, 59, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(22, 35, 59, 0.24);
}

.floating-contact-btn.phone {
  color: #075b68;
  background: #fff;
  border: 1px solid rgba(22, 35, 59, 0.08);
}

.floating-contact-btn.whatsapp {
  color: #fff;
  background: #25d366;
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  overflow: visible;
}

.floating-contact-btn i {
  width: 22px;
  height: 22px;
}

.mobile-bottom-nav {
  display: none;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 260;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 39, 0.46);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  box-shadow: -24px 0 70px rgba(7, 20, 39, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head span {
  display: block;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer-head strong {
  display: block;
  margin-top: 3px;
  color: var(--brand-navy);
  font-size: 24px;
}

.cart-drawer-body {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px;
  background: #f7fafc;
}

.cart-drawer-empty {
  min-height: 340px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
}

.cart-drawer-empty svg {
  width: 42px;
  height: 42px;
  color: var(--brand-teal-dark);
}

.cart-drawer-empty strong {
  color: var(--brand-navy);
  font-size: 20px;
}

.cart-drawer-empty p {
  margin: 0;
}

.cart-drawer-free {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(10, 166, 166, 0.24);
  border-radius: 10px;
  background: #eefcfc;
}

.cart-drawer-free strong,
.cart-drawer-free span {
  display: block;
}

.cart-drawer-free strong {
  color: var(--brand-navy);
}

.cart-drawer-free span {
  margin-top: 3px;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.cart-drawer-free.is-complete span {
  color: #0f8f64;
}

.cart-drawer-progress {
  height: 7px;
  margin-top: 12px;
  border-radius: 999px;
  background: #d9eff1;
  overflow: hidden;
}

.cart-drawer-progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-teal));
}

.cart-drawer-items {
  display: grid;
  gap: 12px;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: opacity .18s ease, transform .18s ease;
}

.cart-drawer-item.is-removing {
  opacity: .55;
  transform: scale(.99);
}

.cart-drawer-img {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.cart-drawer-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.cart-drawer-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.cart-drawer-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.cart-drawer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.cart-drawer-meta span {
  margin-top: 0;
}

.cart-drawer-qty {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--brand-teal-dark) !important;
  background: #eefcfc;
  font-weight: 900;
}

.cart-drawer-qty b {
  color: var(--brand-teal-dark);
  font-size: 14px;
}

.cart-drawer-unit {
  color: var(--muted);
  font-size: 12px;
}

.cart-drawer-line {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.cart-drawer-line > strong {
  color: var(--brand-red-dark);
  white-space: nowrap;
}

.cart-drawer-remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(242, 61, 61, 0.24);
  border-radius: 999px;
  background: #fff5f6;
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cart-drawer-remove svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.cart-drawer-remove span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: 12px;
}

.cart-drawer-remove:hover {
  border-color: rgba(242, 61, 61, 0.42);
  background: #ffecee;
}

.cart-drawer-remove:disabled {
  cursor: wait;
  opacity: .65;
}

.cart-drawer-totals {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.cart-drawer-totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.cart-drawer-totals div + div {
  margin-top: 9px;
}

.cart-drawer-totals strong {
  color: var(--brand-navy);
}

.cart-drawer-totals .total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--brand-navy);
  font-weight: 900;
}

.cart-drawer-totals .total strong {
  color: var(--brand-red-dark);
  font-size: 20px;
}

.cart-drawer-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 320px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
  padding: 13px 15px;
  border-radius: var(--radius);
  background: var(--brand-navy);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
}

.product-grid > .empty-state,
.catalog-empty-state {
  grid-column: 1 / -1;
}

.catalog-empty-state {
  min-height: 340px;
  padding: 42px 24px;
  border-style: solid;
  box-shadow: 0 18px 50px rgba(15, 30, 54, 0.07);
}

.search-empty-state {
  background:
    radial-gradient(circle at 18% 18%, rgba(10, 166, 166, 0.11), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(245, 27, 58, 0.08), transparent 28%),
    #fff;
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.empty-state svg {
  width: 42px;
  height: 42px;
  color: var(--brand-teal);
  margin-bottom: 10px;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 8px;
  color: var(--brand-navy);
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
}

.notice {
  padding: 14px 16px;
  border: 1px solid rgba(10, 166, 166, 0.28);
  border-radius: var(--radius);
  color: var(--brand-teal-dark);
  background: #ecfbfa;
  line-height: 1.55;
}

.notice.red {
  color: var(--brand-red-dark);
  background: #fff2f2;
  border-color: rgba(242, 61, 61, 0.25);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 17, 29, 0.82);
  backdrop-filter: blur(7px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100svh - 48px);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100svh - 48px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(22, 35, 59, 0.7);
  backdrop-filter: blur(8px);
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(22, 35, 59, 0.95);
}

.lightbox-close {
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.kbd-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.kbd-table th,
.kbd-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.kbd-table th {
  color: var(--brand-navy);
  background: var(--soft);
  font-size: 13px;
}

.kbd-table td {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .quick-categories,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-favorites-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .benefit-grid,
  .footer-benefit-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-brand-strip {
    grid-auto-columns: calc((100% - 42px) / 4);
    grid-template-columns: none;
  }

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

  .home-testimonial-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .search-form {
    grid-column: 1 / -1;
    order: 3;
    margin: 2px 0 0;
    min-height: 44px;
    border-radius: 14px;
    box-shadow: none;
  }

  .search-form input {
    height: 44px;
    padding-left: 40px;
    padding-right: 58px;
    font-size: 13px;
  }

  .search-form button {
    width: 40px;
    height: 34px;
    right: 6px;
  }

  .search-leading-icon {
    left: 14px;
  }

  .product-detail,
  .cart-layout,
  .checkout-layout,
  .catalog-layout,
  .category-layout,
  .account-layout,
  .policy-layout,
  .tracking-layout,
  .contact-grid,
  .story-grid,
  .split-grid,
  .auth-wrap,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-pending-popup {
    top: 88px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .filter-panel,
  .category-sidebar,
  .summary-card,
  .account-menu,
  .policy-sidebar {
    position: static;
  }

  .category-sidebar {
    max-height: none;
  }

  .account-menu,
  .policy-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bank-account-head,
  .bank-detail-grid,
  .bank-detail-pair {
    grid-template-columns: 1fr;
  }

  .bank-logo-card {
    width: 132px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 116px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .category-mobile-filter-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
  }

  .category-mobile-filter-bar .btn {
    min-height: 42px;
    padding-inline: 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(242, 61, 61, 0.18);
  }

  .page-hero + .section {
    padding-top: 22px;
  }

  .payment-result-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .payment-result-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .payment-result-summary {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .payment-result-actions,
  .payment-result-actions .btn {
    width: 100%;
  }

  .payment-failed-card {
    gap: 14px;
    padding: 22px;
    border-radius: 18px;
  }

  .payment-failed-card .payment-result-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .payment-failed-card .payment-result-content h1 {
    font-size: 30px;
  }

  .payment-failed-help {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
  }

  .payment-failed-help article {
    padding: 13px;
  }

  .category-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    max-height: min(88dvh, 720px);
    display: block;
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    background: #f6f9fc;
    box-shadow: 0 -24px 60px rgba(16, 35, 61, 0.24);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  body.category-filter-open .category-sidebar {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .category-sheet-head {
    position: sticky;
    top: -14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: -14px -14px 12px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid #dde7f2;
    background: rgba(246, 249, 252, 0.96);
    backdrop-filter: blur(12px);
  }

  .category-sheet-head strong {
    display: block;
    color: var(--brand-navy);
    font-size: 20px;
    line-height: 1.1;
  }

  .category-sheet-head span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
  }

  .category-sidebar-panel,
  .category-filter-form {
    box-shadow: none;
  }

  .category-filter-form {
    margin-top: 12px;
  }

  .topbar {
    display: block;
    font-size: 12px;
  }

  .topbar-inner {
    min-height: auto;
    width: min(var(--container), calc(100% - 24px));
    padding: 6px 0;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
  }

  .topbar-links {
    display: none;
  }

  .topbar-contact {
    width: 100%;
    gap: 8px 10px;
    justify-content: center;
  }

  .topbar-contact a {
    min-width: 0;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
  }

  .topbar-contact svg {
    width: 13px;
    height: 13px;
  }

  .site-header {
    position: relative;
    top: auto;
    z-index: 220;
  }

  .announcement-inner {
    width: min(100%, calc(100% - 18px));
    min-height: 38px;
    padding: 8px 42px 8px 10px;
  }

  .announcement-content {
    font-size: 12px;
    font-weight: 720;
  }

  .announcement-close {
    right: 7px;
    width: 22px;
    height: 22px;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 240;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid rgba(208, 222, 238, 0.95);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 34px rgba(16, 35, 61, 0.12);
    backdrop-filter: blur(18px);
    pointer-events: auto;
  }

  .mobile-bottom-nav a {
    position: relative;
    min-width: 0;
    min-height: 50px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 7px 4px;
    border-radius: 13px;
    color: var(--brand-navy);
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.1;
    touch-action: manipulation;
    pointer-events: auto;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:focus-visible {
    color: var(--brand-teal-dark);
    background: #eefcfc;
  }

  .mobile-bottom-nav svg,
  .mobile-bottom-nav i {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
  }

  .mobile-bottom-nav b {
    position: absolute;
    top: 5px;
    right: 18px;
    min-width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-red);
    font-size: 10px;
    line-height: 1;
  }

  body.menu-open::before {
    display: none;
  }

  body.category-filter-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(16, 35, 61, 0.38);
    backdrop-filter: blur(6px);
  }

  .header-main {
    width: min(var(--container), calc(100% - 24px));
    min-height: 78px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 10px;
    padding: 8px 0 10px;
  }

  .brand img {
    width: 92px;
    max-height: 52px;
    object-fit: contain;
  }

  .header-main > .brand {
    min-width: 0;
    align-self: center;
  }

  .header-actions {
    min-width: 0;
    justify-content: flex-end;
    gap: 4px;
  }

  .header-actions .user-action {
    display: none;
  }

  .nav-action {
    min-width: 36px;
    width: 36px;
    height: 40px;
    gap: 0;
    font-size: 0;
    border-radius: 10px;
  }

  .nav-action svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.7;
  }

  .badge {
    top: 0;
    right: -1px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .mobile-toggle {
    width: 38px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--brand-navy);
  }

  .mobile-toggle svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.8;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1000;
    width: 100vw;
    height: 100svh;
    transform: translateX(110vw);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, opacity 160ms ease, visibility 220ms ease;
    border: 0;
    background: #fff;
    box-shadow: none;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  body.menu-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-head {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    opacity: 1;
  }

  .mobile-nav-head .brand {
    min-width: 0;
    max-width: calc(100% - 76px);
    overflow: hidden;
  }

  .mobile-nav-head .icon-btn {
    flex: 0 0 auto;
  }

  .mobile-nav-head .brand img {
    width: 76px;
    flex: 0 0 auto;
  }

  .mobile-nav-head .brand-text {
    display: grid;
  }

  .mobile-nav-head .brand-name {
    font-size: 17px;
  }

  .mobile-nav-head .brand-tagline {
    max-width: 160px;
    line-height: 1.25;
  }

  .nav-inner {
    width: 100%;
    max-width: none;
    padding: 14px 18px calc(28px + env(safe-area-inset-bottom));
    margin: 0;
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .nav-item {
    display: grid;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 10px rgba(22, 35, 59, 0.03);
    font-size: 15px;
  }

  .nav-item.has-children > .nav-link::after,
  .nav-flyout-item.has-children > .nav-dropdown-link::after {
    content: "+";
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    border-radius: 50%;
    color: var(--brand-teal-dark);
    background: #eefcfc;
    font-size: 15px;
    font-weight: 900;
  }

  .nav-item.has-children.is-open > .nav-link::after,
  .nav-flyout-item.has-children.is-open > .nav-dropdown-link::after {
    content: "-";
    color: var(--brand-red);
    background: #fff2f2;
  }

  .nav-symbol {
    width: 20px;
    height: 20px;
  }

  .nav-menu-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .nav-link.is-active {
    border-color: rgba(242, 61, 61, 0.24);
    background: #fff2f2;
  }

  .nav-dropdown,
  .nav-flyout {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    max-height: none;
    display: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .nav-item:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.is-open > .nav-dropdown,
  .nav-flyout-item.is-open > .nav-flyout {
    display: grid;
  }

  .nav-flyout {
    margin-top: 6px;
    padding-left: 10px;
    border-left: 1px solid #e7eef6;
  }

  .nav-flyout-item {
    display: grid;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .nav-dropdown a,
  .nav-flyout a {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    overflow: hidden;
  }

  .nav-dropdown-link.depth-1,
  .nav-dropdown-link.depth-2,
  .nav-dropdown-link.depth-3,
  .nav-dropdown a span,
  .nav-flyout a span {
    font-weight: 400;
  }

  .nav-dropdown a span,
  .nav-flyout a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-dropdown a b,
  .nav-flyout a b {
    display: none;
  }

  .nav-contact-actions {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .nav-contact-card {
    min-height: 58px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid #dce6f1;
    border-radius: 14px;
    color: var(--brand-navy);
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: 0 8px 18px rgba(22, 35, 59, 0.045);
  }

  .nav-contact-card .nav-contact-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    place-items: center;
    padding: 0;
    border-radius: 50%;
    color: var(--brand-navy);
    background: #fff;
    border: 1px solid #dce6f1;
  }

  .nav-contact-card .nav-contact-icon i,
  .nav-contact-card .nav-contact-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
    overflow: visible;
  }

  .nav-contact-card.whatsapp .nav-contact-icon svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .nav-contact-card.phone .nav-contact-icon {
    background: #fff;
    color: var(--brand-navy);
  }

  .nav-contact-card.whatsapp .nav-contact-icon {
    background: #fff;
    color: #16a34a;
  }

  .nav-contact-card span {
    display: grid;
    gap: 3px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-contact-card em {
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 600;
    font-style: normal;
  }

  .nav-contact-card strong {
    color: var(--brand-navy);
    font-size: 14.5px;
    font-weight: 760;
    line-height: 1.2;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .slider-viewport {
    aspect-ratio: 1 / 1;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(13, 26, 45, 0.9) 0%, rgba(13, 26, 45, 0.7) 54%, rgba(13, 26, 45, 0.36) 100%),
      url("../img/hero-red-cherry-shrimp.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    padding: 48px 0 80px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .quick-categories,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-newsletter {
    grid-template-columns: 1fr;
  }

  .promo-panel {
    padding: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    display: block;
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .order-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .account-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .account-panel-head h2 {
    font-size: 23px;
  }

  .address-card-grid {
    grid-template-columns: 1fr;
  }

  .address-card-top {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .address-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .address-card-actions,
  .address-modal-actions {
    justify-content: stretch;
  }

  .address-card-actions .btn,
  .address-modal-actions .btn {
    flex: 1 1 0;
  }

  .address-modal-card {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
    margin: 9px auto;
    padding: 16px;
    border-radius: 14px;
  }

  .order-track-btn {
    width: 100%;
  }

  .order-actions {
    justify-content: stretch;
  }

  .order-actions .btn {
    width: 100%;
  }

  .cart-price {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .checkout-card-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .checkout-card-head > span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .checkout-info-grid {
    grid-template-columns: 1fr;
  }

  .checkout-info-item,
  .checkout-info-item.span-2 {
    grid-column: 1 / -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .payment-card-form {
    grid-template-columns: 1fr;
  }

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

  .payment-secure-card {
    display: none;
  }

  .payment-card-layout .payment-card-form .payment-logo-box {
    display: flex;
  }

  .payment-card-form .card-holder-field,
  .payment-card-form .card-number-field,
  .payment-card-form .card-exp-field,
  .payment-card-form .card-cvc-field,
  .payment-card-form .payment-logo-box,
  .payment-card-form .full {
    grid-column: 1 / -1;
  }

  .invoice-card-grid {
    grid-template-columns: 1fr;
  }

  .invoice-type-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .invoice-type-switch {
    width: 100%;
  }

  .invoice-type-switch button {
    flex: 1;
  }

  .bank-info {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-payments {
    justify-items: start;
  }

  .footer-made-by-inner {
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.4;
  }

  .site-popup {
    padding: 12px;
  }

  .site-popup-card {
    width: auto;
    max-height: 82svh;
  }

  .site-popup-card img {
    max-width: calc(100vw - 24px);
    max-height: 82svh;
  }

  .floating-contact {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .floating-contact-btn {
    width: 50px;
    height: 50px;
  }

  .cart-drawer-panel {
    width: min(390px, 94vw);
    height: 100dvh;
    max-height: 100dvh;
  }

  .cart-drawer-head,
  .cart-drawer-body,
  .cart-drawer-foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-drawer-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .cart-drawer-img {
    width: 62px;
    height: 62px;
  }

  .cart-drawer-line {
    grid-column: 2;
    justify-self: start;
    justify-items: start;
  }

  .cart-drawer-foot {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
  }

  .detail-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 8px;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .detail-actions .btn svg,
  .detail-actions .btn .whatsapp-mark {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}

@media (max-width: 560px) {
  .page-main,
  .site-header,
  .site-footer,
  .footer-benefits,
  .footer-bottom,
  .footer-made-by {
    overflow-x: hidden;
  }

  .footer-main,
  .footer-bottom-inner,
  .footer-made-by-inner {
    max-width: 100%;
  }

  .footer-main > div {
    overflow: hidden;
  }

  .quick-categories,
  .benefit-grid,
  .footer-benefit-grid,
  .stats-grid,
  .policy-highlight-grid,
  .payment-method-grid,
  .policy-steps,
  .bank-box,
  .bank-detail-grid,
  .bank-detail-pair,
  .account-menu {
    grid-template-columns: 1fr;
  }

  .bank-account-head {
    gap: 14px;
  }

  .bank-logo-card {
    width: 118px;
  }

  .bank-detail-item {
    padding: 14px;
  }

  .bank-payment-note {
    align-items: start;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .bank-payment-note i,
  .bank-payment-note svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-card {
    min-height: 124px;
    padding: 12px;
  }

  .brand-card img {
    max-width: 118px;
    height: 52px;
  }

  .policy-card {
    padding: 18px;
  }

  .tracking-card {
    padding: 18px;
  }

  .tracking-input-row {
    grid-template-columns: 1fr;
  }

  .home-brand-strip {
    grid-auto-columns: calc((100% - 10px) / 2);
    grid-template-columns: none;
    gap: 10px;
    transition: none;
    will-change: auto;
  }

  .home-brand-window {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-brand-window::-webkit-scrollbar {
    display: none;
  }

  .brand-showcase-title {
    padding-right: 0;
  }

  .brand-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin: -4px 0 10px;
  }

  .home-brand-card {
    min-height: 82px;
    padding: 10px;
    scroll-snap-align: start;
  }

  .home-brand-card img {
    max-width: 118px;
    height: 52px;
  }

  .category-result-bar {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .account-favorites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .account-section[data-account-section="favorites"] .account-panel-head h2 {
    font-size: 19px;
  }

  .account-favorites-grid .product-card {
    border-radius: 8px;
  }

  .account-favorites-grid .product-body {
    padding: 9px;
    gap: 7px;
  }

  .account-favorites-grid .product-title {
    min-height: 48px;
    font-size: 12.5px;
    font-weight: 550;
    line-height: 1.25;
  }

  .account-favorites-grid .price {
    font-size: 16px;
  }

  .account-favorites-grid .stock {
    font-size: 10px;
  }

  .account-favorites-grid .btn {
    min-height: 31px;
    padding: 0 7px;
    font-size: 11px;
  }

  .account-favorites-grid form .btn {
    min-height: 28px;
    font-size: 10.5px;
  }

  .home-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-testimonials-title {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .testimonial-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin: -4px 0 10px;
  }

  .home-testimonial-window {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-testimonial-window::-webkit-scrollbar {
    display: none;
  }

  .home-testimonial-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .home-testimonial-card {
    min-height: auto;
    padding: 20px;
    scroll-snap-align: start;
  }

  .home-testimonial-avatar {
    width: 78px;
    height: 78px;
  }

  .section.soft .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-card .product-body {
    gap: 7px;
    padding: 10px;
  }

  .catalog-card h3 {
    min-height: 38px;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.28;
  }

  .catalog-card .product-actions .btn {
    min-height: 30px;
    font-size: 11.5px;
    font-weight: 600;
  }

  .catalog-card .price {
    font-size: 16px;
    font-weight: 700;
  }

  .product-body {
    padding: 10px;
    gap: 7px;
  }

  .home-product-card .product-body {
    grid-template-rows: auto minmax(42px, auto) auto auto;
    gap: 8px;
    padding: 10px;
  }

  .product-title {
    font-size: 14px;
    line-height: 1.25;
  }

  .home-product-card .product-title {
    font-size: 13px;
  }

  .product-brand {
    min-height: 21px;
    padding: 0 7px;
    font-size: 10px;
  }

  .home-product-card .price {
    font-size: 16px;
    font-weight: 700;
  }

  .home-product-card .product-actions .btn {
    min-height: 31px;
    font-size: 11.5px;
    font-weight: 600;
  }

  .home-product-card .product-fav {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .product-desc {
    min-height: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .rating {
    font-size: 11px;
  }

  .rating svg {
    width: 12px;
    height: 12px;
  }

  .price {
    font-size: 17px;
  }

  .old-price,
  .stock {
    font-size: 11px;
  }

  .product-labels {
    left: 7px;
    top: 7px;
  }

  .label {
    min-height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }

  .product-fav {
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .product-fav svg {
    width: 15px;
    height: 15px;
  }

  .discount-badge {
    left: 8px;
    top: 8px;
    min-width: 52px;
    min-height: 48px;
    padding: 6px 8px;
  }

  .discount-badge strong {
    font-size: 17px;
  }

  .discount-badge em {
    font-size: 9px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
  }

  .footer-benefits {
    padding: 22px 0;
  }

  .footer-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    gap: 12px;
    justify-items: center;
  }

  .footer-benefit {
    width: 100%;
    min-height: 126px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    padding: 14px 8px;
    border: 1px solid #dbe4ef;
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 22px rgba(22, 35, 59, 0.06);
  }

  .footer-benefit svg {
    width: 28px;
    height: 28px;
  }

  .footer-benefit span {
    max-width: 130px;
    margin-inline: auto;
    line-height: 1.35;
  }

  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-main > div {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(17, 35, 61, 0.04);
  }

  .footer-main > div:first-child {
    padding-top: 22px;
    padding-bottom: 24px;
    text-align: center;
  }

  .footer-column {
    grid-column: 1 / -1;
    justify-self: stretch !important;
  }

  .footer-main > div:last-child {
    justify-self: stretch;
    min-width: 0;
  }

  .footer-main > div:first-child p {
    max-width: 320px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-logo {
    margin-inline: auto;
    margin-bottom: 16px;
  }

  .social-links {
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .contact-social {
    justify-content: flex-start;
  }

  .footer-toggle {
    min-height: 34px;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
  }

  .footer-toggle:focus,
  .footer-toggle:focus-visible,
  .footer-toggle:active {
    outline: 0;
    background: transparent;
    box-shadow: none;
  }

  .footer-toggle svg {
    display: block;
    width: 17px;
    height: 17px;
    color: var(--brand-teal-dark);
  }

  .footer-column.is-open .footer-toggle svg {
    transform: rotate(180deg);
  }

  .footer-links {
    display: none;
    gap: 6px;
    padding: 2px 0 8px;
  }

  .footer-column.is-open .footer-links {
    display: grid;
  }

  .footer-links a {
    font-size: 13px;
    line-height: 1.35;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-bottom {
    padding: 12px 14px 10px;
  }

  .footer-bottom-inner {
    align-items: center;
    text-align: center;
  }

  .footer-payments {
    width: 100%;
    justify-items: center;
    padding-top: 4px;
    gap: 5px;
  }

  .footer-payments img {
    width: min(100%, 205px);
  }

  .footer-made-by {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 10px 14px 14px;
    border-top-color: #dbe5f0;
  }

  .footer-made-by-inner {
    justify-content: center;
    font-weight: 400;
    width: 100%;
    gap: 5px;
    line-height: 1.2;
  }

  .hero-actions,
  .qty-row,
  .catalog-top,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .btn:not(.product-card .btn),
  .select-field {
    width: 100%;
  }

  .nav-action {
    min-width: 40px;
    width: 40px;
    height: 44px;
    font-size: 0;
  }

  .nav-action svg {
    width: 24px;
    height: 24px;
  }

  .badge {
    right: 0;
  }

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

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-actions .btn {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .product-actions .icon-btn {
    display: none;
  }

  .detail-price {
    display: grid;
  }

  .detail-free-shipping {
    align-items: flex-start;
    gap: 10px;
    margin: -2px 0 16px;
    padding: 11px 12px;
  }

  .detail-free-shipping > span {
    width: 36px;
    height: 36px;
  }

  .detail-free-shipping strong {
    font-size: 13px;
  }

  .product-info h1 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.16;
  }

  .product-detail-card {
    padding: 12px;
    border-radius: 16px;
  }

  .product-detail-card-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .product-detail-card-head h2 {
    font-size: 18px;
  }

  .detail-card-icon {
    width: 42px;
    height: 42px;
  }

  .product-tab-list {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 5px;
    border-radius: 13px;
  }

  .product-tab-list .tab-button {
    min-height: 38px;
    padding: 0 12px;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 500;
  }

  .product-detail-tabs .tab-panel {
    padding: 14px 0 0;
    border-radius: 0;
  }

  .product-detail-tabs .product-rich-text {
    padding: 0;
  }

  .product-video-wrap {
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(22, 35, 59, 0.12);
  }

  .product-rich-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .product-rich-text h2,
  .product-rich-text h3 {
    font-size: 16px;
  }

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

  .review-summary-line,
  .review-item > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .tab-list {
    display: grid;
  }

  .product-tab-list {
    display: flex;
  }

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .newsletter {
    display: grid;
  }

  .review-summary,
  .review-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-image,
  .auth-visual {
    min-height: 360px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    max-height: calc(100svh - 24px);
  }

  .lightbox-image {
    max-height: calc(100svh - 24px);
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav.prev {
    left: 8px;
  }

  .lightbox-nav.next {
    right: 8px;
  }

  .tracking-detail-list,
  .tracking-products article {
    grid-template-columns: 1fr;
  }

  .tracking-products b {
    white-space: normal;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-section {
  padding-top: 64px;
}

.blog-grid.is-empty {
  display: flex;
  justify-content: center;
}

.blog-empty {
  width: min(100%, 920px);
  min-height: 320px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid rgba(10, 166, 166, 0.2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  overflow: hidden;
}

.blog-empty-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-empty-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.blog-empty h2 {
  margin: 0;
  max-width: 620px;
  color: var(--brand-navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.blog-empty p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card-image {
  display: block;
  aspect-ratio: 1.45 / 1;
  background: center / cover no-repeat;
}

.blog-card-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 22%, rgba(10, 166, 166, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef8f8 100%);
}

.blog-card-placeholder svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 16px;
  background: #fff;
  color: var(--brand-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 16px 36px rgba(15, 35, 61, 0.12);
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.blog-card-body span,
.blog-detail-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-card-body h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 17px;
  line-height: 1.28;
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.blog-card-body .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 650;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.blog-article-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 35, 59, 0.07);
}

.blog-detail-main h1 {
  max-width: 980px;
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
}

.blog-detail-hero {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-detail-excerpt {
  max-width: 860px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.blog-detail-visual {
  position: relative;
  min-height: 320px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: none;
}

.blog-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  display: block;
  object-fit: cover;
}

.blog-detail-summary span {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.blog-detail-summary {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(10, 166, 166, 0.22);
  border-radius: var(--radius);
  background: #eefcfc;
}

.blog-detail-summary p {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 850;
  line-height: 1.55;
}

.blog-detail-image {
  width: 100%;
  max-height: 460px;
  margin: 22px 0;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.blog-content {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  line-height: 1.75;
}

.blog-content p,
.blog-content li {
  color: var(--ink);
}

.blog-content > :first-child {
  margin-top: 0;
}

.blog-content > :last-child {
  margin-bottom: 0;
}

.blog-content h2,
.blog-content h3 {
  color: var(--brand-navy);
  line-height: 1.2;
}

.blog-side {
  top: 130px;
}

@media (max-width: 980px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .blog-section {
    padding-top: 36px;
  }

  .blog-empty {
    min-height: 280px;
    padding: 28px 20px;
    background: #fff;
  }

  .blog-empty p {
    font-size: 15px;
  }

  .blog-grid {
    gap: 12px;
  }

  .blog-card-body {
    gap: 8px;
    padding: 12px;
  }

  .blog-card-body h2 {
    font-size: 14px;
    line-height: 1.25;
  }

  .blog-card-body span {
    font-size: 11px;
  }

  .blog-card-body p {
    display: none;
  }

  .blog-card-body .btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .blog-detail-main h1 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .blog-detail-visual,
  .blog-detail-visual img {
    min-height: 260px;
  }

  .blog-article-card {
    padding: 18px;
  }

  .blog-detail-main h1 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .blog-detail-excerpt {
    font-size: 14.5px;
  }
}

