@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #0a2e50;
  line-height: 1.6;
  font-weight: 400;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(10, 46, 80, 0.1);
}
.site-header .header-top {
  background-color: #87ceab;
  color: #0a2e50;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem 1rem;
}
.site-header .header-main {
  padding: 1rem 0;
}
.site-header .header-main img {
  max-width: 150px;
}
.site-header .header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a2e50;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}
.brand .brand-mark {
  background-color: #4caf80;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.brand .brand-name {
  color: #0a2e50;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
}
.primary-nav .nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0a2e50;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.primary-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #4caf80;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav .nav-link:hover, .primary-nav .nav-link:focus {
  color: #4caf80;
}
.primary-nav .nav-link.is-active::after, .primary-nav .nav-link:hover::after, .primary-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.hero {
  background: linear-gradient(rgba(10, 46, 80, 0.1), rgba(10, 46, 80, 0.1)), #87ceab;
  padding: 3.5rem 0;
}
.hero .hero-content {
  max-width: 540px;
  display: grid;
  gap: 1rem;
}
.hero .hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #0a2e50;
  line-height: 1.1;
}
.hero .hero-content p {
  color: #333333;
  font-size: 1.05rem;
}

.hero-cta {
  background-color: #e50000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-cta:hover, .hero-cta:focus {
  background-color: #c20000;
  transform: translateY(-1px);
}

.article-list {
  padding: 3rem 0 4rem;
  background-color: rgba(135, 206, 171, 0.1);
}
.article-list .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.article-list .section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.article-list .section-header p {
  color: #7a7a7a;
  font-size: 1rem;
}
.article-list .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 46, 80, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(10, 46, 80, 0.16);
}
.card .card-media {
  position: relative;
  aspect-ratio: 4/3;
  background-color: rgba(10, 46, 80, 0.05);
  height: 300px;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.card .card-body h3 {
  font-size: 1.25rem;
  color: #0a2e50;
}
.card .card-body p {
  color: #333333;
  font-size: 0.98rem;
}
.card .meta {
  color: #7a7a7a;
  font-size: 0.85rem;
}

.badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background-color: #4caf80;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(10, 46, 80, 0.2);
}

.site-footer {
  background-color: #0a2e50;
  color: #ffffff;
  padding: 2.5rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer .footer-info p {
  margin: 0;
}
.site-footer .footer-info .copyright {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-info .footer-address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}
.site-footer .footer-info .footer-contact {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}
.site-footer .footer-info .footer-contact a {
  color: #4caf80;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-footer .footer-info .footer-contact a:hover, .site-footer .footer-info .footer-contact a:focus {
  color: #6ec099;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.site-footer .footer-nav a:hover, .site-footer .footer-nav a:focus {
  color: #4caf80;
}

.products-hero {
  background: linear-gradient(rgba(10, 46, 80, 0.05), rgba(10, 46, 80, 0.05)), #87ceab;
  padding: 2.5rem 0;
}
.products-hero .products-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.products-hero .products-hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0a2e50;
}
.products-hero .products-hero-content p {
  color: #333333;
  font-size: 1.05rem;
}

.features-bar {
  background-color: #0a2e50;
  padding: 1.25rem 0;
}
.features-bar .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.features-bar .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.9rem;
}
.features-bar .feature-item .feature-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(76, 175, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.products-list {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
}
.products-list .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.products-list .section-header h2 {
  font-size: 2rem;
  color: #0a2e50;
}
.products-list .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 46, 80, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 46, 80, 0.15);
}
.product-card .product-media {
  aspect-ratio: 1/1;
  background-color: rgba(135, 206, 171, 0.1);
  overflow: hidden;
}
.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}
.product-card .product-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}
.product-card .product-body h3 {
  font-size: 1.05rem;
  color: #0a2e50;
  line-height: 1.4;
  min-height: 2.8rem;
}
.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card .product-rating .stars {
  color: #4caf80;
  font-size: 0.9rem;
}
.product-card .product-rating .rating-value {
  color: #7a7a7a;
  font-size: 0.9rem;
  font-weight: 600;
}
.product-card .product-btn {
  background-color: #4caf80;
  color: #ffffff;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 100%;
  display: inline-block;
}
.product-card .product-btn:hover, .product-card .product-btn:focus {
  background-color: #40936b;
  transform: translateY(-1px);
}

