:root {
  --seven-blue: #006dff;
  --seven-blue-2: #2d8cff;
  --seven-blue-soft: #e8f1ff;
  --seven-ink: #080c12;
  --seven-graphite: #141a24;
  --seven-metal: #7c8796;
  --seven-silver: #d9e1eb;
  --seven-paper: #f5f7fa;
  --seven-line: rgba(16, 23, 34, 0.11);
  --seven-shadow: 0 22px 58px rgba(8, 12, 18, 0.14);
}

.shop-page {
  --shop-teal: var(--seven-blue);
  --shop-teal-dark: #004fcf;
  --shop-blue: var(--seven-blue);
  --shop-ink: #111722;
  --shop-muted: #687382;
  --shop-line: var(--seven-line);
  --shop-soft: #f5f7fa;
  --shop-warm: #ffffff;
  background: #ffffff;
  color: var(--shop-ink);
  width: 100%;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.shop-topbar {
  min-height: 34px;
  gap: 28px;
  padding: 6px max(18px, calc((100vw - 1220px) / 2));
  justify-content: center;
  background: linear-gradient(90deg, #080c12, #101827 58%, #06255f);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-topbar svg {
  color: #8bbcff;
}

.shop-header {
  min-height: 82px;
  grid-template-columns: 190px minmax(360px, 620px) 160px;
  gap: 28px;
  justify-content: center;
  padding: 12px max(24px, calc((100vw - 1220px) / 2));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow: 0 10px 34px rgba(8, 12, 18, 0.07);
}

.shop-logo {
  width: 170px;
}

.shop-logo img {
  width: 132px;
  filter: drop-shadow(0 10px 18px rgba(8, 12, 18, 0.14));
}

.shop-search {
  height: 48px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid rgba(16, 23, 34, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shop-search:focus-within {
  border-color: rgba(0, 109, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.09);
}

.shop-search input::placeholder {
  color: #7a8593;
}

.shop-header-actions {
  gap: 10px;
  justify-content: end;
}

.shop-mini-action,
.shop-cart-button {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border-color: rgba(16, 23, 34, 0.12);
  background: #ffffff;
  color: #111722;
  box-shadow: 0 10px 24px rgba(8, 12, 18, 0.08);
}

.shop-mini-action:hover,
.shop-cart-button:hover,
.shop-mini-action:focus-visible,
.shop-cart-button:focus-visible {
  border-color: rgba(0, 109, 255, 0.42);
  color: var(--seven-blue);
  outline: 0;
}

.shop-cart-button span {
  background: var(--seven-blue);
}

.shop-menu {
  min-height: 58px;
  gap: 0;
  padding: 8px max(18px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96));
  box-shadow: 0 10px 28px rgba(8, 12, 18, 0.06);
}

.shop-menu-track {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto;
  padding: 4px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 28px rgba(8, 12, 18, 0.06);
}

.shop-menu a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #303946;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.shop-menu a svg {
  width: 16px;
  height: 16px;
  color: #6d7786;
  transition: color 160ms ease, transform 160ms ease;
}

.shop-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--seven-blue);
  transition: transform 160ms ease;
}

.shop-menu a:hover,
.shop-menu a:focus-visible {
  color: var(--seven-blue);
  background: rgba(0, 109, 255, 0.08);
  border-color: rgba(0, 109, 255, 0.18);
  outline: 0;
  transform: translateY(-1px);
}

.shop-menu a:hover::after,
.shop-menu a:focus-visible::after {
  transform: scaleX(1);
}

.shop-menu a:hover svg,
.shop-menu a:focus-visible svg,
.shop-menu a.is-active svg {
  color: var(--seven-blue);
}

.shop-menu a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #101722, #172235);
  border-color: rgba(16, 23, 34, 0.28);
  box-shadow: 0 10px 20px rgba(8, 12, 18, 0.14);
}

.shop-menu a.is-active svg {
  color: #8bbcff;
}

.shop-menu a.is-active::after {
  transform: scaleX(0);
}

.shop-hero {
  min-height: 500px;
  align-items: center;
}

.shop-hero-bg {
  background-position: center 44%;
}

.shop-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.88) 0%, rgba(8, 16, 29, 0.76) 36%, rgba(5, 20, 52, 0.34) 70%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(5, 8, 13, 0.26), rgba(5, 8, 13, 0.03));
}

.shop-hero-content {
  width: min(590px, calc(100vw - 48px));
  margin-left: max(24px, calc((100vw - 1220px) / 2));
  padding: 34px 0 40px;
}

