/* ===== PERFUME PAGE ENHANCEMENTS ===== */
/* Append to gztpss-inner.css or include inline */

/* --- HERO BANNER --- */
.perfume-hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, #0a1f1a 0%, #0f2e26 50%, #1a3c34 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
}

.perfume-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(201,168,108,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201,168,108,0.6);
  border-radius: 50%;
  box-shadow:
    20px 80px 0 rgba(201,168,108,0.4),
    100px 200px 0 rgba(201,168,108,0.3),
    300px 150px 0 rgba(201,168,108,0.5),
    500px 300px 0 rgba(201,168,108,0.4),
    700px 100px 0 rgba(201,168,108,0.3),
    900px 250px 0 rgba(201,168,108,0.5),
    1200px 180px 0 rgba(201,168,108,0.4);
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a86c;
  border: 1px solid rgba(201,168,108,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-gold {
  background: linear-gradient(135deg, #c9a86c 0%, #e8d5a3 50%, #c9a86c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-gold-2 {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(201,168,108,0.9);
  margin-top: 8px;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(232,224,213,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #c9a86c 0%, #a88a4f 100%);
  color: #0a1f1a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,108,0.3);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #c9a86c;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(201,168,108,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-cta-secondary:hover {
  background: rgba(201,168,108,0.1);
  border-color: #c9a86c;
}

.hero-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201,168,108,0.08);
  border: 1px solid rgba(201,168,108,0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(232,224,213,0.8);
}

.hb-icon {
  color: #c9a86c;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,108,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-bottle {
  position: relative;
  z-index: 2;
  max-width: 280px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: linear-gradient(135deg, #0d2620 0%, #0a1f1a 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,108,0.1);
  border-bottom: 1px solid rgba(201,168,108,0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c9a86c;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-number::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 2px;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(232,224,213,0.7);
  font-weight: 500;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a86c;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #e8e0d5;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(232,224,213,0.6);
  line-height: 1.6;
}

/* --- OEM PROCESS --- */
.oem-process {
  background: var(--bg-secondary, #0d1f19);
  padding: 100px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,108,0.3) 10%, rgba(201,168,108,0.3) 90%, transparent 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a3c34 0%, #0d2620 100%);
  border: 2px solid rgba(201,168,108,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a86c;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e0d5;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem;
  color: rgba(232,224,213,0.6);
  line-height: 1.5;
}

/* --- PRODUCT CARD ENHANCEMENTS --- */
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.product-image-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-cert-row {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 4px;
  z-index: 3;
}

.cert-icon {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(26,60,52,0.85);
  border: 1px solid rgba(201,168,108,0.3);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #c9a86c;
  letter-spacing: 0.5px;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,108,0.1);
}

.product-moq,
.product-lead {
  font-size: 0.75rem;
  color: rgba(232,224,213,0.6);
}

.product-moq strong,
.product-lead strong {
  color: #c9a86c;
  font-weight: 700;
}

.tag-highlight {
  background: rgba(201,168,108,0.15) !important;
  border-color: rgba(201,168,108,0.4) !important;
  color: #c9a86c !important;
  font-weight: 600;
}

/* --- FAQ SECTION --- */
.faq-section {
  background: linear-gradient(135deg, #0a1f1a 0%, #0d2620 100%);
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26,60,52,0.3);
  border: 1px solid rgba(201,168,108,0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201,168,108,0.25);
}

.faq-item[open] {
  border-color: rgba(201,168,108,0.3);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #e8e0d5;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #c9a86c;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: #c9a86c;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232,224,213,0.7);
}

/* --- INQUIRY CTA --- */
.inquiry-cta {
  background: linear-gradient(135deg, #0d2620 0%, #0a1f1a 100%);
  padding: 100px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: rgba(26,60,52,0.2);
  border: 1px solid rgba(201,168,108,0.15);
  border-radius: 20px;
  padding: 60px;
  align-items: start;
}

.cta-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8e0d5;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(232,224,213,0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(232,224,213,0.8);
}

.cf-icon {
  font-size: 1.1rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 12px 16px;
  background: rgba(10,31,26,0.6);
  border: 1px solid rgba(201,168,108,0.2);
  border-radius: 8px;
  color: #e8e0d5;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(232,224,213,0.4);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: #c9a86c;
  box-shadow: 0 0 0 3px rgba(201,168,108,0.1);
}

.cta-form select option {
  background: #0a1f1a;
  color: #e8e0d5;
}

.cta-form textarea {
  resize: vertical;
  min-height: 80px;
}

.cta-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, #c9a86c 0%, #a88a4f 100%);
  color: #0a1f1a;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,108,0.3);
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: rgba(232,224,213,0.4);
  text-align: center;
  margin-top: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-badges-row {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-bottle {
    max-width: 200px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .perfume-hero {
    min-height: auto;
    padding: 60px 0 100px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .trust-number {
    font-size: 2rem;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .cta-card {
    padding: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
}
