/* ============================================
   PRODUCT PAGE AMBIANCE STYLES
   Modern, luxurious design for product pages
   ============================================ */

.product-hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(191, 162, 107, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.product-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 162, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, -50px) rotate(180deg);
  }
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.product-hero-image {
  position: relative;
  text-align: center;
  perspective: 1000px;
}

.product-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

.product-hero-image:hover img {
  transform: scale(1.05) rotateY(10deg);
}

.product-hero-content {
  position: relative;
}

.product-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  text-shadow: 0 2px 10px rgba(191, 162, 107, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.product-slogan {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--secondary) 0%, #d4b885 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.product-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.product-specs {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 162, 107, 0.2);
  border-radius: 16px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Details Section */
.product-details {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-secondary-bg) 100%);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.description {
  animation: fadeInLeft 0.8s ease-out;
}

.description h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 1rem;
}

.description h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.description .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  line-height: 1.8;
}

.description p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--light-text-secondary);
  margin-bottom: 1.5rem;
}

.product-visual {
  background: var(--light-card);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInRight 0.8s ease-out;
  border: 1px solid var(--light-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-visual:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.product-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Notes Section Enhanced */
.notes-section {
  margin: 5rem 0;
  padding: 3rem 0;
  background: var(--light-secondary-bg);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.notes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.notes-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  position: relative;
}

.pyramid-grid {
  gap: 2rem;
}

.pyramid-level {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border: 1px solid rgba(191, 162, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.pyramid-level::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 162, 107, 0.1), transparent);
  transition: left 0.5s ease;
}

.pyramid-level:hover::before {
  left: 100%;
}

.pyramid-level h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pyramid-level ul {
  text-align: left;
}

.pyramid-level li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.pyramid-level li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.5rem;
}

.note-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Gallery Enhanced */
.product-gallery {
  margin: 5rem 0;
  padding: 3rem 0;
}

.product-gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  position: relative;
}

.product-gallery h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.gallery-grid {
  gap: 2rem;
}

.gallery-grid img {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  border-color: var(--secondary);
}

/* Contact Form Enhanced */
.product-contact {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.product-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(191, 162, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.product-contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 162, 107, 0.3);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-tabs {
  margin-bottom: 2rem;
  gap: 1rem;
}

.tab-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(191, 162, 107, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(191, 162, 107, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .product-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .product-slogan {
    font-size: 1.5rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-hero {
    min-height: 60vh;
    padding: 6rem 0 3rem;
  }
  
  .product-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .product-slogan {
    font-size: 1.2rem;
  }
  
  .description h2,
  .notes-section h2,
  .product-gallery h2 {
    font-size: 2rem;
  }
}