.shop-pill,
.shop-kicker {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(232, 241, 255, 0.95);
  color: #004fcf;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shop-pill.dark {
  background: rgba(0, 109, 255, 0.1);
  color: #005be6;
}

.shop-hero h1 {
  max-width: 570px;
  margin-top: 18px;
  font-size: clamp(2.45rem, 4.05vw, 3.9rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.shop-hero p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.55;
}

.shop-hero-actions {
  gap: 10px;
  margin-top: 26px;
  align-items: center;
}

.shop-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0;
  border-color: rgba(16, 23, 34, 0.12);
  box-shadow: 0 12px 26px rgba(8, 12, 18, 0.1);
}

.shop-button svg {
  width: 19px;
  height: 19px;
}

.shop-button.primary {
  border-color: rgba(0, 109, 255, 0.62);
  background: linear-gradient(135deg, #167dff, #004ec9);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 86, 223, 0.3);
}

.shop-button.primary:hover,
.shop-button.primary:focus-visible {
  background: linear-gradient(135deg, #2d91ff, #0062f0);
  outline: 0;
}

.shop-button.light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: #0d1726;
}

.shop-categories,
.shop-catalog,
.gift-section,
.factory-section,
.idea-banner {
  width: min(1220px, calc(100% - 48px));
}

.shop-categories {
  margin-top: 62px;
}

.shop-section-title {
  margin-bottom: 24px;
}

.shop-section-title h2,
.idea-banner h2,
.factory-copy h2 {
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.shop-section-title p,
.idea-banner p,
.factory-copy p {
  color: #667282;
}

.round-category-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.round-category {
  min-height: 168px;
  display: grid;
  justify-items: start;
  align-content: space-between;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 12, 18, 0.08);
  text-align: left;
}

.round-category-photo {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  border: 1px solid rgba(0, 109, 255, 0.16);
  box-shadow: 0 12px 26px rgba(8, 12, 18, 0.12);
}

.round-category:hover,
.round-category.is-active {
  border-color: rgba(0, 109, 255, 0.34);
  transform: translateY(-2px);
}

.round-category:hover .round-category-photo,
.round-category.is-active .round-category-photo {
  border-color: var(--seven-blue);
  box-shadow: 0 14px 30px rgba(0, 109, 255, 0.18);
}

.round-category strong {
  color: #111722;
  font-size: 0.98rem;
  font-weight: 500;
}

.round-category small {
  color: #6c7787;
  font-weight: 500;
  text-transform: none;
}

.idea-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(16, 23, 34, 0.1);
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 109, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(8, 12, 18, 0.98), rgba(10, 24, 52, 0.95)),
    #101722;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(8, 12, 18, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.idea-banner:hover {
  border-color: rgba(45, 140, 255, 0.28);
  box-shadow: 0 32px 80px rgba(8, 12, 18, 0.2);
  transform: translateY(-2px);
}

.idea-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.quote-card-copy,
.quote-form {
  position: relative;
  z-index: 1;
}

.quote-card-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
}

.quote-card-copy .shop-pill {
  justify-self: start;
}

.idea-banner h2,
.idea-banner p {
  color: #ffffff;
}

.idea-banner h2 {
  max-width: 620px;
  margin-top: 4px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.07;
}

