/* Base Styles */
:root {
  --primary: #0062cc;
  --secondary: #ff8a00;
  --background: #ffffff;
  --foreground: #333333;
  --muted: #f5f5f5;
  --muted-foreground: #6c757d;
  --border: #e2e8f0;
  --radius: 0.5rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  line-height: 1.5;
  background: linear-gradient(to bottom right, #ffffff, #f0f7ff);
  min-height: 100vh;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Header Styles */
.header {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}

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

.logo {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Main Content */
.main {
  flex: 1;
}

/* Hero Section */
.hero-section {
  width: 100%;
  padding: 4rem 0;
}

.hero-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.25rem;
  color: #6c757d;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s, transform 0.3s;
  background-color: white;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.product-image-container {
  position: relative;
  height: 12rem;
  background: linear-gradient(to right, rgba(0, 98, 204, 0.05), rgba(255, 138, 0, 0.05));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.product-header {
  padding: 1.5rem 1.5rem 0.75rem;
}

.product-title-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.product-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-original-price {
  font-size: 0.875rem;
  color: #e53e3e;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-description {
  color: #6c757d;
  margin-top: 0.5rem;
}

.product-content {
  flex: 1;
  padding: 0 1.5rem;
}

.product-features {
  list-style: none;
  margin-top: 1rem;
}

.product-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.product-footer {
  padding: 1.5rem;
  padding-top: 0;
}

.paypal-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.paypal-button {
  width: 100%;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 1.5rem 0;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.paypal-button:hover {
  background-color: rgba(0, 98, 204, 0.9);
}

/* Small Products Section - New Feature */
.small-products-section {
  margin: 2rem 0 4rem;
}

.small-products-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.small-product-tab {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.small-product-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.small-product-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  flex-shrink: 0;
}

.small-product-icon-svg {
  width: 28px;
  height: 28px;
  color: white;
}

.small-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--foreground);
}

.small-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.small-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.small-product-button {
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-left: 1rem;
  font-size: 1rem;
  min-width: 80px;
  text-align: center;
}

.small-product-button:hover {
  background-color: #27ae60;
}

@media (min-width: 768px) {
  .small-products-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .small-product-tab {
    width: 48%;
  }

  .small-product-name {
    font-size: 1.2rem;
  }

  .small-product-price {
    font-size: 1.6rem;
  }

  .small-product-button {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
  }
}

/* Bundle Section */
.bundle-container {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.bundle-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f1f1;
}

.bundle-content {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bundle-message {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.bundle-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bundle-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.bundle-title {
  font-size: 1.875rem;
  font-weight: 700;
}

.bundle-price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.bundle-original-price {
  font-size: 1.125rem;
  color: #e53e3e;
  text-decoration: line-through;
  font-weight: 500;
}

.bundle-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #16a34a;
}

.bundle-savings {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.bundle-button-container {
  display: flex;
  justify-content: center;
}

.bundle-link {
  text-decoration: none;
}

.bundle-button {
  background-color: #16a34a;
  color: white;
  font-weight: 600;
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: background-color 0.3s;
}

.bundle-button:hover {
  background-color: #15803d;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  padding: 4rem 0;
}

.testimonials-container {
  max-width: 48rem;
  margin: 0 auto;
}

.testimonial-card-container {
  overflow: hidden;
}

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(8, 112, 184, 0.2);
  transform: perspective(1000px) rotateX(2deg);
  transform-style: preserve-3d;
}

.testimonial-content {
  text-align: center;
  transform: translateZ(20px);
}

.testimonial-text {
  font-size: 1.125rem;
  color: #1f2937;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-author-container {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  transform: translateZ(30px);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6c757d;
}

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

.testimonial-control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: var(--shadow);
}

.testimonial-control-button:hover {
  background-color: rgba(0, 98, 204, 0.1);
}

.control-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.testimonial-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #d1d5db;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonial-indicator.active {
  background-color: var(--primary);
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 3rem 0;
}

.contact-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-button-container {
  display: flex;
  justify-content: center;
}

.contact-link {
  text-decoration: none;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: rgba(0, 98, 204, 0.9);
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

/* Footer */
.footer {
  width: 100%;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}

.footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .bundle-title {
    font-size: 1.5rem;
  }

  .bundle-price {
    font-size: 2rem;
  }

  .bundle-button {
    padding: 1.25rem 2rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .product-title {
    font-size: 1.25rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}
