/* ============================================
   JINXIA8 - Italian Retro Cinema Theme
   Persol Affiliate Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #92400e;
  --primary-light: #b45309;
  --primary-dark: #78350f;
  --dark: #1c1917;
  --dark-soft: #292524;
  --light-bg: #fefce8;
  --warm-ivory: #fef9c3;
  --accent: #166534;
  --accent-light: #15803d;
  --accent-dark: #14532d;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-light: #a8a29e;
  --white: #ffffff;
  --border: #d6d3d1;
  --border-light: #e7e5e4;
  --shadow-sm: 0 1px 3px rgba(28,25,23,0.08);
  --shadow-md: 0 4px 12px rgba(28,25,23,0.12);
  --shadow-lg: 0 10px 30px rgba(28,25,23,0.15);
  --shadow-xl: 0 20px 50px rgba(28,25,23,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
.site-body, .site-body *, .site-body *::before, .site-body *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.site-body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--light-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.base-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.base-link {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.base-link:hover {
  color: var(--primary-light);
}

.base-list {
  list-style: none;
}

.base-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 200px;
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo svg {
  width: 100%;
  height: auto;
}

.preloader-logo svg text {
  fill: var(--warm-ivory);
}

.preloader-logo svg path,
.preloader-logo svg ellipse {
  stroke: var(--warm-ivory);
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: var(--dark-soft);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  animation: preloaderBar 2.8s ease-in-out forwards;
}

@keyframes preloaderBar {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* ---------- Ad Disclosure Banner ---------- */
.ad-disclosure {
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--dark-soft);
}

.ad-disclosure span {
  color: var(--warm-ivory);
  font-weight: 600;
}

/* ---------- Header / Navbar ---------- */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo img,
.nav-logo svg {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #292524 40%, #3c2415 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(146,64,14,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(22,101,52,0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(146,64,14,0.2);
  border: 1px solid rgba(146,64,14,0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #fbbf24;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #d6d3d1;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 500px;
}

.hero-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 32px;
}

.hero-price .currency {
  font-size: 1.6rem;
  vertical-align: top;
  margin-right: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.5s ease;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border: 2px solid rgba(146,64,14,0.2);
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
  z-index: -1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(146,64,14,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146,64,14,0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(22,101,52,0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,101,52,0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-icon {
  font-size: 1.2em;
}

/* ---------- Sections Common ---------- */
.section {
  padding: 90px 24px;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-alt {
  background: var(--white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-overline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-dark .section-overline {
  color: #fbbf24;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: #a8a29e;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.4) 0%, transparent 50%);
  transition: opacity 0.3s ease;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.feature-icon.amber {
  background: rgba(146,64,14,0.1);
  color: var(--primary);
}

.feature-icon.green {
  background: rgba(22,101,52,0.1);
  color: var(--accent);
}

.feature-icon.dark {
  background: rgba(28,25,23,0.08);
  color: var(--dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Specs Table ---------- */
.specs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.specs-table td {
  padding: 16px 12px;
  font-size: 0.95rem;
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--dark);
  width: 45%;
}

.specs-table td:last-child {
  color: var(--text-muted);
}

.specs-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.specs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Pros & Cons ---------- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.proscons-card {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.proscons-card.pros {
  background: rgba(22,101,52,0.05);
  border: 1px solid rgba(22,101,52,0.15);
}

.proscons-card.cons {
  background: rgba(146,64,14,0.05);
  border: 1px solid rgba(146,64,14,0.15);
}

.proscons-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proscons-card.pros h3 {
  color: var(--accent);
}

.proscons-card.cons h3 {
  color: var(--primary);
}

.proscons-card li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.proscons-card li:last-child {
  border-bottom: none;
}

.proscons-card.pros li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.proscons-card.cons li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.faq-question .faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- Trust Badges ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item {
  padding: 30px 20px;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #fbbf24;
}

.trust-item h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-item p {
  color: #a8a29e;
  font-size: 0.9rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #a8a29e;
  padding: 60px 24px 0;
}
.footer .base-heading,
.footer .base-link { color: inherit; }
.footer .base-link:hover { color: var(--white); }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--dark-soft);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-logo svg text {
  fill: var(--warm-ivory) !important;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a8a29e;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: #a8a29e;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Details Page ---------- */
.details-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.details-gallery {
  position: relative;
}

.details-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  background: var(--white);
}

.details-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-thumbs {
  display: flex;
  gap: 12px;
}

.details-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

.details-thumbs img:hover,
.details-thumbs img.active {
  border-color: var(--primary);
  opacity: 1;
}

/* Sticky Sidebar Price Card */
.price-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.price-card .product-brand {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-card .product-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-card .product-model {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.price-card .price-tag {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.price-card .price-info {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.price-card .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.price-card .detail-row:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.price-card .detail-label {
  color: var(--text-muted);
}

.price-card .detail-value {
  font-weight: 600;
  color: var(--dark);
}

.price-card .btn {
  width: 100%;
  margin-bottom: 12px;
}

.price-card .guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Details Content Sections */
.detail-section {
  margin-top: 50px;
}

.detail-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.detail-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.detail-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(22,101,52,0.04);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.detail-features-list li span {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(146,64,14,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(146,64,14,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Legal Pages ---------- */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.legal-page .legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.legal-page h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-page ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-page ul li {
  list-style: disc;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-text p {
  color: #a8a29e;
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-text a {
  color: #fbbf24;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent-light);
}

.cookie-reject {
  background: transparent;
  color: #a8a29e;
  border: 1px solid #57534e;
}

.cookie-reject:hover {
  border-color: #a8a29e;
  color: var(--white);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .price-card {
    position: static;
  }

  .specs-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    margin: 0 auto 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-price {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .proscons-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .detail-features-list {
    grid-template-columns: 1fr;
  }

  .hero-image::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .site-html {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-price {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 16px 32px;
  }

  .price-card {
    padding: 24px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .contact-form {
    padding: 24px;
  }

  .legal-page {
    padding: 40px 16px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
