/*
 * Danisoft Neo 2.7 — Model E / Tech Hub
 * Loaded last to provide one authoritative storefront layer without removing
 * the existing single-product, cart, checkout and account functionality.
 */

:root {
  --ds-tech-navy: #03112f;
  --ds-tech-navy-2: #071f4f;
  --ds-tech-blue: #0868f4;
  --ds-tech-cyan: #27b7ff;
  --ds-tech-ink: #0b1d3a;
  --ds-tech-muted: #66758d;
  --ds-tech-line: #dce5f1;
  --ds-tech-soft: #f3f7fc;
  --ds-tech-white: #fff;
  --ds-tech-success: #0b9b65;
  --ds-tech-danger: #e83059;
  --ds-tech-radius: 18px;
  --ds-tech-shadow: 0 24px 60px rgba(5, 29, 72, .14);
}

.ds-tech-hub {
  overflow: clip;
  background: var(--ds-tech-soft);
  color: var(--ds-tech-ink);
}

.ds-tech-hub a {
  text-decoration: none;
}

/* Compact, dark Tech Hub banner. */
.ds-tech-stage {
  position: relative;
  padding: 18px 0 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(15, 126, 255, .34), transparent 27%),
    radial-gradient(circle at 18% 85%, rgba(30, 168, 255, .13), transparent 32%),
    linear-gradient(125deg, #020c23 0%, #061943 48%, #06295f 100%);
}

.ds-tech-stage::before,
.ds-tech-stage::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.ds-tech-stage::before {
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(67, 163, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 163, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, #000 36%, #000 92%, transparent);
}

.ds-tech-stage::after {
  right: -150px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(85, 181, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(19, 112, 248, .035), 0 0 0 150px rgba(19, 112, 248, .025);
}

.ds-tech-hero {
  position: relative;
  z-index: 1;
  height: 374px;
  overflow: hidden;
  border: 1px solid rgba(107, 181, 255, .24);
  border-radius: 24px;
  background: rgba(3, 18, 50, .72);
  box-shadow: 0 25px 65px rgba(0, 7, 28, .34);
  isolation: isolate;
}

.ds-tech-hero__track,
.ds-tech-hero-slide {
  position: absolute;
  inset: 0;
}

.ds-tech-hero-slide {
  display: none;
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  align-items: center;
  gap: 28px;
  padding: 28px 68px 36px;
  color: #fff;
}

.ds-tech-hero-slide.is-active {
  display: grid;
}

.ds-tech-hero-slide__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.ds-tech-hero-slide.is-active .ds-tech-hero-slide__copy {
  opacity: 1;
  transform: translateY(0);
}

.ds-tech-hero-slide__brands {
  min-height: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
}

.ds-tech-hero-slide__brands > span {
  height: 25px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  background: rgba(255, 255, 255, .94);
}

.ds-tech-hero-slide__brands img {
  width: auto;
  max-width: 72px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.ds-tech-hero-slide__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #74d2ff;
  font-size: .61rem;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ds-tech-hero-slide__kicker .ds-icon {
  width: 17px;
  height: 17px;
}

.ds-tech-hero-slide h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.05vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.ds-tech-hero-slide__slogan {
  margin: 10px 0 0;
  color: #b8e7ff;
  font-size: .76rem;
  font-weight: 800;
}

.ds-tech-hero-slide__description {
  max-width: 555px;
  margin: 7px 0 15px;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  line-height: 1.48;
}

.ds-tech-hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ds-tech-hero-slide__actions .ds-button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 11px;
  font-size: .66rem;
  font-weight: 830;
}

.ds-button--tech {
  border-color: var(--ds-tech-blue);
  background: linear-gradient(135deg, #0876ff, #0755d9);
  box-shadow: 0 12px 28px rgba(3, 99, 255, .34);
  color: #fff;
}

.ds-button--tech:hover {
  border-color: #31adff;
  background: linear-gradient(135deg, #1590ff, #0865ed);
  color: #fff;
}

.ds-button--tech-outline {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.ds-button--tech-outline:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.ds-tech-hero-slide__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: .54rem;
  font-weight: 710;
}

.ds-tech-hero-slide__trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ds-tech-hero-slide__trust .ds-icon {
  width: 15px;
  height: 15px;
  color: #51c8ff;
}

.ds-tech-hero-slide__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 318px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(122, 197, 255, .2);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(248, 252, 255, .99), rgba(220, 235, 255, .95));
  box-shadow: 0 24px 65px rgba(0, 8, 29, .27);
}

.ds-tech-hero-slide__visual::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, .2), transparent 48%);
  content: "";
}

