/* ===============================
 VARIABLES
=============================== */
:root {
  --brand-blue: #1e73ff;
  --light-bg: #f5f7fb;
  --dark-bg: #111827;
}

/* ===============================
 GLOBAL
=============================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2937;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===============================
 HERO
=============================== */
.hero-section {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  color: var(--brand-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #555;
}

.btn-modern {
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
/* HERO PRODUCT IMAGE */
.hero-image {
    max-width: 660px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: auto;
}

/* ===============================
 PACKAGE
=============================== */
.package-section {
  background: var(--light-bg);
}

.package-price {
  font-size: 1.4rem;
  color: var(--brand-blue);
}

.package-list {
  list-style: none;
  padding: 0;
}

.package-list li {
  margin-bottom: 10px;
}

.package-list i {
  color: var(--brand-blue);
  margin-right: 8px;
}

/* ===============================
 SERVICES
=============================== */
.services-section {
  background: #fff;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-icon {
  font-size: 42px;
  color: var(--brand-blue);
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-5deg);
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
}

.service-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===============================
 TEMPLATES / WOOCOMMERCE
=============================== */
.templates-section {
  background: var(--light-bg);
}

.woocommerce ul.products li.product {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===============================
 TESTIMONIALS
=============================== */
.testimonials-section {
  background: #fff;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===============================
 CTA
=============================== */
.cta-section {
  background: var(--dark-bg);
  color: #fff;
}

.btn-cta {
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 50px;
}
/* OUTLINE BUTTON HOVER */
.btn-outline-primary.btn-modern {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.btn-outline-primary.btn-modern:hover {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30,115,255,0.35);
}


/* ===============================
 MOBILE
=============================== */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 0;
    text-align: center;
  }
}
/* ===============================
 SINGLE PRODUCT PAGE
=============================== */

.single-product-wrapper {
  max-width: 1400px;
}

.product-summary {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.product-short-desc {
  color: #555;
  margin: 15px 0;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* IMAGE QUALITY FIX */
.single-product .woocommerce-product-gallery__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: auto;
  border-radius: 16px;
}

/* TRUST */
.product-trust li {
  list-style: none;
  margin-bottom: 10px;
}

.product-trust i {
  color: var(--brand-blue);
  margin-right: 8px;
}

/* PAYPAL */
.payment-trust img {
  max-width: 120px;
}
.payment-trust p {
  font-size: 0.9rem;
  color: #555;
}

/* BADGES */
.badge {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
}
.badge-blue {
  background: #e8f0ff;
  color: #1e73ff;
}
.badge-dark {
  background: #111827;
  color: #fff;
}

/* LICENSE CARDS */
.license-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}
.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.license-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 10px 0;
}

/* AFTER PURCHASE */
.after-purchase-box {
  background: #f5f7fb;
  padding: 40px;
  border-radius: 20px;
}
.purchase-steps li {
  list-style: none;
  margin-bottom: 12px;
}
.purchase-steps i {
  color: var(--brand-blue);
  margin-right: 10px;
}

/* MOBILE STICKY CTA */
@media (max-width: 768px) {
  .single_add_to_cart_button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 999;
    border-radius: 50px;
    padding: 14px;
  }
}

/* PAYPAL INLINE TRUST */
.payment-trust-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #444;
}
.payment-trust-inline img {
  width: 24px;
}

/* LICENSE SECTION */
.license-card.detailed {
  background: #f9fafb;
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
  height: 100%;
}
.license-card.detailed:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.license-card.detailed.featured {
  border: 2px solid var(--brand-blue);
  background: #fff;
}
.license-icon {
  font-size: 34px;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.license-card h5 span {
  color: var(--brand-blue);
}
.license-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}
.license-card ul {
  padding-left: 0;
}
.license-card li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.license-card li i {
  color: var(--brand-blue);
  margin-right: 8px;
}

/* AFTER PURCHASE PROCESS */
.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.process-card i {
  font-size: 32px;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.process-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
}
.process-card p {
  font-size: 0.95rem;
  color: #555;
}

