/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pdv2-primary: #3974f5;
  --pdv2-secondary: #101664;
  --pdv2-accent: #00d4ff;
  --pdv2-dark: #0a0e27;
  --pdv2-light: #f8f9fa;
  --pdv2-white: #ffffff;
  --pdv2-gray: #6c757d;
  --pdv2-gray-light: #e9ecef;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--pdv2-white);
  color: var(--pdv2-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.pdv2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.pdv2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pdv2-nav.pdv2-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.pdv2-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdv2-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pdv2-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.pdv2-logo-text {
  display: flex;
  flex-direction: column;
}

.pdv2-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pdv2-secondary);
}

.pdv2-tagline {
  font-size: 0.75rem;
  color: var(--pdv2-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdv2-nav-links {
  display: flex;
  gap: 2rem;
}

.pdv2-nav-links a {
  color: var(--pdv2-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.pdv2-cta-btn {
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  color: var(--pdv2-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pdv2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(57, 116, 245, 0.3);
}

/* Hero Section */
.pdv2-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.pdv2-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  z-index: -2;
}

#pdv2-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pdv2-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pdv2-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--pdv2-gray);
  margin-bottom: 2rem;
}

.pdv2-breadcrumb a {
  color: var(--pdv2-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.pdv2-breadcrumb i {
  font-size: 0.7rem;
}

.pdv2-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pdv2-title-line {
  display: block;
}

.pdv2-title-highlight {
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pdv2-hero-subtitle {
  font-size: 1.2rem;
  color: var(--pdv2-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.pdv2-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.pdv2-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pdv2-stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  border-radius: 12px;
  color: var(--pdv2-white);
  font-size: 1.5rem;
}

.pdv2-stat-content {
  display: flex;
  flex-direction: column;
}

.pdv2-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pdv2-secondary);
}

.pdv2-stat-label {
  font-size: 0.85rem;
  color: var(--pdv2-gray);
}

.pdv2-hero-actions {
  display: flex;
  gap: 1rem;
}

.pdv2-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.pdv2-btn-primary {
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  color: var(--pdv2-white);
}

.pdv2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(57, 116, 245, 0.4);
}

.pdv2-btn-secondary {
  background: var(--pdv2-white);
  color: var(--pdv2-primary);
  border: 2px solid var(--pdv2-primary);
}

.pdv2-btn-secondary:hover {
  background: var(--pdv2-primary);
  color: var(--pdv2-white);
  transform: translateY(-3px);
}

/* Product Viewer */
.pdv2-product-viewer {
  position: relative;
}

.pdv2-viewer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdv2-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
  animation: pdv2-float 6s ease-in-out infinite;
}

@keyframes pdv2-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.pdv2-viewer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(57, 116, 245, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pdv2-pulse 4s ease-in-out infinite;
}

@keyframes pdv2-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.pdv2-viewer-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pdv2-viewer-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--pdv2-gray-light);
  background: var(--pdv2-white);
  color: var(--pdv2-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdv2-viewer-btn:hover,
.pdv2-viewer-btn.active {
  background: var(--pdv2-primary);
  color: var(--pdv2-white);
  border-color: var(--pdv2-primary);
  transform: translateY(-3px);
}

.pdv2-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--pdv2-gray);
  font-size: 0.9rem;
}

.pdv2-scroll-line {
  width: 2px;
  height: 40px;
  background: var(--pdv2-gray);
  position: relative;
  overflow: hidden;
}

.pdv2-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--pdv2-primary);
  animation: pdv2-scroll 2s ease-in-out infinite;
}

@keyframes pdv2-scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

/* Section Styles */
.pdv2-overview,
.pdv2-features,
.pdv2-varieties,
.pdv2-quality,
.pdv2-gallery {
  padding: 6rem 0;
}

.pdv2-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pdv2-section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(57, 116, 245, 0.1), rgba(16, 22, 100, 0.1));
  color: var(--pdv2-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.pdv2-section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--pdv2-secondary);
  margin-bottom: 1rem;
}

.pdv2-section-desc {
  font-size: 1.1rem;
  color: var(--pdv2-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Overview Section */
.pdv2-overview {
  background: var(--pdv2-light);
}

.pdv2-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pdv2-overview-card {
  background: var(--pdv2-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pdv2-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pdv2-card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  border-radius: 15px;
  color: var(--pdv2-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.pdv2-overview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pdv2-secondary);
  margin-bottom: 1rem;
}

.pdv2-overview-card p {
  color: var(--pdv2-gray);
  line-height: 1.8;
}

/* Features Section */
.pdv2-features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pdv2-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.pdv2-feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--pdv2-white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pdv2-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdv2-feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pdv2-primary);
  opacity: 0.3;
}

.pdv2-feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pdv2-secondary);
  margin-bottom: 0.5rem;
}

.pdv2-feature-content p {
  color: var(--pdv2-gray);
  line-height: 1.7;
}

.pdv2-feature-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.pdv2-feature-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pdv2-feature-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--pdv2-secondary);
}