.ds-tech-hero-slide__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.ds-tech-hero-slide__glow {
  position: absolute;
  z-index: 0;
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(22, 118, 255, .2);
  filter: blur(24px);
}

.ds-tech-hero-slide__badge {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid rgba(184, 206, 237, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #405573;
  font-size: .48rem;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(5, 30, 78, .12);
}

.ds-tech-hero-slide__badge .ds-icon {
  width: 12px;
  height: 12px;
  color: var(--ds-tech-blue);
}

.ds-tech-hero-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(0, 9, 32, .52);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.ds-tech-hero-arrow:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ds-tech-blue);
}

.ds-tech-hero-arrow--prev { left: 17px; }
.ds-tech-hero-arrow--next { right: 17px; }

.ds-tech-hero-dots {
  position: absolute;
  z-index: 6;
  bottom: 13px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.ds-tech-hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .4);
  transition: width 180ms ease, background 180ms ease;
}

.ds-tech-hero-dot.is-active {
  width: 25px;
  background: #32c1ff;
}

/* Category explorer: the single category block used by the shop. */
.ds-shop-category-hub--tech {
  position: relative;
  z-index: 4;
  margin-top: -82px;
  padding: 0 0 28px;
  border: 0;
  background: transparent;
}

.ds-tech-category-explorer {
  min-width: 0;
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(192, 208, 230, .82);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--ds-tech-shadow);
}

.ds-tech-category-index {
  min-width: 0;
  border-right: 1px solid var(--ds-tech-line);
  background: linear-gradient(180deg, #fbfdff, #f4f8fd);
}

.ds-tech-category-index > summary {
  min-height: 68px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 17px;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--ds-tech-line);
  color: var(--ds-tech-ink);
  cursor: pointer;
  list-style: none;
}

.ds-tech-category-index > summary::-webkit-details-marker { display: none; }

.ds-tech-category-index > summary > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #0875ff, #0750cf);
  color: #fff;
}

.ds-tech-category-index > summary > span .ds-icon {
  width: 18px;
  height: 18px;
}

.ds-tech-category-index > summary > .ds-icon {
  width: 16px;
  height: 16px;
  color: #728098;
  transition: transform 180ms ease;
}

.ds-tech-category-index[open] > summary > .ds-icon { transform: rotate(180deg); }

.ds-tech-category-index__body {
  padding: 13px 12px 15px;
}

.ds-tech-category-search {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.ds-tech-category-search > .ds-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 11px;
  width: 15px;
  height: 15px;
  color: #718099;
  transform: translateY(-50%);
}

.ds-tech-category-search input[type="search"] {
  width: 100%;
  min-height: 39px;
  padding: 8px 10px 8px 34px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #fff;
  color: var(--ds-tech-ink);
  font-size: .61rem;
  outline: 0;
}

.ds-tech-category-search input[type="search"]:focus {
  border-color: var(--ds-tech-blue);
  box-shadow: 0 0 0 3px rgba(8, 104, 244, .09);
}

.ds-tech-category-list {
  max-height: 415px;
  display: grid;
  gap: 3px;
  overflow-y: auto;
  padding-right: 3px;
  scrollbar-color: #c9d6e7 transparent;
  scrollbar-width: thin;
}

.ds-tech-category-list > a,
.ds-tech-category-entry > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #40506a;
}

.ds-tech-category-list > a:hover,
.ds-tech-category-list > a.is-active,
.ds-tech-category-entry > a:hover,
.ds-tech-category-entry > a.is-active {
  border-color: #cfe0fb;
  background: #eaf3ff;
  color: #0755cd;
}

.ds-tech-category-list > a > span,
.ds-tech-category-entry > a > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  border-radius: 8px;
  background: #edf3fb;
  color: var(--ds-tech-blue);
}

.ds-tech-category-list > a.is-active > span,
.ds-tech-category-entry > a.is-active > span {
  background: var(--ds-tech-blue);
  color: #fff;
}

