/* ============================================
   PRODUCTS REDESIGN - OUR PRODUCTS SHOWCASE
   Modern Sleek Tech Aesthetic - Matching Site Theme
   ============================================ */

/* Import distinctive tech fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Product Page Container - Uses technology-style background from section-transitions.css */
#product-page-1 {
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Background handled by section-transitions.css */

/* Container */
#product-page-1 .container-xl {
  position: relative;
  z-index: 1;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.product-showcase-header {
  text-align: center;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  animation: headerSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Orange Accent Line */
.product-showcase-header .accent-line {
  width: clamp(80px, 10vw, 140px);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    #ff6b00 30%,
    #ff8c00 50%,
    #ff6b00 70%,
    transparent 100%);
  margin: 0 auto clamp(1.5rem, 3vh, 2.5rem);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6),
              0 0 40px rgba(255, 107, 0, 0.3);
  animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.3);
  }
}

/* Section Title */
.product-showcase-header .section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ff6b00;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: clamp(0.5rem, 1vh, 0.75rem);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(255, 107, 0, 0.3);
  animation: titleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Section Subtitle */
.product-showcase-header .section-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #555;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  animation: subtitleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  animation: gridFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  margin-bottom: 3rem;
}

@keyframes gridFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 2px solid rgba(255, 107, 0, 0.15);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(255, 107, 0, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: cardSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger card animations */
.product-card:nth-child(1) { animation-delay: 0.7s; }
.product-card:nth-child(2) { animation-delay: 0.85s; }
.product-card:nth-child(3) { animation-delay: 1.0s; }
.product-card:nth-child(4) { animation-delay: 1.15s; }

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card:hover:not(.expanded) {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(255, 107, 0, 0.2);
}

/* Expanded State */
.product-card.expanded {
  transform: translateY(0);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.15),
    0 12px 32px rgba(255, 107, 0, 0.3),
    inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

/* ============================================
   PRODUCT HEADER
   ============================================ */

.product-header {
  padding: clamp(1rem, 1.5vw, 1.5rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 107, 0, 0.05),
    transparent);
  transition: left 0.6s ease;
}

.product-header:hover::before {
  left: 100%;
}

.product-header:hover {
  background: rgba(255, 107, 0, 0.03);
}

/* Product Name */
.product-name {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: #ff6b00;
}

/* Product Tagline */
.product-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.55rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ============================================
   PRODUCT IMAGE
   ============================================ */

.product-image {
  width: 100%;
  height: clamp(150px, 20vw, 200px);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Image Placeholder */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(255, 107, 0, 0.05) 0%,
    rgba(255, 140, 0, 0.02) 100%);
}

.image-placeholder p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   EXPAND BUTTON
   ============================================ */

.expand-button {
  padding: clamp(0.6rem, 1vh, 1rem) clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.expand-button:hover {
  background: rgba(255, 107, 0, 0.05);
}

.expand-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: #ff6b00;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.expand-button:hover .expand-text {
  transform: translateX(5px);
}

/* Expand Icon */
.expand-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-icon::before,
.expand-icon::after {
  content: '';
  position: absolute;
  background: #ff6b00;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.expand-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.product-card.expanded .expand-icon {
  transform: rotate(45deg);
}

.expand-button:hover .expand-icon::before,
.expand-button:hover .expand-icon::after {
  background: #ff8c00;
}

/* ============================================
   PRODUCT DETAILS (EXPANDED CONTENT)
   ============================================ */

.product-details {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(248, 249, 250, 0.5);
}

.product-card.expanded .product-details {
  grid-template-rows: 1fr;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.details-content {
  min-height: 0;
  padding: clamp(2rem, 4vh, 3rem) clamp(1.8rem, 3vw, 2.5rem);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease-out 0.15s, transform 0.4s ease-out 0.15s;
}

.product-card.expanded .details-content {
  opacity: 1;
  transform: translateY(0);
}

/* Details Headings */
.details-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: clamp(1.5rem, 3vh, 2rem);
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.details-content h3:first-child {
  margin-top: 0;
}

/* Details Text */
.details-content p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  color: #555;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

/* Specs List */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.8vh, 0.6rem);
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.spec-bullet {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5em;
  box-shadow:
    0 0 10px rgba(255, 107, 0, 0.4),
    0 2px 4px rgba(255, 107, 0, 0.3);
  animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(255, 107, 0, 0.4),
      0 2px 4px rgba(255, 107, 0, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow:
      0 0 20px rgba(255, 107, 0, 0.6),
      0 4px 8px rgba(255, 107, 0, 0.4);
  }
}

.spec-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  color: #555;
  font-weight: 500;
  line-height: 1.5;
}

