/* Double Side Color Film - Page Specific Styles */

/* Double Side Images Container */
.double-side-images {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.double-side-images .product-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.double-side-images .product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Stack images vertically at 768px and below */
@media (max-width: 768px) {
  .double-side-images {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .double-side-images .product-image {
    max-width: 100%;
    width: 100%;
  }
}

/* Technical Specifications Section (page uses different class names) */
.technical-specs-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
}

.technical-specs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid: two cards on desktop for this page */
.technical-specs-section .specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Card styling for specs-card blocks */
.technical-specs-section .specs-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.technical-specs-section .specs-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.technical-specs-section .specs-card h3 {
  font-family: var(--font-heading);
  font-size: 1.425rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
}

.technical-specs-section .specs-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Material properties list styling */
.technical-specs-section .specs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technical-specs-section .specs-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-body);
  color: var(--cream);
  line-height: 1.6;
}

.technical-specs-section .specs-card ul li:last-child {
  border-bottom: none;
}

.technical-specs-section .specs-card ul li::before {
  content: '✔';
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
  line-height: 1.2;
}

/* CTA: Ready to Elevate Your Packaging */
.contact-cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-navy) 100%);
  text-align: left;
}

.contact-cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.contact-cta-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-cta-container p {
  font-size: var(--font-size-body-lg);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: var(--line-height-body);
}

.contact-cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.9vw, 1.045rem);
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border: 1px solid var(--gold);
}

.contact-cta-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .technical-specs-section .specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-cta-container {
    padding: 2rem;
  }
  .contact-cta-section .cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .technical-specs-section {
    padding: 6rem 1rem;
  }
  .contact-cta-section {
    padding: 4rem 1rem;
  }
  .technical-specs-section .specs-card {
    padding: 1.75rem;
  }
}