.ds-tech-category-list .ds-icon {
  width: 15px;
  height: 15px;
}

.ds-tech-category-list > a > strong,
.ds-tech-category-list > a > small,
.ds-tech-category-entry > a > strong,
.ds-tech-category-entry > a > small {
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-tech-category-list > a > strong,
.ds-tech-category-entry > a > strong {
  align-self: end;
  font-size: .61rem;
  line-height: 1.15;
}

.ds-tech-category-list > a > small,
.ds-tech-category-entry > a > small {
  align-self: start;
  color: #8290a6;
  font-size: .49rem;
  line-height: 1.1;
}

.ds-tech-category-entry {
  min-width: 0;
}

.ds-tech-category-children {
  margin: 2px 0 5px 36px;
}

.ds-tech-category-children > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 4px 7px;
  border-radius: 7px;
  color: #76849a;
  font-size: .46rem;
  font-weight: 740;
  cursor: pointer;
  list-style: none;
}

.ds-tech-category-children > summary::-webkit-details-marker { display: none; }

.ds-tech-category-children > summary:hover {
  background: #edf4fd;
  color: #0759ce;
}

.ds-tech-category-children > summary .ds-icon {
  width: 12px;
  height: 12px;
  transition: transform 180ms ease;
}

.ds-tech-category-children[open] > summary .ds-icon { transform: rotate(180deg); }

.ds-tech-category-children__level {
  display: grid;
  gap: 2px;
  margin: 3px 0 0;
  padding: 0;
  list-style: none;
}

.ds-tech-category-children__level .ds-tech-category-children__level {
  margin-left: 16px;
}

.ds-tech-category-children__level a {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 7px;
  color: #526177;
}

.ds-tech-category-children__level a:hover {
  background: #edf4fd;
  color: #0759ce;
}

.ds-tech-category-children__level a > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef3f9;
  color: var(--ds-tech-blue);
}

.ds-tech-category-children__level a .ds-icon {
  width: 12px;
  height: 12px;
}

.ds-tech-category-children__level a strong {
  min-width: 0;
  overflow: hidden;
  font-size: .5rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-tech-category-children__level a small {
  color: #8793a5;
  font-size: .43rem;
}

.ds-tech-category-empty {
  margin: 12px 2px 0;
  color: var(--ds-tech-muted);
  font-size: .61rem;
}

.ds-tech-category-showcase {
  min-width: 0;
  padding: 20px;
}

.ds-tech-category-showcase__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.ds-tech-category-showcase__heading span {
  color: var(--ds-tech-blue);
  font-size: .54rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ds-tech-category-showcase__heading h3 {
  margin: 3px 0 0;
  color: var(--ds-tech-ink);
  font-size: 1.35rem;
  font-weight: 890;
  letter-spacing: -.035em;
}

.ds-tech-category-showcase__heading > a {
  color: var(--ds-tech-blue);
  font-size: .59rem;
  font-weight: 820;
  white-space: nowrap;
}

.ds-tech-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ds-tech-category-card {
  position: relative;
  min-width: 0;
  min-height: 157px;
  display: grid;
  grid-template-rows: 86px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f5f9fe);
  color: var(--ds-tech-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ds-tech-category-card:hover,
.ds-tech-category-card.is-active {
  border-color: rgba(8, 104, 244, .46);
  box-shadow: 0 13px 28px rgba(5, 42, 102, .1);
  transform: translateY(-2px);
}

.ds-tech-category-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e6edf6;
  background: #edf4fd;
}

.ds-tech-category-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 23, 58, .08), transparent 58%);
  content: "";
}

.ds-tech-category-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.ds-tech-category-card:hover .ds-tech-category-card__visual img { transform: scale(1.035); }

.ds-tech-category-card__visual i {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 6px 16px rgba(8, 32, 70, .12);
  color: var(--ds-tech-blue);
  font-style: normal;
}

.ds-tech-category-card__visual i .ds-icon {
  width: 15px;
  height: 15px;
}

.ds-tech-category-card__copy {
  min-width: 0;
  display: block;
  padding: 10px 28px 10px 11px;
}

.ds-tech-category-card__copy strong,
.ds-tech-category-card__copy small,
.ds-tech-category-card__copy em {
  min-width: 0;
  display: block;
}