/* CTA Link */
.cta-link {
  display: inline-block;
  margin-top: clamp(1.5rem, 3vh, 2rem);
  padding: clamp(0.8rem, 1.5vh, 1rem) clamp(1.8rem, 3.5vw, 2.5rem);
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 6px 20px rgba(255, 107, 0, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-link::before {
  content: '';
  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;
}

.cta-link:hover::before {
  left: 100%;
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(255, 107, 0, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.cta-link:active {
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vh, 3rem);
  }
}

@media (max-width: 768px) {
  #product-page-1 {
    padding: clamp(3rem, 6vh, 4rem) 0;
  }

  .product-showcase-header {
    margin-bottom: clamp(2rem, 4vh, 3rem);
  }

  .product-name {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .product-image {
    height: clamp(200px, 40vw, 280px);
  }

  .product-image img {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    border-radius: 16px;
  }

  .expand-button {
    padding: 1rem 1.5rem;
  }

  .details-content {
    padding: 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  #product-page-1::before,
  #product-page-1::after,
  .product-showcase-header .accent-line,
  .spec-bullet {
    animation: none !important;
  }

  .product-card,
  .product-image img,
  .cta-link {
    transition: opacity 0.2s ease, transform 0.2s ease !important;
  }
}

/* Focus States for Keyboard Navigation */
.product-header:focus-visible,
.expand-button:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.6);
  outline-offset: 4px;
}

.cta-link:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.6);
  outline-offset: 4px;
}

/* ============================================
   LASER ENGINE CUSTOM LAYOUT
   Technical Precision Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

.laser-engine-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: visible;
}

.laser-engine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 0, 0.3) 50%,
    transparent 100%);
}

/* Header Styling - Technical Precision */
.product-header-new {
  padding: clamp(3rem, 5vh, 4rem) clamp(2rem, 4vw, 3rem) clamp(2rem, 3vh, 2.5rem);
  text-align: center;
  background: transparent;
  position: relative;
}

.product-name-new {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: clamp(0.75rem, 1.5vh, 1rem);
  position: relative;
  display: inline-block;
}

.product-name-new::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ff6b00;
  opacity: 0.6;
}

.product-tagline-new {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  color: #6b6b6b;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

/* Three Image Grid - Asymmetric Layout */
.product-images-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.25fr 1fr;
  grid-template-rows: auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 0 1rem 1rem;
  background: transparent;
  position: relative;
  align-items: center;
  margin-top: clamp(2rem, 4vh, 3rem);
}


/* Image Containers with Depth */
.product-image-box {
  position: relative;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.03);
}

.product-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

/* Left Box - Smaller Model with Special Treatment */
.product-image-box.left-box {
  align-self: flex-start;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


.product-image-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 107, 0, 0.1);
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.product-image-box.left-box img {
  padding: clamp(0.5rem, 1vw, 0.875rem);
}

.product-image-box:hover img {
  transform: scale(1.03);
  filter: brightness(1.02);
}

/* Subtle Label Overlays */
.product-image-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.product-image-box:hover::after {
  opacity: 0.6;
}

/* Expand Button - Clean & Minimal */
.expand-button-new {
  padding: clamp(1.75rem, 3.5vh, 2.25rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.expand-button-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff6b00;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-button-new:hover::before {
  width: 100%;
}

.expand-button-new:hover {
  background: rgba(255, 107, 0, 0.02);
}

.expand-text-new {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: #ff6b00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.expand-button-new:hover .expand-text-new {
  letter-spacing: 0.2em;
  color: #ff5500;
}

.expand-icon-new {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.expand-icon-new svg {
  width: 100%;
  height: 100%;
  stroke: #ff6b00;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.expand-button-new:hover .expand-icon-new {
  transform: rotate(90deg);
}

.expand-button-new:hover .expand-icon-new svg {
  stroke: #ff5500;
  stroke-width: 2;
}

.product-card.expanded .expand-icon-new {
  transform: rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .product-images-grid {
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .product-image-box.center-box,
  .product-image-box.right-box {
    aspect-ratio: 1.2;
  }
}

@media (max-width: 768px) {
  .product-images-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: clamp(2rem, 4vh, 3rem) clamp(1.5rem, 4vw, 2rem);
  }

  .product-image-box.left-box,
  .product-image-box.center-box,
  .product-image-box.right-box {
    aspect-ratio: 1.4;
  }

  .product-name-new::after {
    bottom: -0.4rem;
    width: 40px;
  }
}

/* ============================================
   LASER ENGINE - SIDE-BY-SIDE LAYOUT
   ============================================ */

.product-content-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1rem, 2vh, 1.5rem) clamp(1.5rem, 2.5vw, 2rem);
  align-items: start;
}
.product-content-layout.ocs-layout{
    grid-template-columns: 7fr 4fr;
}

.product-image-side {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 249, 250, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.product-image-side img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.product-image-side:hover img {
  transform: scale(1.05);
}

.product-details-side {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vh, 0.75rem);
}

.product-details-side h3 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
  border-bottom: 2px solid rgba(255, 107, 0, 0.2);
  padding-bottom: 0.5rem;
}

.product-details-side .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.8vh, 0.6rem);
}

/* Responsive - Stack on smaller screens */
@media (max-width: 968px) {
  .product-content-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vh, 2rem);
  }

  .product-content-layout.ocs-layout {
    grid-template-columns: 1fr;
  }

  .product-image-side {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .product-details-side {
    width: 100%;
  }

  .ocs-description-block {
    width: 100%;
  }

  .ocs-description-block h3 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .product-content-layout,
  .product-content-layout.ocs-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .product-image-side {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .product-details-side,
  .ocs-description-block {
    width: 100%;
    padding: 0 0.5rem;
  }

  .spec-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
