* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #fefcfc 0%, #f5e6e8 100%);
  min-height: 100vh;
}

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

/* Main Content */
.main-content {
  margin-top: 80px;
  padding: 48px 0;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.product-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 32px;
}

.product-category {
  color: #7b4b94;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.product-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #8b1538;
  margin-bottom: 24px;
}

.product-description {
  font-size: 16px;
  color: #2c2c2c;
  margin-bottom: 32px;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.product-features li::before {
  content: "✦";
  color: #8b1538;
  font-size: 16px;
}

/* Email Capture Form */
.email-capture {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e8b4b8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.email-capture h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 12px;
}

.email-capture p {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 14px;
}

.email-form {
  display: flex;
  gap: 12px;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e8b4b8;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  border-color: #8b1538;
}

.cta-button {
  background: linear-gradient(135deg, #8b1538, #b8336a);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* Affiliate Notice */
.affiliate-notice {
  background: rgba(123, 75, 148, 0.1);
  border: 1px solid rgba(123, 75, 148, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  font-size: 14px;
  color: #2c2c2c;
}

.affiliate-notice strong {
  color: #7b4b94;
}

/* Product Details Section */
.product-details {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 48px;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.detail-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.detail-section p {
  color: #2c2c2c;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-title {
    font-size: 28px;
  }

  .email-form {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

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

  .product-details {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .product-hero {
    margin-top: 50px;
  }
  .product-title {
    font-size: 24px;
  }

  .product-price {
    font-size: 20px;
  }

  .email-input {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Loading Animation */
.loading {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  display: none;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 500;
}

.error-message {
  display: none;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 500;
}
