@charset "UTF-8";
/* xs - SMARTPHONE PORTRAIT STYLES */
.cn-product-inline__box .cn-product-inline__button, a.cn-product-inline__button {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-weight: 700;
  background-color: rgba(var(--box-rgb), 0.5);
  border: 1px solid var(--cn-green);
  color: var(--cn-green);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cn-product-inline__box .cn-product-inline__button::before, a.cn-product-inline__button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--headline);
  box-shadow: 0 0 10px 2px var(--headline);
  top: -10%;
  opacity: 0.5;
}
.cn-product-inline__box .cn-product-inline__button:hover, a.cn-product-inline__button:hover, .cn-product-inline__box .cn-product-inline__button:focus, a.cn-product-inline__button:focus {
  border-color: var(--cn-green);
  box-shadow: 0 0 15px rgba(var(--cn-green-rgb), 0.5);
  color: var(--cn-green);
}
.cn-product-inline__box .cn-product-inline__button:hover::before, a.cn-product-inline__button:hover::before, .cn-product-inline__box .cn-product-inline__button:focus::before, a.cn-product-inline__button:focus::before {
  top: 110%;
  transition: top 0.4s ease-in-out;
}
.cn-product-inline__box .cn-product-inline__button:hover, a.cn-product-inline__button:hover, .cn-product-inline__box .cn-product-inline__button:focus, a.cn-product-inline__button:focus {
  color: var(--antra);
  background-color: var(--cn-green);
}
.cn-product-inline__box {
  position: relative;
  display: flex;
  background-color: rgba(var(--box-rgb), 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--cn-blue-rgb), 0.3);
  padding: var(--spacing-sm);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}
