/* Template 01: Minimal - Clean and simple design */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.8;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-large {
  padding: 20px 48px;
  font-size: 20px;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.hero-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: all 0.2s;
}

.thumb:hover {
  border-color: #e0e0e0;
}

.thumb.active {
  border-color: #2563eb;
}

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

/* Hero Content */
.hero-content {
  padding-top: 20px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Price */
.price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}

.compare-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #fee2e2;
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #f0f0f0;
}

.trust-badges span {
  color: #666;
  font-size: 14px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #fafafa;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2563eb;
}

.feature-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: #1a1a1a;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 18px;
  color: #999;
  margin-bottom: 32px;
}

.cta .btn-primary {
  background: white;
  color: #1a1a1a;
}

.cta .btn-primary:hover {
  background: #f0f0f0;
}

/* Footer */
.footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.footer p {
  color: #999;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-gallery {
    position: static;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .price {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .btn-primary {
    width: 100%;
    padding: 16px 24px;
  }

  .features {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}
