/* ===== PREMIUM PRODUCT SHOWCASE SECTION ===== */
.product-showcase {
  position: relative;
  background: linear-gradient(135deg, #fdfdf5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 1rem;
  overflow: hidden;
  min-height: 100vh;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* Floating Background Elements */
.product-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
  animation: floatCircle 20s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.bg-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.bg-circle:nth-child(3) {
  width: 500px;
  height: 500px;
  bottom: -20%;
  left: 40%;
  animation-delay: 10s;
  animation-duration: 35s;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
}

/* Section Header */
.product-header {
  text-align: center;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInDown 1s ease-out;
}

.product-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.5rem;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(218, 165, 32, 0);
  }
}

.product-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e392f 0%, #2a4a3f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product Content Grid - Full Height Layout */
.product-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
  margin-bottom: 6rem;
  min-height: 700px;
}

/* Video Container - Seamless Full Height Styling */
.product-video-container {
  position: relative;
  animation: slideInLeft 1s ease-out 0.3s both;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  height: 100%;
  background: transparent;
}

.video-wrapper:hover {
  transform: none;
  box-shadow: none;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: all 0.4s ease;
}

.product-video:hover {
  transform: none;
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 57, 47, 0.05) 0%,
    transparent 30%,
    transparent 70%,
    rgba(30, 57, 47, 0.05) 100%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-overlay-gradient {
  opacity: 0.5;
}

/* Subtle Video Decorations - Integrated Look */
.video-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
}

.video-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(218, 165, 32, 0.3);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover .video-corner {
  opacity: 0.6;
}

.video-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
}

.video-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0;
}

.video-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0;
}

.video-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0;
}

@keyframes cornerSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* Video Stats - Seamless Integration */
.video-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 1rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 50%;
  color: var(--deep-green-text);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-item:nth-child(1) .stat-icon {
  animation-delay: 0s;
}

.stat-item:nth-child(2) .stat-icon {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-icon {
  animation-delay: 1s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.stat-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green-text);
  white-space: nowrap;
}

/* Description Container - Premium Styling */
.product-description-container {
  position: relative;
  animation: slideInRight 1s ease-out 0.5s both;
}

.description-content {
  position: relative;
  z-index: 2;
}

.description-block {
  margin-bottom: 3rem;
}

.description-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.description-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-gold), var(--gold-accent));
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 1s both;
}

@keyframes underlineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

.description-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: #6c757d;
}

/* Features List - Premium Cards */
.features-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(218, 165, 32, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateX(10px);
  border-color: rgba(218, 165, 32, 0.3);
  box-shadow: 
    0 8px 24px rgba(218, 165, 32, 0.15),
    -4px 0 0 0 var(--muted-gold);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 12px;
  color: var(--deep-green-text);
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
  line-height: 1.5;
}

/* Premium CTA Button */
.product-cta-container {
  text-align: left;
  margin-top: 3rem;
}

.product-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  color: var(--deep-green-text);
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(218, 165, 32, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 48px rgba(218, 165, 32, 0.4),
    0 6px 24px rgba(0, 0, 0, 0.15);
}

.product-cta-button:active {
  transform: translateY(-2px) scale(1.01);
}

.cta-button-text {
  position: relative;
  z-index: 2;
}

.cta-button-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.product-cta-button:hover .cta-button-icon {
  transform: translateX(5px);
}

.cta-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.product-cta-button:hover .cta-button-glow {
  left: 100%;
}

.cta-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 1rem;
}

/* Decorative Elements */
.description-decorations {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.deco-line {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
  animation: lineSlide 4s ease-in-out infinite;
}

@keyframes lineSlide {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-30px);
    opacity: 0.8;
  }
}

.deco-dot {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 8px;
  height: 8px;
  background: var(--muted-gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.deco-circle {
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  animation: circleRotate 10s linear infinite;
}

@keyframes circleRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Technical Specifications Preview - Redesigned */
.tech-specs-preview {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tech-specs-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(218,165,32,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.specs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #161616;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.spec-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #daa520, #e6b800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 165, 32, 0.6);
  box-shadow: 0 12px 32px rgba(218, 165, 32, 0.25);
}

.spec-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #daa520;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #daa520, #e6b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e392f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Seamless Video Styling */
.product-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 253, 245, 0.5));
  pointer-events: none;
  z-index: 10;
}

.product-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 50px;
  height: 100%;
  background: linear-gradient(270deg, transparent, rgba(253, 253, 245, 0.5));
  pointer-events: none;
  z-index: 10;
}

/* Remove video controls styling for seamless look */
.product-video::-webkit-media-controls {
  display: none !important;
}

.product-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.product-video::-webkit-media-controls-panel {
  display: none !important;
}