.ds-tech-category-card__copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ds-tech-ink);
  font-size: .68rem;
  font-weight: 840;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ds-tech-category-card__copy small {
  margin-top: 3px;
  color: var(--ds-tech-blue);
  font-size: .48rem;
  font-weight: 770;
}

.ds-tech-category-card__copy em {
  margin-top: 4px;
  overflow: hidden;
  color: #7a8799;
  font-size: .47rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-tech-category-card__arrow {
  position: absolute;
  right: 10px;
  bottom: 12px;
  color: var(--ds-tech-blue);
  font-size: .85rem;
  font-weight: 900;
}

.ds-tech-subcategory-band {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(125deg, #031331, #08346f);
  color: #fff;
}

.ds-tech-subcategory-band__title {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  white-space: nowrap;
}

.ds-tech-subcategory-band__title > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(49, 183, 255, .16);
  color: #6bd2ff;
}

.ds-tech-subcategory-band__title .ds-icon {
  width: 15px;
  height: 15px;
}

.ds-tech-subcategory-band__title strong {
  font-size: .59rem;
}

.ds-tech-subcategory-band nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ds-tech-subcategory-band nav::-webkit-scrollbar { display: none; }

.ds-tech-subcategory-band nav a {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: .49rem;
  font-weight: 720;
  white-space: nowrap;
}

.ds-tech-subcategory-band nav a:hover {
  border-color: #70d4ff;
  background: rgba(44, 173, 255, .14);
  color: #fff;
}

.ds-tech-subcategory-band__all {
  color: #84dbff;
  font-size: .52rem;
  font-weight: 820;
  white-space: nowrap;
}

/* Category archive header. */
.ds-tech-term-hero {
  padding: 42px 0 112px;
  background:
    radial-gradient(circle at 82% 0, rgba(45, 155, 255, .35), transparent 27%),
    linear-gradient(125deg, #020d27, #062258 74%, #0758bd);
}

.ds-tech-term-hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

/* Catalogue toolbar and product grid. */
.ds-tech-catalogue {
  padding: 30px 0 75px;
  background: var(--ds-tech-soft);
}

.ds-tech-catalogue .ds-shop-results__heading {
  margin-bottom: 14px;
  padding: 0;
  border: 0;
}

.ds-tech-catalogue .ds-shop-results__heading h2 {
  margin-top: 5px;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.ds-tech-catalogue .ds-shop-results__heading p {
  margin: 7px 0 0;
  color: var(--ds-tech-muted);
  font-size: .65rem;
}

.ds-tech-filter-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
  padding: 9px;
  border: 1px solid var(--ds-tech-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 36, 76, .055);
}

.ds-tech-filter-chips a {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid #dfe7f1;
  border-radius: 9px;
  background: #f9fbfe;
  color: #42526b;
  font-size: .57rem;
  font-weight: 790;
}

.ds-tech-filter-chips a:hover,
.ds-tech-filter-chips a.is-active {
  border-color: #bdd6fb;
  background: #eaf3ff;
  color: #0754c7;
}

.ds-tech-filter-chips a.is-promo:hover,
.ds-tech-filter-chips a.is-promo.is-active {
  border-color: #ffc7d3;
  background: #fff0f4;
  color: #d51f4a;
}

.ds-tech-filter-chips a.is-stock:hover,
.ds-tech-filter-chips a.is-stock.is-active {
  border-color: #bde9d8;
  background: #eefbf6;
  color: #088355;
}

.ds-tech-filter-chips .ds-icon {
  width: 14px;
  height: 14px;
}

.ds-tech-catalogue .ds-shop-filters > summary {
  min-height: 43px;
  border-color: #c9d9ee;
  background: #fff;
  color: #17385f;
  box-shadow: 0 7px 20px rgba(11, 43, 84, .06);
}

.ds-tech-catalogue .woocommerce-result-count {
  margin: 10px 0 16px;
  color: #6d7a90;
  font-size: .62rem;
  font-weight: 700;
}

.ds-tech-catalogue .woocommerce-ordering {
  margin: 0 0 16px;
}

.ds-tech-catalogue .woocommerce-ordering select {
  min-height: 42px;
  min-width: 230px;
  border-color: #d7e2ef;
  border-radius: 10px;
  background: #fff;
}

.ds-tech-hub ul.products,
.ds-tech-hub .woocommerce ul.products,
.ds-tech-hub.woocommerce-page ul.products,
.ds-tech-hub .ds-shop-results .woocommerce ul.products {
  clear: both;
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: stretch;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.ds-tech-hub ul.products::before,
.ds-tech-hub ul.products::after,
.ds-tech-hub .woocommerce ul.products::before,
.ds-tech-hub .woocommerce ul.products::after {
  display: none !important;
}

.ds-tech-hub ul.products li.product,
.ds-tech-hub .woocommerce ul.products li.product,
.ds-tech-hub.woocommerce-page ul.products li.product,
.ds-tech-hub .ds-shop-results .woocommerce ul.products li.product {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #dce5f0 !important;
  border-radius: 15px !important;
  background: #fff !important;
  box-shadow: 0 9px 27px rgba(8, 31, 69, .065) !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ds-tech-hub ul.products li.product:hover,
.ds-tech-hub .woocommerce ul.products li.product:hover {
  border-color: rgba(8, 104, 244, .38) !important;
  box-shadow: 0 17px 38px rgba(8, 31, 69, .12) !important;
  transform: translateY(-3px);
}

.ds-tech-hub .ds-product-card > a.woocommerce-LoopProduct-link {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  color: inherit;
}

.ds-tech-hub .ds-product-card__media {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 178px !important;
  min-height: 178px !important;
  max-height: 178px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 13px !important;
  border-bottom: 1px solid #eaf0f7;
  background: linear-gradient(145deg, #fff, #f3f7fc) !important;
}

.ds-tech-hub ul.products li.product .ds-product-card__media img,
.ds-tech-hub .woocommerce ul.products li.product .ds-product-card__media img,
.ds-tech-hub .ds-product-card__media img,
.ds-tech-hub .woocommerce ul.products li.product .woocommerce-placeholder {
  position: static !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  display: block !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  object-position: center !important;
}

.ds-tech-hub .ds-product-card__body {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 13px 13px 11px !important;
}

.ds-tech-hub .ds-product-card__category {
  max-width: 100%;
  margin-bottom: 7px;
  color: #075acb;
  font-size: .48rem;
}

.ds-tech-hub .ds-product-card__brand {
  max-width: 100%;
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
  color: #6d7890;
  font-size: .49rem;
  font-weight: 820;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ds-tech-hub .ds-product-card__category > span {
  width: 21px;
  height: 21px;
}

.ds-tech-hub ul.products li.product .woocommerce-loop-product__title,
.ds-tech-hub .woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 0 !important;
  display: -webkit-box !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: var(--ds-tech-ink) !important;
  font-size: .76rem !important;
  font-weight: 850 !important;
  line-height: 1.28 !important;
  letter-spacing: -.012em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ds-tech-hub ul.products li.product .price,
.ds-tech-hub .woocommerce ul.products li.product .price {
  margin: 10px 0 0 !important;
  color: var(--ds-tech-blue) !important;
  font-size: .91rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.ds-tech-hub ul.products li.product .price del,
.ds-tech-hub .woocommerce ul.products li.product .price del {
  margin-right: 4px;
  color: #8e99a9 !important;
  font-size: .6rem !important;
  font-weight: 650 !important;
}

.ds-tech-hub .ds-product-card__stock {
  margin-top: 8px;
  padding: 4px 7px;
  font-size: .49rem;
}

.ds-tech-hub ul.products li.product .button,
.ds-tech-hub ul.products li.product .added_to_cart,
.ds-tech-hub .woocommerce ul.products li.product .button,
.ds-tech-hub .woocommerce ul.products li.product .added_to_cart {
  width: auto !important;
  max-width: calc(100% - 24px) !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 12px 12px !important;
  padding: 8px 9px !important;
  overflow: hidden;
  border-radius: 9px !important;
  background: linear-gradient(135deg, #0874ff, #0751cf) !important;
  box-shadow: 0 8px 18px rgba(7, 95, 242, .18) !important;
  color: #fff !important;
  font-size: .57rem !important;
  font-weight: 820 !important;
  line-height: 1.18 !important;
  text-align: center;
}

.ds-tech-hub ul.products li.product .added_to_cart,
.ds-tech-hub .woocommerce ul.products li.product .added_to_cart {
  margin-top: -6px !important;
  background: #eaf3ff !important;
  box-shadow: none !important;
  color: #0755c8 !important;
}

.ds-tech-hub .woocommerce span.onsale,
.ds-tech-hub .ds-product-card__new {
  top: 10px !important;
  left: 10px !important;
  padding: 5px 8px !important;
  border-radius: 8px !important;
  font-size: .48rem !important;
}

.ds-tech-hub .ds-product-card__view {
  right: 9px;
  bottom: 8px;
  font-size: .46rem;
}

/* Compact category drawer above a single product. */
.ds-shop-category-hub--product {
  padding: 12px 0;
  border-bottom: 1px solid var(--ds-tech-line);
  background: #f5f8fd;
}

.ds-product-category-drawer {
  position: relative;
}

.ds-product-category-drawer > summary {
  min-height: 56px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #d9e3f0;
  border-radius: 13px;
  background: #fff;
  color: var(--ds-tech-ink);
  box-shadow: 0 7px 22px rgba(8, 31, 69, .055);
  cursor: pointer;
  list-style: none;
}

.ds-product-category-drawer > summary::-webkit-details-marker { display: none; }

.ds-product-category-drawer > summary > .ds-icon:first-child {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 9px;
  background: #eaf3ff;
  color: var(--ds-tech-blue);
}

.ds-product-category-drawer > summary > .ds-icon:last-child {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.ds-product-category-drawer[open] > summary > .ds-icon:last-child { transform: rotate(180deg); }

.ds-product-category-drawer > summary strong,
.ds-product-category-drawer > summary small {
  display: block;
}

.ds-product-category-drawer > summary strong { font-size: .7rem; }

.ds-product-category-drawer > summary small {
  margin-top: 2px;
  color: #7a879a;
  font-size: .54rem;
}

.ds-product-category-drawer__panel {
  margin-top: 10px;
}

.ds-product-category-drawer__panel .ds-tech-category-explorer {
  box-shadow: 0 17px 42px rgba(5, 29, 72, .11);
}

/* Reinforce the Premium Split product page against plugin widths/floats. */
.ds-tech-hub .ds-single-product-wrap {
  padding-top: 28px;
}

.ds-tech-hub.single-product .woocommerce div.product,
.single-product .ds-tech-hub .woocommerce div.product {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, .96fr) !important;
  align-items: start !important;
  gap: clamp(24px, 4vw, 52px) !important;
  float: none !important;
}

.single-product .ds-tech-hub .woocommerce div.product div.images,
.single-product .ds-tech-hub .woocommerce div.product div.summary {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

.single-product .ds-tech-hub .woocommerce div.product .woocommerce-tabs,
.single-product .ds-tech-hub .woocommerce div.product .related,
.single-product .ds-tech-hub .woocommerce div.product .upsells {
  width: 100% !important;
  max-width: 100% !important;
  grid-column: 1 / -1 !important;
  float: none !important;
  clear: both !important;
}

/* The alternate shipping address stays hidden on every viewport. */
body.woocommerce-checkout #ship-to-different-address,
body.woocommerce-checkout .shipping_address,
body.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address {
  display: none !important;
  visibility: hidden !important;
}

@media (max-width: 1120px) {
  .ds-tech-hero-slide {
    grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr);
    gap: 20px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .ds-tech-category-explorer {
    grid-template-columns: 225px minmax(0, 1fr);
  }

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

  .ds-tech-hub ul.products,
  .ds-tech-hub .woocommerce ul.products,
  .ds-tech-hub.woocommerce-page ul.products,
  .ds-tech-hub .ds-shop-results .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .ds-tech-stage {
    padding-bottom: 84px;
  }

  .ds-tech-hero {
    height: 350px;
  }

  .ds-tech-hero-slide {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .94fr);
    gap: 16px;
    padding: 22px 40px 30px;
  }

  .ds-tech-hero-slide h2 {
    font-size: clamp(1.75rem, 4.2vw, 2.35rem);
  }

  .ds-tech-hero-slide__visual {
    height: 286px;
  }

  .ds-tech-hero-slide__trust span:nth-child(3) {
    display: none;
  }

  .ds-shop-category-hub--tech {
    margin-top: -62px;
  }

  .ds-tech-category-explorer {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .ds-tech-category-showcase {
    padding: 16px;
  }

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

  .ds-tech-category-card {
    min-height: 148px;
  }

  .ds-tech-subcategory-band {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ds-tech-subcategory-band__all {
    display: none;
  }

  .ds-tech-hub ul.products,
  .ds-tech-hub .woocommerce ul.products,
  .ds-tech-hub.woocommerce-page ul.products,
  .ds-tech-hub .ds-shop-results .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .single-product .ds-tech-hub .woocommerce div.product {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .ds-tech-hub .ds-shop-mobile-search {
    padding-top: 9px;
    background: #fff;
  }

  .ds-tech-stage {
    padding: 10px 0 52px;
  }

  .ds-tech-hero {
    height: 482px;
    border-radius: 18px;
  }

  .ds-tech-hero-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 190px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .ds-tech-hero-slide__visual {
    height: 190px;
    order: 1;
    border: 0;
    border-bottom: 1px solid rgba(118, 193, 255, .22);
    border-radius: 0;
    box-shadow: none;
  }

  .ds-tech-hero-slide__visual img {
    object-fit: contain;
  }

  .ds-tech-hero-slide__badge {
    right: 9px;
    bottom: 8px;
    font-size: .42rem;
  }

  .ds-tech-hero-slide__copy {
    min-height: 0;
    order: 2;
    padding: 15px 17px 36px;
    overflow: hidden;
  }

  .ds-tech-hero-slide__brands {
    min-height: 23px;
    margin-bottom: 5px;
  }

  .ds-tech-hero-slide__brands > span {
    height: 22px;
    min-width: 43px;
    padding: 3px 6px;
  }

  .ds-tech-hero-slide__brands img {
    max-width: 58px;
    height: 12px;
  }

  .ds-tech-hero-slide__kicker {
    margin-bottom: 5px;
    font-size: .53rem;
  }

  .ds-tech-hero-slide h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.03;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ds-tech-hero-slide__slogan {
    margin-top: 6px;
    font-size: .61rem;
  }

  .ds-tech-hero-slide__description {
    display: -webkit-box;
    margin: 4px 0 9px;
    overflow: hidden;
    font-size: .59rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ds-tech-hero-slide__actions {
    gap: 7px;
  }

  .ds-tech-hero-slide__actions .ds-button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: .56rem;
  }

  .ds-tech-hero-slide__trust {
    display: none;
  }

  .ds-tech-hero-arrow {
    top: 75px;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    transform: none;
  }

  .ds-tech-hero-arrow--prev { left: 8px; }
  .ds-tech-hero-arrow--next { right: 8px; }

  .ds-tech-hero-dots {
    bottom: 11px;
  }

  .ds-shop-category-hub--tech {
    margin-top: -31px;
    padding-bottom: 18px;
  }

  .ds-tech-category-explorer {
    display: block;
    overflow: visible;
    border-radius: 17px;
  }

  .ds-tech-category-index {
    border-right: 0;
    border-bottom: 1px solid var(--ds-tech-line);
    border-radius: 17px 17px 0 0;
  }

  .ds-tech-category-index > summary {
    min-height: 57px;
    padding: 10px 13px;
  }

  .ds-tech-category-index__body {
    padding: 11px;
  }

  .ds-tech-category-list {
    max-height: 270px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .ds-tech-category-list > a,
  .ds-tech-category-entry > a {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 6px;
    padding: 7px;
  }

  .ds-tech-category-list > a > span,
  .ds-tech-category-entry > a > span {
    width: 27px;
    height: 27px;
  }

  .ds-tech-category-list > a > strong,
  .ds-tech-category-entry > a > strong {
    font-size: .55rem;
  }

  .ds-tech-category-entry {
    min-width: 0;
  }

  .ds-tech-category-children {
    margin-left: 31px;
  }

  .ds-tech-category-showcase {
    padding: 14px 11px 11px;
  }

  .ds-tech-category-showcase__heading {
    align-items: flex-start;
    margin-bottom: 11px;
  }

  .ds-tech-category-showcase__heading h3 {
    font-size: 1.16rem;
  }

  .ds-tech-category-showcase__heading > a {
    display: none;
  }

  .ds-tech-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ds-tech-category-card {
    min-height: 142px;
    grid-template-rows: 75px minmax(0, 1fr);
    border-radius: 12px;
  }

  .ds-tech-category-card__copy {
    padding: 8px 23px 8px 9px;
  }

  .ds-tech-category-card__copy strong {
    font-size: .61rem;
  }

  .ds-tech-category-card__copy em {
    display: none;
  }

  .ds-tech-subcategory-band {
    display: block;
    margin-top: 9px;
    padding: 9px;
  }

  .ds-tech-subcategory-band__title {
    margin-bottom: 7px;
    padding: 0 0 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .ds-tech-catalogue {
    padding: 22px 0 58px;
  }

  .ds-tech-catalogue .ds-shop-results__heading {
    display: grid;
    gap: 11px;
  }

  .ds-tech-catalogue .ds-shop-results__actions {
    width: 100%;
  }

  .ds-tech-catalogue .ds-shop-filters,
  .ds-tech-catalogue .ds-shop-filters > summary {
    width: 100%;
  }

  .ds-tech-filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 7px;
    scrollbar-width: none;
  }

  .ds-tech-filter-chips::-webkit-scrollbar { display: none; }

  .ds-tech-filter-chips a {
    flex: 0 0 auto;
  }

  .ds-tech-catalogue .woocommerce-ordering,
  .ds-tech-catalogue .woocommerce-ordering select {
    width: 100%;
  }

  .ds-tech-hub ul.products,
  .ds-tech-hub .woocommerce ul.products,
  .ds-tech-hub.woocommerce-page ul.products,
  .ds-tech-hub .ds-shop-results .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .ds-tech-hub .ds-product-card__media {
    height: 142px !important;
    min-height: 142px !important;
    max-height: 142px !important;
    padding: 9px !important;
  }

  .ds-tech-hub .ds-product-card__body {
    padding: 10px 9px 9px !important;
  }

  .ds-tech-hub .ds-product-card__category {
    width: 100%;
    margin-bottom: 6px;
    font-size: .43rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ds-tech-hub .ds-product-card__category > span {
    width: 19px;
    height: 19px;
  }

  .ds-tech-hub ul.products li.product .woocommerce-loop-product__title,
  .ds-tech-hub .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.55em !important;
    font-size: .66rem !important;
  }

  .ds-tech-hub ul.products li.product .price,
  .ds-tech-hub .woocommerce ul.products li.product .price {
    font-size: .77rem !important;
  }

  .ds-tech-hub .ds-product-card__stock {
    font-size: .43rem;
  }

  .ds-tech-hub ul.products li.product .button,
  .ds-tech-hub ul.products li.product .added_to_cart,
  .ds-tech-hub .woocommerce ul.products li.product .button,
  .ds-tech-hub .woocommerce ul.products li.product .added_to_cart {
    max-width: calc(100% - 16px) !important;
    min-height: 37px !important;
    margin: 0 8px 8px !important;
    padding: 7px 6px !important;
    font-size: .5rem !important;
  }

  .ds-product-category-drawer > summary small {
    display: none;
  }

  .ds-product-category-drawer__panel .ds-tech-category-showcase {
    display: block;
  }

  .ds-tech-hub .ds-single-product-wrap {
    padding-top: 20px;
  }
}

@media (max-width: 390px) {
  .ds-tech-hero {
    height: 470px;
  }

  .ds-tech-hero-slide__actions .ds-button {
    padding-inline: 8px;
  }

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

  .ds-tech-category-card {
    min-height: 136px;
    grid-template-rows: 70px minmax(0, 1fr);
  }

  .ds-tech-hub .ds-product-card__media {
    height: 126px !important;
    min-height: 126px !important;
    max-height: 126px !important;
  }

  .ds-tech-hub ul.products li.product .button,
  .ds-tech-hub ul.products li.product .added_to_cart,
  .ds-tech-hub .woocommerce ul.products li.product .button,
  .ds-tech-hub .woocommerce ul.products li.product .added_to_cart {
    font-size: .47rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds-tech-hero-slide__copy,
  .ds-tech-category-card,
  .ds-tech-category-card__visual img,
  .ds-tech-hub .woocommerce ul.products li.product {
    transition: none !important;
  }
}
