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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
.bg-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.bg-light {
  background: #f8fafc;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.cta-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  border-color: transparent !important;
}

.cta-button:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 50px;
  }
}
.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  border-color: transparent !important;
}

.btn-primary:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border-color: transparent !important;
}

.btn-secondary:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
}

.barcode-visual {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.3s ease;
  border: 2px solid #e5e7eb;
}

.barcode-visual:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.barcode-container {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  position: relative;
}

.actual-barcode {
  width: 280px;
  height: 70px;
  background: white;
  margin: 0 auto 1rem auto;
  border: 1px solid #ddd;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5px;
}
@media (max-width: 768px) {
  .actual-barcode {
    width: 190px;
  }
}

.barcode-pattern {
  display: flex;
  height: 50px;
  align-items: flex-end;
  gap: 0;
}

.b1 {
  width: 1px;
  height: 50px;
  background: black;
}
.b2 {
  width: 2px;
  height: 50px;
  background: black;
}
.b3 {
  width: 3px;
  height: 50px;
  background: black;
}
.b4 {
  width: 4px;
  height: 50px;
  background: black;
}
.s1 {
  width: 1px;
  height: 50px;
  background: white;
}
.s2 {
  width: 2px;
  height: 50px;
  background: white;
}
.s3 {
  width: 3px;
  height: 50px;
  background: white;
}
.guard {
  height: 60px;
  background: black;
}
.data-bar {
  height: 45px;
  background: black;
}

.barcode-numbers {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #000;
  margin-top: 3px;
  letter-spacing: 1px;
}

.barcode-label {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: white;
}

.features h2,
.title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.features-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

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

.trust-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e293b;
}

.retailer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 2rem 0;
  opacity: 0.7;
}

.retailer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: white;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: currentColor;
}
/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 191, 36, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  margin-top: 2rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.footer-section p,
.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a365d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  color: #3182ce;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(45deg);
}
.product-page {
  background: #f8fafc;
  color: #333;
  line-height: 1.6;

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

  .nav-cta {
    background: #3182ce;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .nav-cta:hover {
    background: #2c5282;
  }

  /* Breadcrumb */
  .breadcrumb {
    background: #edf2f7;
    padding: 1rem 0;
    font-size: 0.9rem;
  }

  .breadcrumb a {
    color: #3182ce;
    text-decoration: none;
  }

  .breadcrumb span {
    color: #718096;
    margin: 0 0.5rem;
  }

  /* Page Header */
  .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
  }

  .page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Trust Bar */
  .trust-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trust-item .badge {
    background: #edf2f7;
    color: #3182ce;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .trust-item h3 {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
  }

  /* Main Content */
  .main-content {
    padding: 4rem 0;
  }

  .content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
  }

  /* Product Features */
  .product-features h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2rem;
  }

  .feature-list {
    list-style: none;
    margin-bottom: 3rem;
  }

  .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3182ce;
  }

  .feature-icon {
    background: #e6fffa;
    color: #00a388;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-weight: bold;
  }

  .feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
  }

  .feature-content p {
    color: #4a5568;
    font-size: 0.95rem;
  }

  /* Pricing Sidebar */
  .pricing-sidebar {
    position: sticky;
    top: 100px;
  }

  .pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .quantity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .quantity-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    color: #4a5568;
  }

  .quantity-btn:hover {
    border-color: #3182ce;
    background: #ebf8ff;
    color: #3182ce;
  }

  .quantity-btn.active {
    background: #3182ce;
    border-color: #3182ce;
    color: white;
  }

  .price-display {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    display: block;
  }

  .price-per-unit {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }

  .savings-badge {
    background: #f0fff4;
    color: #22543d;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .buy-now-btn {
    width: 100%;
    background: #48bb78;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
  }

  .buy-now-btn:hover {
    background: #38a169;
  }

  .guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
  }

  .guarantee-icon {
    color: #48bb78;
    margin-right: 0.25rem;
  }

  /* What's Included Section */
  .whats-included {
    background: #f7fafc;
    padding: 3rem 0;
    margin-top: 4rem;
  }

  .whats-included h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
  }

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

  .included-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .included-icon {
    width: 60px;
    height: 60px;
    background: #ebf8ff;
    color: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
  }

  .included-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
  }

  .included-item p {
    color: #4a5568;
    font-size: 0.9rem;
  }

  /* Footer CTA */
  .footer-cta {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 4rem 0;
  }

  .footer-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .footer-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
  }

  .footer-cta-btn {
    background: #48bb78;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .footer-cta-btn:hover {
    background: #38a169;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .content-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .pricing-sidebar {
      position: static;
      order: -1;
    }

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

  @media (max-width: 768px) {
    .page-header h1 {
      font-size: 2rem;
    }

    .page-header p {
      font-size: 1.1rem;
    }

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

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

    .included-grid {
      grid-template-columns: 1fr;
    }
  }
}
.checkout-page {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .checkout-header {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
  }

  .security-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
  }

  .badge::before {
    content: '✓';
    background: #27ae60;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }

  .checkout-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
  }

  .checkout-form {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .order-summary {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
  }

  .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .step-indicator {
    background: #667eea;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }

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

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

  label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
  }

  input,
  select,
  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    height: auto;
  }

  input:focus,
  select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .quantity-input {
    width: 80px;
    text-align: center;
    font-weight: 600;
  }

  .quantity-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .quantity-btn:hover {
    background: #5a67d8;
  }

  .payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
  }

  .payment-method {
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
  }

  .payment-method.active {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
  }

  .payment-method img {
    height: 24px;
    margin-bottom: 5px;
  }

  .checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
  }

  .checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }

  .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e1e8ed;
  }

  .product-item:last-child {
    border-bottom: none;
  }

  .product-info {
    flex: 1;
  }

  .product-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
  }

  .product-details {
    font-size: 13px;
    color: #7f8c8d;
  }

  .product-price {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
  }

  .total-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e1e8ed;
  }

  .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .total-row.final {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e8ed;
  }

  .guarantees {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
  }

  .guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #2c3e50;
  }

  .guarantee-item:last-child {
    margin-bottom: 0;
  }

  .guarantee-icon {
    color: #27ae60;
    font-weight: bold;
  }

  .trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
  }

  .trust-badge {
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
  }

  .express-checkout {
    margin-bottom: 30px;
    text-align: center;
  }

  .express-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
  }

  .divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #7f8c8d;
    font-size: 14px;
  }

  .divider::before,
  .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e1e8ed;
  }

  .divider span {
    padding: 0 20px;
  }

  @media (max-width: 768px) {
    .checkout-main {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .checkout-form,
    .order-summary {
      padding: 25px;
    }

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

    .security-badges {
      justify-content: center;
    }
  }
}