/* Ensure video fills container perfectly */
.video-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

/* Seamless video integration - no borders or shadows */
.video-wrapper,
.video-frame,
.product-video {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Smooth video appearance */
.product-video {
  opacity: 1;
  filter: brightness(1) contrast(1.05) saturate(1.1);
  transition: filter 0.3s ease;
}

.video-wrapper:hover .product-video {
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

/* Remove any default video styling */
.product-video {
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Ensure smooth playback */
.product-video {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-container {
    padding: 0 2rem;
  }
  
  .product-content-grid {
    gap: 4rem;
    min-height: 600px;
  }
  
  .product-headline {
    font-size: 3.5rem;
  }
  
  .description-title {
    font-size: 2.2rem;
  }
  
  .video-frame {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 6rem 0;
  }
  
  .product-container {
    padding: 0 1.5rem;
  }
  
  .product-header {
    margin-bottom: 4rem;
  }
  
  .product-headline {
    font-size: 2.8rem;
  }
  
  .product-subtitle {
    font-size: 1.1rem;
  }
  
  .product-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  
  .video-frame {
    min-height: 400px;
  }
  
  .product-video-container::before,
  .product-video-container::after {
    display: none;
  }
  
  .product-showcase .video-stats {
    flex-direction: row !important;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  
  .stat-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.2rem;
  }
  
  .stat-text {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
  }
  
  .description-title {
    font-size: 2rem;
  }
  
  .description-text {
    font-size: 1.1rem;
  }
  
  .product-cta-container {
    margin-top: 2rem;
    margin-bottom: 0;
  }
  
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .tech-specs-preview {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  .specs-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .spec-card {
    padding: 1.5rem 1rem;
  }
  
  .spec-value {
    font-size: 2rem;
  }
  
  .spec-label {
    font-size: 0.75rem;
  }
  
  .spec-value {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
  }
  
  .spec-label {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .specs-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  
  .tech-specs-preview {
    padding: 1.75rem 1.25rem;
  }
  
  .spec-card {
    padding: 1.25rem 0.875rem;
  }
  
  .spec-value {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .product-showcase {
    padding: 0.5rem;
  }
  
  .product-container {
    padding: 0 1rem;
  }
  
  .product-headline {
    font-size: 2.2rem;
  }
  
  .product-subtitle {
    font-size: 1rem;
  }
  
  .video-frame {
    min-height: 300px;
  }
  
  .product-showcase .video-stats {
    gap: 0.3rem;
    padding: 0.5rem 0;
    flex-direction: row !important;
  }
  
  .stat-item {
    padding: 0.3rem 0.1rem;
  }
  
  .stat-text {
    font-size: 0.6rem;
    font-weight: 500;
  }
  
  .stat-icon {
    width: 24px;
    height: 24px;
  }
  
  .description-title {
    font-size: 1.8rem;
  }
  
  .description-content {
    padding: 0 0.5rem;
  }
  
  .features-list {
    gap: 0.8rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem 0.6rem;
  }
  
  .feature-content {
    width: 100%;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .feature-content {
    width: 100%;
  }
  
  .product-cta-container {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
  
  .product-cta-button {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
  
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .tech-specs-preview {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
  
  .specs-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .spec-card {
    padding: 1rem 0.75rem;
  }
  
  .spec-value {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .spec-label {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
  
  .spec-value {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
  }
  
  .spec-label {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 320px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .tech-specs-preview {
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }
  
  .specs-title {
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
  }
  
  .spec-card {
    padding: 0.875rem 0.5rem;
    border-radius: 10px;
    border-width: 1.5px;
  }
  
  .spec-value {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }
  
  .spec-label {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }
  
  .spec-value {
    font-size: 1.5rem;
  }
  
  .spec-label {
    font-size: 0.6rem;
  }
  
  .tech-specs-preview {
    padding: 1rem 0.625rem;
    margin-top: 1rem;
  }
  
  .specs-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .spec-card {
    padding: 0.75rem 0.4rem;
  }
  
  .spec-value {
    font-size: 1.1rem;
  }
  
  .spec-label {
    font-size: 0.6rem;
  }
  
  .spec-value {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .spec-label {
    font-size: 0.55rem;
    line-height: 1.1;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .bg-circle,
  .product-label,
  .stat-icon,
  .video-corner,
  .deco-line,
  .deco-dot,
  .deco-circle {
    animation: none !important;
  }
  
  .video-wrapper,
  .feature-item,
  .product-cta-button,
  .spec-card {
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .product-showcase {
    background: #ffffff;
  }
  
  .feature-item,
  .spec-card {
    border: 2px solid currentColor;
  }
  
  .product-cta-button {
    border: 2px solid var(--deep-green-text);
  }
}