.idea-banner p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.quote-benefits span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.quote-benefits svg {
  width: 16px;
  height: 16px;
  color: #8bbcff;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07)),
    rgba(5, 10, 19, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.quote-form-head {
  display: grid;
  gap: 4px;
}

.quote-form-head span {
  color: #8bbcff;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.quote-form-head strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
}

.quote-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quote-choice {
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quote-choice:hover,
.quote-choice:focus-visible,
.quote-choice.is-active {
  border-color: rgba(45, 140, 255, 0.72);
  background: rgba(0, 109, 255, 0.2);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

.quote-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-budget label {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.quick-budget label:focus-within {
  border-color: rgba(45, 140, 255, 0.74);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.16);
}

.quick-budget span {
  color: #a9cfff;
  font-size: 0.75rem;
  font-weight: 500;
}

.quick-budget input {
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 400;
}

.quick-budget input::placeholder {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 400;
}

.quick-budget input:focus {
  outline: 0;
}

.quote-submit {
  width: 100%;
  min-height: 48px;
  justify-self: stretch;
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(0, 86, 223, 0.32);
}

.quote-submit.is-sent {
  border-color: rgba(37, 211, 102, 0.72);
  background: linear-gradient(135deg, #25d366, #138a43);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.gift-card,
.shop-product-card {
  border-radius: 6px;
  border-color: rgba(16, 23, 34, 0.1);
  box-shadow: 0 16px 42px rgba(8, 12, 18, 0.08);
}

.gift-card i {
  color: var(--seven-blue);
}

.filter-pill {
  min-height: 38px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0;
}

.filter-pill.is-active {
  background: #111722;
  color: #ffffff;
  border-color: #111722;
  font-weight: 500;
}

.gift-card h3,
.gift-card a {
  font-weight: 500;
}

.shop-product-photo span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
}

.shop-product-data small {
  color: #005be6;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.shop-product-data h3 {
  min-height: 40px;
  color: #0b111c;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.shop-product-data p {
  color: #5f6b7a;
  font-weight: 400;
}

.shop-price span,
.shop-price em {
  font-weight: 400;
}

.shop-price strong {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.product-action {
  background: #111722;
  border-color: #111722;
  color: #ffffff;
  font-weight: 500;
}

.product-action:hover,
.product-action:focus-visible {
  background: var(--seven-blue);
  border-color: var(--seven-blue);
}

.factory-media,
.shop-product-photo,
.mini-thumb {
  border-radius: 6px;
}

.factory-copy li svg {
  color: var(--seven-blue);
}

.shop-footer {
  border-top-color: rgba(16, 23, 34, 0.1);
}

@media (max-width: 980px) {
  .shop-header {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
    gap: 18px;
  }

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

  .shop-hero {
    min-height: 560px;
  }

  .idea-banner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .quote-form {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .shop-page,
  .shop-page main,
  .shop-header,
  .shop-menu,
  .shop-hero,
  .shop-footer {
    max-width: 100vw;
  }

  .shop-topbar {
    display: none;
  }

  .shop-header {
    min-height: 72px;
    width: 100vw;
    grid-template-columns: 116px minmax(0, auto);
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    overflow: hidden;
  }

  .shop-logo,
  .shop-logo img {
    width: 112px;
  }

  .shop-header-actions {
    width: auto;
    justify-content: end;
    gap: 8px;
  }

  .shop-header-actions .search-focus {
    display: none;
  }

  .shop-header-actions .shop-mini-action:first-child {
    display: none;
  }

  .shop-menu {
    width: 100vw;
    min-height: 58px;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 8px 12px;
    scrollbar-width: none;
  }

  .shop-menu::-webkit-scrollbar {
    display: none;
  }

  .shop-menu-track {
    flex: 0 0 max-content;
    margin: 0;
    max-width: none;
  }

  .shop-menu a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .shop-hero {
    min-height: 570px;
  }

  .shop-hero-content {
    width: min(326px, calc(100vw - 58px));
    max-width: calc(100vw - 58px);
    margin-left: 15px;
    padding: 30px 0 34px;
  }

  .shop-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.95rem);
    line-height: 1.06;
    font-weight: 500;
    overflow-wrap: normal;
  }

  .shop-hero p {
    max-width: 318px;
    font-size: 0.94rem;
    line-height: 1.55;
    overflow-wrap: normal;
  }

  .shop-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(290px, 100%);
  }

  .shop-hero-actions .shop-button {
    width: 100%;
  }

  .shop-categories,
  .shop-catalog,
  .gift-section,
  .factory-section,
  .idea-banner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .idea-banner {
    gap: 18px;
    padding: 18px;
  }

  .idea-banner h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .quote-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 14px;
  }

  .quote-form-head {
    display: grid;
    gap: 4px;
  }

  .quote-choice-row,
  .quote-field-grid {
    grid-template-columns: 1fr;
  }

  .shop-section-title.center {
    width: 100%;
    max-width: 100%;
    padding-inline: 8px;
  }

  .shop-section-title.center h2,
  .shop-section-title.center p {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .shop-categories .shop-section-title.center h2 {
    width: min(260px, 100%) !important;
    max-width: min(260px, 100%) !important;
    justify-self: center;
  }

  .shop-categories .shop-section-title.center p {
    width: min(288px, 100%) !important;
    max-width: min(288px, 100%) !important;
    justify-self: center;
  }

  .shop-section-title h2,
  .factory-copy h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 6.2vw, 1.8rem);
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .quote-card.idea-banner h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .shop-section-title p,
  .idea-banner p,
  .factory-copy p {
    max-width: 100%;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .round-category-list {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .round-category {
    min-width: 0;
    min-height: 148px;
    padding: 12px;
  }

  .round-category-photo {
    width: 68px;
    height: 68px;
  }
}
