/* ============================================
   PRODUCT PAGE DESIGN V2: LUXURY PREMIUM
   Opulent, sophisticated, gold accents
   ============================================ */

.product-page-v2 {
  background: var(--light-bg);
}

/* Hero Section - Centered with Gold Accents */
.product-hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

.product-hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(191, 162, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(191, 162, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.product-hero-v2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(191, 162, 107, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-images-container-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  justify-items: center;
  align-items: center;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.hero-image-v2 {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.8) 100%);
  border-radius: 24px;
  border: 1px solid rgba(191, 162, 107, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-image-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(191, 162, 107, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-image-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(191, 162, 107, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(191, 162, 107, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-image-v2:hover::before {
  opacity: 1;
}

.hero-image-v2 img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(191, 162, 107, 0.2));
  animation: luxuryFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-image-v2:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 30px 60px rgba(191, 162, 107, 0.4));
}

.hero-image-secondary-v2 {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.8) 100%);
  border-radius: 24px;
  border: 1px solid rgba(191, 162, 107, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-image-secondary-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(191, 162, 107, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-image-secondary-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(191, 162, 107, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(191, 162, 107, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-image-secondary-v2:hover::before {
  opacity: 1;
}

.hero-image-secondary-v2 img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(191, 162, 107, 0.2));
  animation: luxuryFloat 8s ease-in-out infinite;
  animation-delay: 1s;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-image-secondary-v2:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 30px 60px rgba(191, 162, 107, 0.4));
}

@keyframes luxuryFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.hero-text-v2 {
  color: var(--text-light);
}

/* h1 başlık kaldırıldı */

.hero-text-v2 .slogan-v2 {
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.hero-text-v2 .slogan-v2::before,
.hero-text-v2 .slogan-v2::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.2rem;
}

.hero-text-v2 .slogan-v2::before {
  left: -40px;
}

.hero-text-v2 .slogan-v2::after {
  right: -40px;
}

.hero-text-v2 .subtitle-v2 {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.specs-grid-v2 {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(191, 162, 107, 0.2);
  flex-wrap: wrap;
}

.spec-item-v2 {
  text-align: center;
  position: relative;
}

.spec-item-v2::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--secondary);
}

.spec-item-v2 .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  font-weight: 500;
}

.spec-item-v2 .value {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 400;
  letter-spacing: 1px;
}

/* Details Section */
.product-details-v2 {
  padding: 10rem 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative;
}

.details-container-v2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.details-content-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.details-text-v2 {
  font-size: 1.2rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.8);
}

.details-slogan-v2 {
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 3rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-align: left;
}

.details-slogan-v2::before,
.details-slogan-v2::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.2rem;
}

.details-slogan-v2::before {
  left: -40px;
}

.details-slogan-v2::after {
  right: -40px;
}

.details-text-v2 .lead {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.details-text-v2 p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.details-specs-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(191, 162, 107, 0.3);
}

.details-spec-item-v2 {
  text-align: left;
  position: relative;
}

.details-spec-item-v2::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary);
}

.spec-label-v2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.spec-value-v2 {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.details-visual-v2 {
  background: rgba(191, 162, 107, 0.05);
  border: 1px solid rgba(191, 162, 107, 0.2);
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.details-visual-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(191, 162, 107, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.details-visual-v2 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* Notes Section - Vertical Pyramid */
.notes-section-v2 {
  padding: 10rem 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

.notes-container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.notes-header-v2 {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.notes-header-v2 h2 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.notes-header-v2 h2::before,
.notes-header-v2 h2::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.5rem;
}

.notes-header-v2 h2::before {
  left: -60px;
}

.notes-header-v2 h2::after {
  right: -60px;
}

.notes-pyramid-v2 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.note-card-v2 {
  background: rgba(191, 162, 107, 0.05);
  border: 1px solid rgba(191, 162, 107, 0.2);
  border-left: 4px solid var(--secondary);
  border-radius: 12px;
  padding: 3rem 4rem;
  position: relative;
  transition: all 0.4s ease;
}

.note-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s ease;
}

.note-card-v2:hover {
  transform: translateX(10px);
  background: rgba(191, 162, 107, 0.1);
}

.note-card-v2:hover::before {
  height: 100%;
}

.note-card-v2 h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.note-card-v2 h3::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.note-card-v2 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.note-card-v2 li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  padding-left: 2rem;
  position: relative;
}

.note-card-v2 li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.note-card-v2 .description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(191, 162, 107, 0.2);
}

/* Contact Section */
.contact-section-v2 {
  padding: 10rem 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.contact-section-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(191, 162, 107, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container-v2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-header-v2 {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-header-v2 h2 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.contact-header-v2 h2::before,
.contact-header-v2 h2::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.5rem;
}

.contact-header-v2 h2::before {
  left: -60px;
}

.contact-header-v2 h2::after {
  right: -60px;
}

.contact-form-v2 {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(191, 162, 107, 0.3);
  border-radius: 20px;
  padding: 5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group-v2 {
  margin-bottom: 2.5rem;
}

.form-group-v2 label {
  display: block;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.form-group-v2 input,
.form-group-v2 textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(191, 162, 107, 0.3);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(191, 162, 107, 0.1);
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-submit-v2 {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #d4b885 100%);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(191, 162, 107, 0.3);
}

.btn-submit-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(191, 162, 107, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .details-content-v2 {
    gap: 5rem;
  }
}

@media (max-width: 968px) {
  .hero-content-v2 {
    padding: 1rem;
  }
  
  .hero-images-container-v2 {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .hero-image-v2,
  .hero-image-secondary-v2 {
    max-width: 100%;
    padding: 2rem;
  }
  
  .hero-image-v2 img,
  .hero-image-secondary-v2 img {
    max-height: 500px;
  }
  
  .specs-grid-v2 {
    gap: 2rem;
  }
  
  .details-content-v2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .details-slogan-v2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .details-slogan-v2::before,
  .details-slogan-v2::after {
    display: none;
  }
  
  .details-specs-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .notes-header-v2 h2::before,
  .notes-header-v2 h2::after,
  .contact-header-v2 h2::before,
  .contact-header-v2 h2::after {
    display: none;
  }
  
  .contact-form-v2 {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .product-hero-v2 {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-images-container-v2 {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .hero-image-v2,
  .hero-image-secondary-v2 {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .hero-image-v2 img,
  .hero-image-secondary-v2 img {
    max-height: 400px;
  }
  
  .product-details-v2,
  .notes-section-v2,
  .contact-section-v2 {
    padding: 4rem 0;
  }
  
  .details-slogan-v2 {
    font-size: 1.75rem;
  }
  
  .details-specs-v2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .notes-header-v2 h2,
  .contact-header-v2 h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .note-card-v2 {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-images-container-v2 {
    gap: 1.5rem;
  }
  
  .hero-image-v2,
  .hero-image-secondary-v2 {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .hero-image-v2 img,
  .hero-image-secondary-v2 img {
    max-height: 300px;
  }
}

