* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

.site-header {
  background: #0f172a;
  color: #fff;
  padding: 18px 0;
}

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

.logo {
  font-size: 22px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: #38bdf8;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e40af);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  max-width: 850px;
  margin: 0 auto 20px;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn:hover {
  background: #005f8d;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #fff;
}

.page-title {
  background: #eaf2f8;
  padding: 55px 0;
  text-align: center;
}

.page-title h1 {
  margin: 0 0 10px;
  font-size: 36px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card h3,
.price-card h3 {
  margin-top: 0;
  color: #0f172a;
}

.price-card {
  text-align: center;
}

.price-card.featured {
  border: 3px solid #0073aa;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #0073aa;
  margin: 15px 0;
}

.contact-wrap {
  max-width: 720px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.alert {
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 700;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.site-footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 30px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-height: 100px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .logo-link {
    justify-content: center;
    width: 100%;
  }

  .site-logo {
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
  }

}
.menu-toggle {
  display: none;
  background: #0073aa;
  color: #fff;
  border: none;
  font-size: 26px;
  width: 48px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    margin: 10px auto 0;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    background: rgba(15, 23, 42, 0.96);
    border-radius: 12px;
    overflow: hidden;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }
}
.cookie-popup {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 9999;
  justify-content: center;
  padding: 0 16px;
}

.cookie-box {
  width: 100%;
  max-width: 720px;
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.cookie-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.cookie-box p {
  margin: 0;
  color: #dbeafe;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.cookie-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-btn.accept {
  background: #0073aa;
  color: #fff;
}

.cookie-btn.close {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.cookie-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: 10px;
  }

  .cookie-box {
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
.service-card {
  position: relative;
}

.service-icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.project-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.project-category {
  display: inline-block;
  align-self: flex-start;

  background: #e0f2fe;
  color: #0369a1;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 18px;
}

.project-card h3 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.3;
  color: #0f172a;
}

.project-card p {
  margin: 0;
  line-height: 1.8;
  color: #334155;
  flex: 1;
}

.project-btn {
  margin-top: 28px;
  align-self: flex-start;
}

@media (max-width: 768px) {

  .project-image-wrap {
    height: 200px;
  }

  .project-card-content {
    padding: 20px;
  }

  .project-card h3 {
    font-size: 28px;
  }

  .project-btn {
    width: 100%;
    text-align: center;
  }

}
.hp-field {
  display: none !important;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.product-image-wrap {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  display: inline-block;
  align-self: flex-start;
  background: #e0f2fe;
  color: #075985;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0f172a;
}

.product-card p {
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.7;
  flex: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-meta span {
  background: #f1f5f9;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.download-count {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.product-btn {
  width: 100%;
  text-align: center;
}

.product-disabled {
  display: block;
  width: 100%;
  text-align: center;
  background: #e5e7eb;
  color: #64748b;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrap {
    height: 180px;
  }
}
/* =========================
   PRODUCTS FINAL STYLE
========================= */

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  width: 100%;
  height: 240px;
  background: #f8fafc;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 20px;
}

.product-image {
  max-width: 100%;
  max-height: 200px;

  width: auto;
  height: auto;

  object-fit: contain;
  display: block;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  display: inline-block;
  width: fit-content;
  background: #e0f2fe;
  color: #075985;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.product-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #0f172a;
}

.product-card p {
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.7;
  flex: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 12px;
}

.product-meta span {
  background: #f1f5f9;
  color: #0f172a;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.download-count {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.product-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrap {
    height: 190px;
  }
}
.paypal-button-container {
  width: 100%;
  min-height: 45px;
  margin-top: 14px;
}
.thank-you-wrap {
  max-width: 760px;
}

.thank-you-card {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
}

.thank-you-image-wrap {
  width: 100%;
  height: 220px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thank-you-image-wrap img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.thank-you-card h2 {
  margin: 24px 0 12px;
  font-size: 30px;
  color: #0f172a;
}

.order-info {
  background: #f8fafc;
  padding: 18px;
  border-radius: 12px;
  margin: 24px 0;
  text-align: left;
}

.order-info p {
  margin: 8px 0;
}

.thank-you-btn {
  width: 100%;
  text-align: center;
}
.buyer-box {
  margin-top: 18px;
}

.buyer-box label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0 6px;
}

.buyer-box input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}

.buyer-box input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.12);
}