/** Shopify CDN: Minification failed

Line 6:2 Unexpected "="

**/
* ============================================
   TECH SHOWCASE - 2 PRODUCT BOXES
   Clean stat display with flexible callouts
   ============================================ */

.tech-showcase {
  position: relative;
  width: 100%;
  min-height: 370px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 1rem 0;
  
 
}

.tech-showcase__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

/* ============================================
   LEFT CONTENT
   ============================================ */
.tech-showcase__content {
  max-width: 550px;
  justify-self: end;
}

.tech-showcase__label {
  
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
  opacity: 0.9;
  padding-top:30px;
}

.tech-showcase__heading {
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
  line-height: 1.1;
}

/* ============================================
   PRODUCT STAT BOXES (2 BOXES)
   ============================================ */
.tech-showcase__products-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover glow effect */
.product-stat-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(211, 162, 60, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.product-stat-box:hover::before {
  width: 400px;
  height: 400px;
}

.product-stat-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(211, 162, 60, 0.3);
  transform: translateX(8px);
}

/* Product Badge */
.product-stat-box__badge {
  display: inline-block;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #D3A23C 0%, #C99333 100%);
  color: #001A3D;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(211, 162, 60, 0.3);
  position: relative;
  z-index: 1;
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(211, 162, 60, 0.3);
  }
  50% {
    box-shadow: 0 2px 16px rgba(211, 162, 60, 0.5);
  }
}

/* Stats Container */
.product-stat-box__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Individual Stat Row */
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row__label {
  
  color: rgb(var(--color-foreground));
  opacity: 0.9;
  font-weight: 500;
}

.stat-row__value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #D3A23C;
  
}

.tech-showcase__footnote {
  font-size: .75rem;
  opacity: 0.7;
  font-style: italic;
  margin: 0 0 0.5rem 0;
  color: rgb(var(--color-foreground));
}

.tech-showcase__citation {
  font-size: .75rem;
  font-weight: 600;
  opacity: 0.85;
  margin: 0;
  color: #D3A23C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom:15px;
}

/* ============================================
   CENTER VISUAL - ENHANCED GLOW
   ============================================ */
.tech-showcase__visual {
  width: 400px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  will-change: transform;
}

/* Background glow circles */
.tech-showcase__visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(211, 162, 60, 0.3) 0%,
    rgba(211, 162, 60, 0.15) 30%,
    rgba(211, 162, 60, 0) 70%
  );
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Outer glow ring */
.tech-showcase__visual::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(211, 162, 60, 0.2) 50%,
    transparent 60%
  );
  animation: rotateGlow 8s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.tech-showcase__video,
.tech-showcase__gif,
.tech-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: 
    drop-shadow(0 0 20px rgba(211, 162, 60, 0.6))
    drop-shadow(0 0 40px rgba(211, 162, 60, 0.4))
    drop-shadow(0 0 60px rgba(211, 162, 60, 0.3))
    drop-shadow(0 0 80px rgba(253, 184, 19, 0.2));
  animation: floatCapsule 4s ease-in-out infinite;
  transform: translateZ(0);
  will-change: transform;
}

/* Glow animations */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatCapsule {
  0%, 100% { transform: translateY(0px) translateZ(0); }
  50% { transform: translateY(-10px) translateZ(0); }
}

/* ============================================
   RIGHT CALLOUTS - FLEXIBLE POSITIONING
   ============================================ */
.tech-showcase__callouts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  position: relative;
  min-height: 400px;
}

.tech-showcase__callout {
  position: relative;
}

.tech-showcase__callout--top {
  align-self: flex-start;
}

.tech-showcase__callout--middle {
  align-self: center;
}

.tech-showcase__callout--bottom {
  align-self: flex-end;
  margin-top: auto;
}

/* Callout Lines */
.callout-line {
  position: absolute;
  height: 2px;
}

.callout-line--top,
.callout-line--middle {
  top: 50%;
  right: 100%;
  width: 60px;
  border-top: 2px dotted rgba(255, 255, 255, 0.4);
}

.callout-line--bottom {
  bottom: 50%;
  right: 100%;
  width: 60px;
  border-top: 2px dotted rgba(255, 255, 255, 0.4);
}

/* Callout Content */
.callout-content {
  max-width: 380px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin:1rem 0;
}

.callout-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 162, 60, 0.3);
  transform: translateX(-4px);
}

.callout-title {
  line-height: 1.5;
 font-family: "Poppins", sans-serif !Important;
 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: #D3A23C;
}

.callout-text {
  
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  color: rgb(var(--color-foreground));
}

/* ============================================
   TABLET LAYOUT
   ============================================ */
@media screen and (max-width: 989px) {
  .tech-showcase__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-showcase__content {
    justify-self: center;
    text-align: center;
    max-width: 600px;
  }

  .tech-showcase__visual {
    justify-self: center;
  }

  .tech-showcase__callouts {
    grid-template-columns: 1fr 1fr;
    display: grid;
    min-height: auto;
    gap: 2rem;
  }

  .tech-showcase__callout--top,
  .tech-showcase__callout--middle,
  .tech-showcase__callout--bottom {
    align-self: auto;
    margin-top: 0;
  }

  .callout-line {
    display: none;
  }

  .callout-content {
    margin: 0 auto;
  }
}

/* ============================================
   MOBILE LAYOUT
   ============================================ */
@media screen and (max-width: 749px) {
  .tech-showcase {
    padding: 4rem 0;
  }

  .tech-showcase__heading {
    font-size: 2rem;
  }

  .tech-showcase__visual {
    width: 280px;
    height: 280px;
  }

  /* Product boxes on mobile */
  .product-stat-box {
    padding: 1.5rem;
  }

  .product-stat-box__badge {
    font-family: "Poppins", sans-serif !important;
   font-weight: 700;
    font-size: 1rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
  }

  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .stat-row__label {
    font-size: 1rem;
  }

  .stat-row__value {
    font-size: 1.5rem;
  }

  .tech-showcase__callouts {
    grid-template-columns: 1fr;
  }

  .callout-content:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-showcase__callout {
  animation: fadeInUp 0.8s ease backwards;
}

.tech-showcase__callout:nth-child(1) {
  animation-delay: 0.2s;
}

.tech-showcase__callout:nth-child(2) {
  animation-delay: 0.4s;
}

.tech-showcase__callout:nth-child(3) {
  animation-delay: 0.6s;
}

.product-stat-box:nth-child(1) {
  animation-delay: 0.1s;
}

.product-stat-box:nth-child(2) {
  animation-delay: 0.3s;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .tech-showcase__visual::before,
  .tech-showcase__visual::after,
  .tech-showcase__video,
  .tech-showcase__gif,
  .tech-showcase__image,
  .tech-showcase__callout,
  .product-stat-box,
  .product-stat-box__badge {
    animation: none !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .tech-showcase {
    background: white;
    color: black;
    min-height: auto;
  }

  .tech-showcase__visual::before,
  .tech-showcase__visual::after {
    display: none;
  }

  .tech-showcase__video,
  .tech-showcase__gif {
    display: none;
  }

  .product-stat-box__badge {
    background: #D3A23C;
    box-shadow: none;
  }
}