.pdv2-feature-badge i {
  color: var(--pdv2-primary);
  font-size: 1.2rem;
}

.pdv2-badge-1 {
  top: 10%;
  right: -10px;
}

.pdv2-badge-2 {
  top: 50%;
  left: -10px;
}

.pdv2-badge-3 {
  bottom: 10%;
  right: -10px;
}

/* Varieties Section */
.pdv2-varieties {
  background: var(--pdv2-light);
}

.pdv2-varieties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pdv2-variety-card {
  background: var(--pdv2-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.pdv2-variety-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pdv2-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  color: var(--pdv2-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
}

.pdv2-variety-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.pdv2-variety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pdv2-variety-card:hover .pdv2-variety-image img {
  transform: scale(1.1);
}

.pdv2-variety-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 22, 100, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdv2-variety-card:hover .pdv2-variety-overlay {
  opacity: 1;
}

.pdv2-variety-btn {
  background: var(--pdv2-white);
  color: var(--pdv2-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pdv2-variety-btn:hover {
  transform: scale(1.05);
}

.pdv2-variety-content {
  padding: 2rem;
}

.pdv2-variety-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pdv2-secondary);
  margin-bottom: 0.75rem;
}

.pdv2-variety-content p {
  color: var(--pdv2-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pdv2-variety-specs {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--pdv2-gray);
}

.pdv2-variety-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdv2-variety-specs i {
  color: var(--pdv2-primary);
}

/* Quality Section */
.pdv2-quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pdv2-quality-desc {
  font-size: 1.1rem;
  color: var(--pdv2-gray);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.pdv2-quality-metrics {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.pdv2-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdv2-metric-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.pdv2-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pdv2-circle-bg {
  fill: none;
  stroke: var(--pdv2-gray-light);
  stroke-width: 10;
}

.pdv2-circle-progress {
  fill: none;
  stroke: url(#pdv2-gradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
}

.pdv2-metric-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
}

.pdv2-metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pdv2-primary);
}

.pdv2-metric-unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pdv2-primary);
}

.pdv2-metric-label {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pdv2-secondary);
}

.pdv2-quality-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdv2-quality-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--pdv2-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pdv2-quality-point i {
  color: #10b981;
  font-size: 1.2rem;
}

.pdv2-certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pdv2-cert-card {
  background: var(--pdv2-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.pdv2-cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pdv2-cert-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  border-radius: 12px;
  color: var(--pdv2-white);
  font-size: 1.8rem;
}

.pdv2-cert-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pdv2-secondary);
  margin-bottom: 0.5rem;
}

.pdv2-cert-card p {
  font-size: 0.9rem;
  color: var(--pdv2-gray);
}

/* Gallery Section */
.pdv2-gallery {
  background: var(--pdv2-light);
}

.pdv2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pdv2-gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.pdv2-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.pdv2-gallery-wide {
  grid-column: span 2;
}

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

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

.pdv2-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(57, 116, 245, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdv2-gallery-item:hover .pdv2-gallery-overlay {
  opacity: 1;
}

.pdv2-gallery-overlay i {
  color: var(--pdv2-white);
  font-size: 2rem;
}

/* CTA Section */
.pdv2-cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.pdv2-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--pdv2-primary), var(--pdv2-secondary));
  z-index: -1;
}

.pdv2-cta-content {
  text-align: center;
  color: var(--pdv2-white);
}

.pdv2-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pdv2-cta-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pdv2-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pdv2-btn-light {
  background: var(--pdv2-white);
  color: var(--pdv2-primary);
}

.pdv2-btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

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

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

.pdv2-cta-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.pdv2-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.pdv2-info-item i {
  font-size: 1.5rem;
}

/* Lightbox */
.pdv2-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.pdv2-lightbox.active {
  display: flex;
}

.pdv2-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.pdv2-lightbox-close,
.pdv2-lightbox-prev,
.pdv2-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--pdv2-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pdv2-lightbox-close:hover,
.pdv2-lightbox-prev:hover,
.pdv2-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pdv2-lightbox-close {
  top: 2rem;
  right: 2rem;
}

.pdv2-lightbox-prev {
  left: 2rem;
}

.pdv2-lightbox-next {
  right: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .pdv2-hero-content,
  .pdv2-features-content,
  .pdv2-quality-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pdv2-hero-title {
    font-size: 3.5rem;
  }

  .pdv2-section-title {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  .pdv2-nav-links {
    display: none;
  }

  .pdv2-hero-title {
    font-size: 2.5rem;
  }

  .pdv2-hero-stats {
    flex-direction: column;
  }

  .pdv2-hero-actions {
    flex-direction: column;
  }

  .pdv2-overview-grid,
  .pdv2-varieties-grid {
    grid-template-columns: 1fr;
  }

  .pdv2-quality-metrics {
    flex-direction: column;
  }

  .pdv2-certifications {
    grid-template-columns: 1fr;
  }

  .pdv2-cta-title {
    font-size: 2rem;
  }

  .pdv2-cta-info {
    flex-direction: column;
    gap: 1rem;
  }
}

