:root {
  color-scheme: dark;
  --bg: #06111f;
  --bg-soft: #09192c;
  --panel: rgba(13, 31, 53, 0.86);
  --panel-solid: #0d2036;
  --panel-light: #112b47;
  --text: #f6f9ff;
  --muted: #9dafc4;
  --line: rgba(142, 186, 228, 0.16);
  --blue: #2f8cff;
  --blue-bright: #56b2ff;
  --cyan: #66e2ff;
  --navy: #071426;
  --success: #6be6a3;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  --radius-large: 34px;
  --radius-medium: 22px;
  --page-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 0%, rgba(47, 140, 255, 0.14), transparent 31rem),
    radial-gradient(circle at 95% 8%, rgba(102, 226, 255, 0.08), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

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

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

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

.announcement {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  background: linear-gradient(90deg, #0b57c5, #238fe8);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: max(22px, calc((100vw - var(--page-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 199, 255, 0.28);
  border-radius: 15px;
  background: linear-gradient(145deg, #1669e8, #44b8ff);
  box-shadow: 0 12px 35px rgba(47, 140, 255, 0.3);
  color: white;
  font: 800 17px "Manrope", sans-serif;
  letter-spacing: -0.5px;
}

.brand-copy strong {
  display: block;
  font: 800 20px "Manrope", sans-serif;
  letter-spacing: -0.6px;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #bdcada;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-bright);
  content: "";
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 20px;
  background: #f5f9ff;
  color: #08182b;
  font-size: 13px;
}

.header-cta:hover,
.btn:hover,
.buy-btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  max-width: var(--page-width);
  min-height: 680px;
  margin: auto;
  padding: 86px 22px 92px;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 70px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 75px;
  left: -240px;
  width: 560px;
  height: 560px;
  background: rgba(30, 105, 230, 0.13);
}

.hero-glow-two {
  right: -230px;
  bottom: 30px;
  width: 500px;
  height: 500px;
  background: rgba(55, 195, 255, 0.1);
}

.eyebrow {
  color: #72c5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero h1,
.shop-hero h1,
.section-heading h2,
.feature-panel h2,
.visit-section h2 {
  margin: 14px 0 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -3.2px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(95deg, #4ea5ff, #71e5ff);
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 620px;
  color: #aebfd2;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.btn {
  padding: 0 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #287cf2, #42b8ff);
  box-shadow: 0 15px 38px rgba(44, 137, 255, 0.25);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(12, 33, 57, 0.72);
  color: white;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  color: #a7b8cc;
  font-size: 13px;
  font-weight: 700;
}

.hero-points i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  margin-right: 5px;
  border: 1px solid rgba(102, 226, 255, 0.25);
  border-radius: 999px;
  background: rgba(51, 153, 255, 0.12);
  color: var(--cyan);
  font-style: normal;
}

.hero-showcase {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(124, 194, 255, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(20, 61, 101, 0.92), rgba(8, 26, 46, 0.94)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.showcase-ring {
  position: absolute;
  border: 1px solid rgba(97, 190, 255, 0.17);
  border-radius: 999px;
}

.ring-one {
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
}

.ring-two {
  bottom: -170px;
  left: -80px;
  width: 430px;
  height: 430px;
}

.showcase-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(131, 200, 255, 0.2);
  background: rgba(7, 23, 41, 0.76);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(15px);
}

.showcase-main {
  top: 104px;
  left: 52px;
  min-width: 370px;
  padding: 28px;
  border-radius: 28px;
  transform: rotate(-3deg);
}

.showcase-main .showcase-icon {
  font-size: 78px;
}

.showcase-card small {
  display: block;
  margin-bottom: 5px;
  color: #73c8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  font: 800 21px "Manrope", sans-serif;
}

.showcase-small {
  min-width: 250px;
  padding: 20px 22px;
  border-radius: 22px;
}

.showcase-small > span {
  font-size: 39px;
}

.showcase-top {
  top: 266px;
  right: 25px;
  transform: rotate(4deg);
}

.showcase-bottom {
  bottom: 35px;
  left: 48px;
  transform: rotate(-1deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 27, 47, 0.72);
}

.trust-strip div {
  position: relative;
  min-height: 116px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 24px 28px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(114, 197, 255, 0.26);
  font: 800 22px "Manrope", sans-serif;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip small {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  max-width: var(--page-width);
  margin: auto;
  padding: 105px 22px;
}

.section-heading h2,
.feature-panel h2,
.visit-section h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 36px;
}

.text-link {
  color: #8dcbff;
  font-weight: 800;
}

.text-link span {
  margin-left: 5px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 330px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, rgba(55, 171, 255, 0.15), transparent 18rem),
    var(--panel);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(91, 185, 255, 0.42);
  box-shadow: var(--shadow);
}

.category-large {
  background:
    radial-gradient(circle at 100% 0%, rgba(93, 214, 255, 0.21), transparent 21rem),
    linear-gradient(145deg, #123d69, #0d243d);
}

.category-orb {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 218, 255, 0.2);
  border-radius: 27px;
  background: rgba(5, 20, 36, 0.44);
  font-size: 47px;
}

.category-card small {
  color: #70c9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.category-card h3 {
  margin: 9px 0 8px;
  font: 800 27px "Manrope", sans-serif;
  letter-spacing: -1px;
}

.category-card p {
  max-width: 330px;
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.55;
}

.category-card div > span {
  color: #d9edff;
  font-size: 13px;
  font-weight: 800;
}

.feature-section {
  padding-top: 40px;
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 65px;
  border: 1px solid rgba(90, 183, 255, 0.2);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 100%, rgba(29, 128, 238, 0.18), transparent 28rem),
    linear-gradient(145deg, #0e2946, #091b30);
  box-shadow: var(--shadow);
}

.feature-panel > div:first-child > p {
  max-width: 520px;
  color: #aebfd1;
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5, 19, 34, 0.36);
}

.feature-list article > span {
  color: #5dbfff;
  font: 800 18px "Manrope", sans-serif;
}

.feature-list strong {
  font-size: 16px;
}

.feature-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 75px;
}

.visit-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.visit-copy address {
  margin: 27px 0;
  color: #d9e8f8;
  font-size: 17px;
  font-style: normal;
  line-height: 1.65;
}

.hours {
  max-width: 475px;
  margin-bottom: 28px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hours strong {
  color: white;
}

.location-card {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 45px;
  border: 1px solid rgba(119, 197, 255, 0.24);
  border-radius: 38px;
  background:
    radial-gradient(circle at center, rgba(45, 144, 255, 0.23), transparent 17rem),
    linear-gradient(145deg, #103d68, #0a1e34);
  box-shadow: var(--shadow);
  text-align: center;
}

.location-pin {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(137, 213, 255, 0.3);
  border-radius: 28px;
  background: rgba(4, 20, 37, 0.5);
  color: #79d2ff;
  font-size: 44px;
}

.location-card small {
  color: #6dcaff;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.location-card h3 {
  margin: 10px 0 3px;
  font: 800 34px "Manrope", sans-serif;
  letter-spacing: -1.5px;
}

.location-card p,
.location-card > span {
  color: var(--muted);
}

.location-line {
  width: 72px;
  height: 1px;
  margin: 24px 0;
  background: rgba(112, 200, 255, 0.35);
}

/* Shop page */
.shop-hero {
  max-width: var(--page-width);
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin: auto;
  padding: 95px 22px 60px;
}

.shop-hero h1 {
  margin-bottom: 17px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1;
}

.shop-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.shop-hero-stat {
  min-width: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.shop-hero-stat small {
  color: #70c9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.shop-hero-stat strong {
  display: block;
  margin: 6px 0 2px;
  font: 800 44px "Manrope", sans-serif;
}

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

.shop-page {
  padding-top: 25px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 28, 49, 0.7);
}

.search-wrap {
  min-width: 350px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(141, 196, 235, 0.16);
  border-radius: 14px;
  background: #07182a;
}

.search-wrap span {
  color: #72c5ff;
  font-size: 22px;
}

.search-wrap input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-wrap input::placeholder {
  color: #70869e;
}

select {
  min-height: 50px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(141, 196, 235, 0.16);
  border-radius: 14px;
  outline: 0;
  background: #07182a;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0 0;
}

.filter-btn {
  min-height: 41px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 29, 50, 0.62);
  color: #b4c3d4;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: rgba(93, 190, 255, 0.42);
  background: #1f75dd;
  color: white;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-meta p {
  margin: 0;
}

.catalog-status {
  padding: 7px 11px;
  border: 1px solid rgba(144, 182, 215, 0.18);
  border-radius: 999px;
  background: rgba(10, 29, 50, 0.76);
  color: #9cafc3;
  font-size: 11px;
  font-weight: 800;
}

.catalog-status.connected {
  border-color: rgba(107, 230, 163, 0.25);
  background: rgba(44, 138, 89, 0.13);
  color: var(--success);
}

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

.product-card {
  min-width: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(16, 42, 70, 0.96), rgba(8, 24, 42, 0.96));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93, 190, 255, 0.38);
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f2f6fa;
}

.product-visual img {
  width: 100%;
  height: 100%;
  padding: 13px;
  background: white;
  object-fit: contain;
  transition: transform 250ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
}

.product-placeholder,
.product-visual.image-failed::after {
  font-size: 75px;
  content: "✨";
}

.badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: #0a1c30;
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.product-category {
  color: #68c5ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.product-body h2 {
  margin: 8px 0 10px;
  font: 700 16px/1.37 "Manrope", sans-serif;
  letter-spacing: -0.3px;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 15px;
  color: #96a9bd;
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.price {
  font: 800 18px "Manrope", sans-serif;
}

.buy-btn {
  min-width: 76px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 11px;
  background: linear-gradient(135deg, #287cf2, #42b8ff);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, filter 180ms ease;
}

.buy-btn:hover {
  filter: brightness(1.08);
}

.empty-state {
  min-height: 360px;
  place-items: center;
  padding: 55px;
  text-align: center;
}

.empty-state:not([hidden]) {
  display: grid;
}

.empty-state > span {
  color: #70c9ff;
  font-size: 50px;
}

.empty-state h2 {
  margin: 0;
  font: 800 28px "Manrope", sans-serif;
}

.empty-state p {
  margin: 0 0 10px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #040d18;
}

.footer-inner {
  max-width: var(--page-width);
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin: auto;
  padding: 35px 22px;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
  color: #a7b8ca;
  font-size: 13px;
  font-weight: 700;
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #71859b;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .home-hero,
  .feature-panel,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 470px;
  }

  .trust-strip {
    margin-inline: 22px;
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-large {
    grid-column: 1 / -1;
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 17, 31, 0.98);
  }

  .site-header.open .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.open .main-nav a.active::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 67px;
  }

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

  .showcase-main {
    right: 30px;
    left: 30px;
    min-width: 0;
  }

  .shop-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-hero-stat {
    max-width: 260px;
  }

  .shop-toolbar {
    flex-direction: column;
  }

  .search-wrap {
    min-width: 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 47px;
    letter-spacing: -2.3px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-showcase {
    min-height: 405px;
  }

  .showcase-main {
    top: 65px;
    padding: 22px;
  }

  .showcase-main .showcase-icon {
    font-size: 54px;
  }

  .showcase-card strong {
    font-size: 16px;
  }

  .showcase-small {
    min-width: 205px;
  }

  .showcase-top {
    top: 218px;
  }

  .showcase-bottom {
    bottom: 26px;
    left: 20px;
  }

  .trust-strip,
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div,
  .trust-strip div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-heading,
  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-large {
    grid-column: auto;
  }

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

  .feature-panel {
    gap: 40px;
    padding: 34px 24px;
  }

  .visit-section {
    gap: 42px;
  }

  .hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .shop-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .shop-hero h1 {
    font-size: 48px;
    letter-spacing: -2.3px;
  }

  .product-visual {
    height: 270px;
  }
}


.brand-mark.has-logo {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
}
.announcement a {
  margin-left: 10px;
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-points b { font: inherit; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.footer-contact a:hover { color: var(--blue-bright); }
body.popup-open { overflow: hidden; }
.site-popup-shell[hidden] { display: none; }
.site-popup-shell { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 22px; }
.site-popup-backdrop { position: absolute; inset: 0; background: rgba(1, 7, 14, 0.78); backdrop-filter: blur(8px); }
.site-popup {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, var(--panel-light), var(--bg-soft));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
}
.site-popup-image { width: 100%; max-height: 230px; display: block; object-fit: cover; }
.site-popup-content { padding: 34px; }
.site-popup h2 { margin: 11px 0 12px; font: 800 34px/1.05 "Manrope", sans-serif; letter-spacing: -1.4px; }
.site-popup p { color: var(--muted); line-height: 1.65; }
.site-popup-close {
  position: absolute; top: 13px; right: 13px; z-index: 2;
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(4, 14, 25, 0.8); color: white; font-size: 24px; cursor: pointer;
}
.site-popup-actions { display: flex; align-items: center; gap: 18px; margin-top: 25px; }
.popup-dismiss { border: 0; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer; }
[hidden] { display: none !important; }
@media (max-width: 780px) {
  .footer-contact { justify-content: flex-start; }
}