@keyframes crtScanlines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4px;
  }
}
@keyframes crtFlicker {
  0%, 100% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  93% {
    opacity: 0.97;
  }
  94% {
    opacity: 1;
  }
  97% {
    opacity: 0.98;
  }
  98% {
    opacity: 1;
  }
}
@keyframes asciiRain {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}
@keyframes chromaticPulse {
  0%, 100% {
    text-shadow: -2px 0 rgba(0, 255, 255, 0.7), 2px 0 rgba(255, 0, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(155, 89, 182, 0.3);
  }
  50% {
    text-shadow: -1px 0 rgba(0, 255, 255, 0.5), 1px 0 rgba(255, 0, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.7), 0 0 60px rgba(155, 89, 182, 0.5);
  }
}
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 20px rgba(155, 89, 182, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(155, 89, 182, 0.6));
  }
}
@keyframes cursorBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.home-jumbo {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(30, 30, 40, 0.9) 0%, #0a0a0f 100%);
  animation: crtFlicker 8s infinite;
  isolation: isolate;
}
.home-jumbo .home-jumbo__matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.12;
}
.home-jumbo .home-jumbo__matrix-col {
  position: absolute;
  top: 0;
  font-family: var(--font-display, "Share Tech Mono", monospace);
  font-size: var(--size, 14px);
  opacity: var(--depth, 1);
  line-height: 1.4;
  color: #0ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation: asciiRain var(--duration, 15s) linear infinite;
  animation-delay: calc(var(--delay, 0s) - var(--duration, 15s) * 0.5);
}
.home-jumbo .home-jumbo__matrix-col:nth-child(odd) {
  color: rgba(155, 89, 182, 0.9);
  text-shadow: 0 0 8px rgba(155, 89, 182, 0.6);
}
.home-jumbo .home-jumbo__matrix-col:nth-child(7n) {
  --size: 8px;
  --depth: 0.3;
  --duration: 28s;
}
.home-jumbo .home-jumbo__matrix-col:nth-child(4n) {
  --size: 10px;
  --depth: 0.5;
  --duration: 22s;
}
.home-jumbo .home-jumbo__matrix-col:nth-child(3n) {
  --size: 13px;
  --depth: 0.7;
  --duration: 18s;
}
.home-jumbo .home-jumbo__matrix-col:nth-child(5n) {
  --size: 18px;
  --depth: 1;
  --duration: 14s;
}
.home-jumbo .home-jumbo__matrix-col:nth-child(6n+1) {
  --size: 24px;
  --depth: 1.3;
  --duration: 10s;
}
.home-jumbo .home-jumbo__matrix-col:nth-child(11n) {
  --size: 28px;
  --depth: 1.5;
  --duration: 8s;
}
.home-jumbo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0.15) 4px);
  animation: crtScanlines 0.5s linear infinite;
}
.home-jumbo .home-jumbo__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: inset 0 0 100px rgba(0, 255, 255, 0.03), inset 0 0 200px rgba(155, 89, 182, 0.02);
}
.home-jumbo .home-jumbo__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
}
.home-jumbo .home-jumbo__logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  animation: glowPulse 4s ease-in-out infinite;
  will-change: filter;
}
@media (min-width: 768px) {
  .home-jumbo .home-jumbo__logo {
    max-width: 220px;
  }
}
.home-jumbo .home-jumbo__title {
  font-family: var(--font-heading, "Share Tech Mono", "Courier New", monospace);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
  max-width: 700px;
  animation: chromaticPulse 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .home-jumbo .home-jumbo__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
}
.home-jumbo .home-jumbo__tagline {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}
.home-jumbo .home-jumbo__tagline::after {
  content: "_";
  animation: cursorBlink 1s step-end infinite;
  color: #0ff;
  margin-left: 2px;
  font-weight: bold;
}
.home-jumbo .home-jumbo__cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #0ff;
  background: transparent;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  animation: glowPulse 3s ease-in-out infinite;
}
.home-jumbo .home-jumbo__cta .gb-shape {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-jumbo .home-jumbo__cta .gb-shape svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.home-jumbo .home-jumbo__cta:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.1);
  color: #fff;
  transform: scale(1.1);
  animation-play-state: paused;
}
.home-jumbo .home-jumbo__cta:focus {
  outline: 2px solid #0ff;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .home-jumbo {
    min-height: 50vh;
    padding: 2rem 1rem;
  }
  .home-jumbo::after {
    background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0, 0, 0, 0.08) 3px, rgba(0, 0, 0, 0.08) 6px);
    animation: crtScanlines 1s linear infinite;
  }
  .home-jumbo .home-jumbo__matrix {
    opacity: 0.06;
  }
  .home-jumbo .home-jumbo__matrix-col {
    animation-duration: 30s;
  }
  .home-jumbo .home-jumbo__logo {
    max-width: 200px;
    animation-duration: 6s;
  }
  .home-jumbo .home-jumbo__title {
    animation-duration: 10s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-jumbo {
    animation: none;
  }
  .home-jumbo::after {
    animation: none;
  }
  .home-jumbo .home-jumbo__matrix {
    display: none;
  }
  .home-jumbo .home-jumbo__logo {
    animation: none;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  }
  .home-jumbo .home-jumbo__title {
    animation: none;
    text-shadow: -1px 0 rgba(0, 255, 255, 0.5), 1px 0 rgba(155, 89, 182, 0.5), 0 0 20px rgba(0, 255, 255, 0.4);
  }
  .home-jumbo .home-jumbo__tagline::after {
    animation: none;
    opacity: 1;
  }
}
@keyframes matrixScanline {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes matrixFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(var(--cn-green-rgb), 0.8), 0 0 20px rgba(var(--cn-green-rgb), 0.4);
  }
  20% {
    opacity: 0.95;
    text-shadow: 0 0 8px rgba(var(--cn-green-rgb), 0.6), 0 0 15px rgba(var(--cn-green-rgb), 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(var(--cn-green-rgb), 0.9), 0 0 25px rgba(var(--cn-green-rgb), 0.5);
  }
}
@keyframes codeBlockReveal {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes linkGlowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(var(--cn-blue-rgb), 0.4), inset 0 0 15px rgba(var(--cn-blue-rgb), 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(var(--cn-blue-rgb), 0.6), inset 0 0 20px rgba(var(--cn-blue-rgb), 0.15);
  }
}
.wp-block-code {
  position: relative;
  background: rgba(var(--antra-rgb), 0.9);
  border: 1px solid rgba(var(--cn-green-rgb), 0.4);
  border-radius: 0;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  overflow: hidden;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  box-shadow: 0 0 15px rgba(var(--cn-green-rgb), 0.2), inset 0 0 20px rgba(var(--cn-green-rgb), 0.05);
  animation: codeBlockReveal 0.5s ease-out;
}
.wp-block-code::after {
  content: "";
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-sm);
  font-size: var(--fs-xs);
  font-family: var(--font-ui);
  color: rgba(var(--cn-green-rgb), 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
}
.wp-block-code::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--cn-green-rgb), 0.4), transparent);
  animation: matrixScanline 3s linear infinite;
  z-index: 1;
  pointer-events: none;
}
.wp-block-code code {
  display: block;
  font-family: "Courier New", "Monaco", monospace;
  font-size: var(--fs-sm);
  color: var(--cn-green);
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(var(--cn-green-rgb), 0.5);
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
  z-index: 2;
  animation: matrixFlicker 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .wp-block-code code {
    font-size: var(--fs-base);
    letter-spacing: 0.8px;
  }
}
.wp-block-code[style] {
  border-radius: 0;
}
.wp-block-code code[style] {
  color: inherit;
  background: transparent;
  padding: 0;
}
.gw-related {
  position: relative;
  padding: var(--spacing-sm);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
  background: rgba(var(--box-rgb), 0.15);
  border: 1px solid rgba(var(--cn-blue-rgb), 0.2);
  border-left: 3px solid rgba(var(--cn-blue-rgb), 0.5);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
  box-shadow: inset 0 0 10px rgba(var(--cn-blue-rgb), 0.04);
  transition: all 0.3s ease;
}
.gw-related:hover {
  background: rgba(var(--box-rgb), 0.25);
  border-left-color: var(--cn-blue);
  box-shadow: inset 0 0 12px rgba(var(--cn-blue-rgb), 0.08), 0 0 12px rgba(var(--cn-blue-rgb), 0.1);
}
.gw-related p.gw-related-title {
  margin: 0 0 var(--spacing-xs) 0;
  padding: 0;
  font-size: var(--fs-xs);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gw-related p.gw-related-title strong {
  color: rgba(var(--cn-blue-rgb), 0.8);
  font-weight: 600;
  text-shadow: none;
}
.gw-related p.gw-related-teaser {
  margin: 0 0 var(--spacing-xs) 0;
  padding: 0;
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}
.gw-related p.gw-related-link {
  margin: 0;
  padding: 0;
}
.gw-related p.gw-related-link a {
  color: rgba(var(--cn-blue-rgb), 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--fs-xs);
}
.gw-related p.gw-related-link a::after {
  content: "→";
  display: inline-flex;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.gw-related p.gw-related-link a:hover {
  color: var(--cn-blue);
  text-shadow: 0 0 8px rgba(var(--cn-blue-rgb), 0.4);
}
.gw-related p.gw-related-link a:hover::after {
  transform: translateX(3px);
}
.gw-related p.gw-related-link a:focus {
  outline: 2px solid var(--cn-blue);
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .gw-related {
    padding: var(--spacing-sm) var(--spacing-md);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
  }
  .gw-related p.gw-related-title {
    font-size: var(--fs-xs);
    margin: 0 0 var(--spacing-xs) 0;
  }
  .gw-related p.gw-related-teaser {
    font-size: var(--fs-xs);
    margin: 0 0 var(--spacing-xs) 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-code, .wp-block-code code, p.is-style-goblin-internal-link, .gw-related {
    animation: none !important;
    transition: none !important;
  }
  p.is-style-goblin-internal-link a::after, .gw-related a::after {
    transform: none !important;
  }
}
@media (prefers-color-scheme: dark) {
  .wp-block-code {
    background: rgba(var(--antra-rgb), 0.95);
  }
  p.is-style-goblin-internal-link, .gw-related {
    background: rgba(var(--box-rgb), 0.7);
  }
}
.entry-content::after {
  content: "";
  display: table;
  clear: both;
}
.entry-content > p {
  overflow: hidden;
}
.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6 {
  clear: both;
}
.entry-content .cn-product-clear {
  clear: both;
}
.cn-product-inline {
  display: contents;
}
.cn-product-inline__box {
  flex-direction: column;
  margin: 0 var(--spacing-md) var(--spacing-sm) 0;
  transition: all 0.3s ease;
  overflow: hidden;
  float: left;
  width: 100%;
}
@media (min-width: 600px) {
  .cn-product-inline__box {
    width: 48%;
    max-width: 320px;
  }
}
.cn-product-inline__box:hover {
  background-color: rgba(var(--box-rgb), 0.9);
  border-color: rgba(var(--cn-blue-rgb), 0.5);
  box-shadow: 0 0 15px rgba(var(--cn-blue-rgb), 0.2);
}
.cn-product-inline__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 2px var(--spacing-xs);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(var(--cn-blue-rgb), 0.3);
  color: var(--cn-blue);
  border: 1px solid rgba(var(--cn-blue-rgb), 0.3);
}
.cn-product-inline__badge span {
  display: block;
}
.cn-product-inline__badge--highlight1 {
  background: rgba(var(--cn-green-rgb), 0.2);
  color: var(--cn-green);
  border-color: rgba(var(--cn-green-rgb), 0.3);
}
.cn-product-inline__badge--highlight2 {
  background: rgba(var(--cn-blue-rgb), 0.2);
  color: var(--cn-blue);
  border-color: rgba(var(--cn-blue-rgb), 0.3);
}
.cn-product-inline__thumb {
  text-align: center;
  margin-bottom: var(--spacing-xs);
  padding: var(--spacing-sm);
  padding-top: calc(var(--spacing-sm) + 20px);
  background-color: #fff;
  border-radius: 3px;
  border: var(--cn-border);
}
.cn-product-inline__thumb a {
  display: block;
  transition: opacity 0.3s ease;
}
.cn-product-inline__thumb a:hover {
  opacity: 0.9;
}
.cn-product-inline__image {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}
.cn-product-inline__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xs);
  font-size: var(--fs-xs);
  color: var(--text);
}
.cn-product-inline__rating svg, .cn-product-inline__rating .star {
  color: var(--cn-blue);
  fill: currentColor;
}
.cn-product-inline__reviews {
  text-align: center;
  font-size: var(--fs-xs);
  margin-top: 2px;
  color: var(--text);
  opacity: 0.7;
}
.cn-product-inline__reviews a {
  color: var(--cn-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}
.cn-product-inline__reviews a:hover {
  color: var(--cn-green);
}
.cn-product-inline__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--spacing-xs);
}
.cn-product-inline__box .cn-product-inline__title, a.cn-product-inline__title {
  display: -webkit-box;
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--headline) !important;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cn-product-inline__box .cn-product-inline__title::after, a.cn-product-inline__title::after {
  display: none !important;
}
.cn-product-inline__box .cn-product-inline__title:hover, a.cn-product-inline__title:hover {
  color: var(--cn-green) !important;
  text-shadow: none;
}
.cn-product-inline__author {
  font-size: var(--fs-xs);
  color: var(--text);
  opacity: 0.7;
  margin-top: var(--spacing-xs);
}
.cn-product-inline__shop-logo {
  margin-top: var(--spacing-xs);
  max-width: 60px;
}
.cn-product-inline__shop-logo img {
  max-height: 20px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.cn-product-inline__shop-logo img:hover {
  opacity: 1;
}
.cn-product-inline__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: auto;
  padding-top: var(--spacing-xs);
  border-top: 1px solid rgba(var(--cn-blue-rgb), 0.2);
}
.cn-product-inline__price {
  font-size: var(--fs-sm);
  color: var(--text);
}
.cn-product-inline__price--list {
  font-size: var(--fs-xs);
  color: var(--text);
  opacity: 0.5;
  text-decoration: line-through;
}
.cn-product-inline__price--saved {
  font-size: var(--fs-xs);
  color: var(--cn-green);
}
.cn-product-inline__price--sale {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: var(--spacing-xs);
}
.cn-product-inline__price--base {
  font-size: var(--fs-xs);
  color: var(--text);
  opacity: 0.5;
  margin-left: var(--spacing-xs);
}
.cn-product-inline__box .cn-product-inline__button, a.cn-product-inline__button {
  width: 100%;
  font-family: var(--font-display);
}
.cn-product-inline__box .cn-product-inline__button::after, a.cn-product-inline__button::after {
  display: none;
}
.cn-product-inline__price-info {
  font-size: 10px;
  color: var(--text);
  opacity: 0.5;
  line-height: 1.3;
}
.cn-product-inline__disclaimer {
  display: block;
  font-size: 10px;
  color: var(--text);
  opacity: 0.4;
  margin-top: var(--spacing-xs);
  line-height: 1.3;
  clear: both;
}
@media (max-width: 599px) {
  .cn-product-inline__box {
    float: none;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cn-product-inline__box, .cn-product-inline__thumb a, .cn-product-inline__title, .cn-product-inline__button {
    transition: none !important;
  }
  .cn-product-inline__box::before, .cn-product-inline__thumb a::before, .cn-product-inline__title::before, .cn-product-inline__button::before {
    display: none;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22%2F%22%2C%22sources%22%3A%5B%22(stdin)%22%2C%22wp-content%2Fcustom_codes%2F10690-scss-mobile-p.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAC4DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA1BE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAiBF%3BAAAA%3BAAAA%3BAAAA%3BAAmBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA4BA%3BAACE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAACE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAACE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAACE%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAACE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBE%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAACE%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6BE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAuBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAACE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcE%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAACE%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%22%7D */