.guarantee-section {
  background-color: #ffffff;
  padding: 3rem 0;
}
.guarantee-section .guarantee-box {
  background: linear-gradient(135deg, #0a2e50 0%, #072139 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 12px 40px rgba(10, 46, 80, 0.2);
}
.guarantee-section .guarantee-icon .guarantee-seal {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #4caf80;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(76, 175, 128, 0.3);
}
.guarantee-section .guarantee-content {
  color: #ffffff;
}
.guarantee-section .guarantee-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.guarantee-section .guarantee-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.guarantee-section .guarantee-btn {
  background-color: #4caf80;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.guarantee-section .guarantee-btn:hover, .guarantee-section .guarantee-btn:focus {
  background-color: #5cb88d;
  transform: translateY(-2px);
}

.testimonials-section {
  background-color: rgba(135, 206, 171, 0.1);
  padding: 3rem 0 4rem;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-section .section-header h2 {
  font-size: 1.75rem;
  color: #0a2e50;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(10, 46, 80, 0.08);
  display: grid;
  gap: 1rem;
}
.testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.testimonial-card .testimonial-header strong {
  color: #0a2e50;
  font-size: 0.95rem;
}
.testimonial-card .testimonial-header .stars {
  color: #4caf80;
  font-size: 0.9rem;
}
.testimonial-card p {
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-main {
  background-color: #ffffff;
  padding: 3rem 0 4rem;
}
.article-main li {
  list-style: circle;
}

.article-page {
  display: grid;
  gap: 2.5rem;
}

.article-lede {
  display: grid;
  gap: 1rem;
}
.article-lede .article-tag {
  background-color: rgba(76, 175, 128, 0.18);
  color: #0a2e50;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.article-lede h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #0a2e50;
}
.article-lede .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: #7a7a7a;
  font-size: 0.9rem;
}
.article-lede .article-intro {
  font-size: 1.08rem;
  color: #333333;
}

.article-hero {
  border-radius: 1rem;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(10, 46, 80, 0.16);
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero figcaption {
  background-color: rgba(10, 46, 80, 0.05);
  color: #7a7a7a;
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
}

.article-content {
  display: grid;
  gap: 1.75rem;
  color: #333333;
  font-size: 1.02rem;
  line-height: 1.75;
}
.article-content h2,
.article-content h3 {
  color: #0a2e50;
  line-height: 1.4;
}
.article-content h2 {
  font-size: 1.65rem;
}
.article-content h3 {
  font-size: 1.25rem;
}
.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.article-content li {
  position: relative;
}
.article-content blockquote {
  border-left: 4px solid #4caf80;
  padding: 1rem 1.5rem;
  background-color: rgba(76, 175, 128, 0.12);
  color: #0a2e50;
  font-style: italic;
}
.article-content a {
  color: #4caf80;
  font-weight: 600;
}

.article-highlight {
  background: linear-gradient(rgba(76, 175, 128, 0.1), rgba(76, 175, 128, 0.1)), #ffffff;
  border: 1px solid rgba(76, 175, 128, 0.35);
  border-radius: 0.85rem;
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.article-highlight h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0a2e50;
}
.article-highlight p {
  margin: 0;
}

.article-cta {
  background-color: rgba(135, 206, 171, 0.2);
  border-radius: 1rem;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}
.article-cta h2 {
  color: #0a2e50;
  font-size: 1.5rem;
}
.article-cta p {
  color: #333333;
}
.article-cta .cta-button {
  background-color: #e50000;
  color: #ffffff;
  font-weight: 600;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.article-cta .cta-button:hover, .article-cta .cta-button:focus {
  background-color: #c20000;
  transform: translateY(-1px);
}

.article-related {
  border-top: 1px solid rgba(10, 46, 80, 0.08);
  padding-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
.article-related h2 {
  font-size: 1.4rem;
  color: #0a2e50;
}

.article-related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-related-link {
  background-color: rgba(10, 46, 80, 0.05);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: #0a2e50;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.article-related-link span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 0.25rem;
}
.article-related-link:hover, .article-related-link:focus {
  background-color: rgba(76, 175, 128, 0.15);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0 5rem;
  }
  .products-hero {
    padding: 3rem 0;
  }
  .guarantee-section .guarantee-box {
    padding: 3rem;
  }
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .site-footer .footer-info {
    text-align: left;
  }
  .article-main {
    padding: 4rem 0 5rem;
  }
  .article-content {
    font-size: 1.05rem;
  }
  .article-cta {
    padding: 2rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .features-bar .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .guarantee-section .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .guarantee-icon .guarantee-seal {
    margin: 0 auto;
  }
}
/* ========================================
   PAGE CONTENT STYLES (Disclaimer, Privacy, etc.)
   ======================================== */
.page-content {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
}

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(76, 175, 128, 0.2);
}
.page-header h1 {
  font-size: 2.5rem;
  color: #0a2e50;
  font-weight: 700;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.content-wrapper p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 1.5rem;
}
.content-wrapper p:last-child {
  margin-bottom: 0;
}
.content-wrapper strong {
  color: #0a2e50;
  font-weight: 600;
}
.content-wrapper a {
  color: #4caf80;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.content-wrapper a:hover, .content-wrapper a:focus {
  color: #3d8b66;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-content {
    padding: 4rem 0 5rem;
  }
  .page-header h1 {
    font-size: 3rem;
  }
  .content-wrapper p {
    font-size: 1.08rem;
  }
}
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .content-wrapper p {
    font-size: 1rem;
  }
}
/* ========================================
   PRODUCT PAGE STYLES
   ======================================== */
.product-page {
  background-color: #f8f9fa;
}

/* Product Hero Section */
.product-hero {
  padding: 3rem 0;
  background-color: #ffffff;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero-image {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.product-hero-image img {
  max-width: 400px;
  margin: 0 auto;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #4caf80;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-hero-content h1 {
  font-size: 2.5rem;
  color: #0a2e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-subtitle {
  font-size: 1.25rem;
  color: #4caf80;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-description {
  margin-bottom: 2rem;
}

.product-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
}

.product-benefits h3 {
  font-size: 1.25rem;
  color: #0a2e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #f0f7f4;
  border-radius: 0.5rem;
  color: #0a2e50;
  font-weight: 500;
}

.product-benefits li::before {
  content: "✓";
  color: #4caf80;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Checkout Section */
.product-checkout {
  padding: 3rem 0;
}

.checkout-box {
  background: linear-gradient(135deg, #e8f4f0 0%, #d4ebe3 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-box h2 {
  text-align: center;
  font-size: 2rem;
  color: #0a2e50;
  margin-bottom: 2rem;
  font-weight: 700;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.product-package {
  position: relative;
  text-align: center;
  padding: 1.5rem;
}

.package-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
}

.package-image {
  max-width: 250px;
  margin: 2rem auto 0;
}

.package-details {
  text-align: center;
}

.package-title {
  font-size: 1.75rem;
  color: #0a2e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.package-title span {
  color: #4caf80;
  font-weight: 700;
}

.package-pricing {
  margin-bottom: 2rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3.5rem;
  color: #0a2e50;
  font-weight: 700;
}

.price-unit {
  font-size: 1.25rem;
  color: #4a5568;
}

.price-details {
  font-size: 1.05rem;
}

.price-details p {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.price-old {
  text-decoration: line-through;
  color: #a0aec0;
  margin-right: 0.5rem;
}

.shipping-info {
  font-size: 0.95rem;
  color: #718096;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #4caf80 0%, #40936b 100%);
  color: #ffffff;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 128, 0.3);
  margin-bottom: 1.5rem;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 128, 0.4);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f0f7f4;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.feature-icon {
  color: #4caf80;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Product Guarantee */
.product-guarantee {
  padding: 3rem 0;
  background-color: #ffffff;
}

.product-guarantee .guarantee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background-color: #f0f7f4;
  border-radius: 1rem;
}

.product-guarantee .guarantee-seal {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4caf80 0%, #40936b 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.product-guarantee .guarantee-text h2 {
  font-size: 1.75rem;
  color: #0a2e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-guarantee .guarantee-text p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive - Product Pages */
@media (min-width: 768px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .package-details {
    text-align: left;
  }
  .price-main {
    justify-content: flex-start;
  }
  .product-guarantee .guarantee-content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .product-hero-content h1 {
    font-size: 2rem;
  }
  .product-benefits ul {
    grid-template-columns: 1fr;
  }
  .checkout-box {
    padding: 1.5rem;
  }
  .checkout-content {
    padding: 1.5rem;
  }
  .price-value {
    font-size: 2.5rem;
  }
  .product-guarantee .guarantee-content {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