.test-item {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid #e5e5dd;
  max-width: 630px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;

  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  /* padding: 2rem; */
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.test-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.test-item-inner {
  padding: 24px;
}
.test-item-header {
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.test-item-header:hover {
  text-decoration: none;
  color: #000;
  opacity: 1;
}
.test-item-user {
  display: flex;
}
.test-item-avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  background-color: #fddce5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  user-select: none;
  cursor: default;
  span {
    font-size: 16px;
    font-weight: 900;
  }
}
.test-item-profile {
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  align-self: center;
  overflow: hidden;
  margin-left: 8px;
}
.test-item-profile-name {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.test-item-profile-bottom {
  display: flex;
  font-size: 14px;
  color: #696a6a;
}
.test-item-profile-location {
  display: flex;
  align-items: center;
  margin-left: 16px;
  color: #696a6a;
}
.test-item-divider {
  display: block;
  height: 1px;
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  margin-top: 16px;
  background: #e5e5dd;
}
.test-item-body {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.test-item-rating {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.test-item-star {
  width: 108px;
  height: 20px;
  img {
    display: block;
    width: 100%;
  }
}
.test-item-date {
  order: 3;
  flex-grow: 1;
  text-align: right;
  font-size: 14px;
  color: #696a6a;
}
.test-item-verified {
  order: 2;
  width: auto;
  margin-top: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  color: #696a6a;
  font-size: 14px;
  svg {
    margin-right: 6px;
  }
}
.test-item-content {
  margin-top: 16px;
}
.test-item-content-date {
  margin-top: 16px;
  margin-bottom: 0;
}
.test-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
.test-item-text {
  margin-top: 8px;
  color: #191919;
}
.test-item-footer {
  margin-top: 10px;
  margin-bottom: -12px;
  display: flex;
  align-items: center;
}
.test-item-footer:hover {
  text-decoration: none;
  color: #000;
  opacity: 1;
}
.test-item-footer-link {
  display: flex;
  align-items: center;
  padding: 4px;
  color: #696a6a;
  margin-right: 8px;
  font-size: 14px;
  svg {
    margin-right: 4px;

    fill: #6c6c85;
  }
}
.test-item-footer-right {
  flex: 1 1;
  display: flex;
  justify-content: flex-end;
  color: #696a6a;

  font-size: 14px;
  svg {
    fill: #6c6c85;
  }
}
.test-wrapper {
  @media (max-width: 768px) {
    padding-bottom: 30px !important;
  }
  .test-item {
    @media (max-width: 768px) {
      margin-bottom: 0;
    }
  }
}
.test-item-img {
  border-radius: 8px;
  height: 320px;
  @media (max-width: 768px) {
    height: 450px;
    margin: auto;
  }
}
.test-item-google::before {
  display: none;
}
.test-item-google {
  border: none;
  background: transparent;
  .test-item-avatar {
    background-color: #efa320;
  }
  .test-item-date {
    flex-grow: 0;
  }
  .test-item-content {
    margin-top: 0;
  }
}
