/* 核心布局逻辑：上下排列，整体高度沾满屏幕 */
.hero-layout-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  /* 强制沾满第一屏 */
  overflow: hidden;
}

.hero-banner-part {
  width: 100%;
  height: 70%;
  /* 上方 Banner 占 70% */
}

.hero-features-part {
  width: 100%;
  height: 30%;
  /* 下方 Features 占 30% */
  background-color: #050505;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 移动端适配 */
@media (max-width: 991px) {
  .hero-layout-wrapper {
    height: auto;
    /* 手机端取消固定高度，让内容撑开 */
  }

  .hero-banner-part {
    height: 60vh;
  }

  .hero-features-part {
    height: auto;
    padding: 40px 0;
  }
}

.stat-icon {
  font-size: 70px;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

/* ============================================
   zg004 Custom Module Styles
   ============================================ */

/* ---------- Section Header (shared) ---------- */
.zg-section-header {
  margin-bottom: 50px;
}
.zg-section-tag {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gt-theme, #ff9700);
  margin-bottom: 10px;
}
.zg-section-title {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.zg-section-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.zg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: var(--gt-theme, #ff9700);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.zg-btn-primary:hover {
  background: #e08600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 151, 0, 0.3);
}
.zg-btn-primary i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.zg-btn-primary:hover i {
  transform: translateX(4px);
}

.zg-read-more,
.zg-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gt-theme, #ff9700);
  text-decoration: none;
  transition: all 0.3s ease;
}
.zg-read-more:hover,
.zg-learn-more:hover {
  color: #fff;
  gap: 10px;
}

.zg-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zg-view-more:hover {
  color: var(--gt-theme, #ff9700);
}

/* ---------- About Section ---------- */
.zg-about-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}
.zg-about-image-wrapper {
  position: relative;
  padding-right: 30px;
}
.zg-about-main-img {
  border-radius: 8px;
  overflow: hidden;
}
.zg-about-main-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.zg-about-floating-card {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: var(--gt-theme, #ff9700);
  padding: 20px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(255, 151, 0, 0.3);
}
.zg-floating-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}
.zg-floating-text {
  display: flex;
  flex-direction: column;
}
.zg-floating-num {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.zg-floating-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zg-about-content {
  padding-left: 30px;
}
.zg-about-title {
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}
.zg-about-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 30px;
}
.zg-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}
.zg-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.zg-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 151, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gt-theme, #ff9700);
}
.zg-feature-text h5 {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.zg-feature-text p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Products Section (product-style, pro-list) ---------- */
.zg-products-section {
  padding: 100px 0;
  background: #050505;
}
.zg-product-card {
  display: block;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #222;
}
.zg-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--gt-theme, #ff9700);
}
.zg-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.zg-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zg-product-card:hover .zg-product-img img {
  transform: scale(1.08);
}
.zg-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.zg-product-card:hover .zg-product-overlay {
  opacity: 1;
}
.zg-product-info {
  padding: 20px;
}
.zg-product-info h4 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.zg-product-card:hover .zg-product-info h4 {
  color: var(--gt-theme, #ff9700);
}
.zg-product-info p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Standard Section (standard-style) ---------- */
.zg-standard-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.zg-standard-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}
.zg-standard-card:hover {
  transform: translateY(-5px);
  border-color: var(--gt-theme, #ff9700);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.zg-standard-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.zg-standard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zg-standard-card:hover .zg-standard-img img {
  transform: scale(1.05);
}
.zg-standard-body {
  padding: 22px;
}
.zg-standard-body h4 {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.zg-standard-body h4 a {
  color: #fff;
  text-decoration: none;
}
.zg-standard-body h4 a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-standard-body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 15px;
}
.zg-standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.zg-standard-tags a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gt-theme, #ff9700);
  background: rgba(255, 151, 0, 0.1);
  padding: 4px 12px;
  border-radius: 3px;
  text-decoration: none;
}

/* ---------- News Section (news-style, list, ziding-list, list-tags, list-results) ---------- */
.zg-news-section {
  padding: 100px 0;
  background: #050505;
}
.zg-list-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.zg-news-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}
.zg-news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gt-theme, #ff9700);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.zg-news-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.zg-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zg-news-card:hover .zg-news-img img {
  transform: scale(1.05);
}
.zg-news-tags {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.zg-news-tags a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: var(--gt-theme, #ff9700);
  padding: 3px 10px;
  border-radius: 3px;
  text-decoration: none;
}
.zg-news-body {
  padding: 22px;
}
.zg-news-date {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}
.zg-news-date i {
  margin-right: 5px;
  color: var(--gt-theme, #ff9700);
}
.zg-news-body h4 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.zg-news-body h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.zg-news-body h4 a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-news-body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ---------- Showcase Section (big-style) ---------- */
.zg-showcase-section {
  padding: 100px 0;
  background: #050505;
}
.zg-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zg-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.zg-showcase-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.zg-showcase-img {
  width: 100%;
  height: 100%;
}
.zg-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zg-showcase-item:hover .zg-showcase-img img {
  transform: scale(1.08);
}
.zg-showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}
.zg-showcase-caption h4 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.zg-showcase-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gt-theme, #ff9700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.zg-showcase-item:hover .zg-showcase-arrow {
  background: #fff;
  color: #000;
}

/* ---------- Video Section ---------- */
.zg-video-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.zg-video-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}
.zg-video-card:hover {
  border-color: var(--gt-theme, #ff9700);
  transform: translateY(-5px);
}
.zg-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.zg-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zg-video-card:hover .zg-video-thumb img {
  transform: scale(1.05);
}
.zg-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gt-theme, #ff9700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.zg-video-play-btn:hover {
  background: #fff;
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}
.zg-video-info {
  padding: 18px 20px;
}
.zg-video-info h4 {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.zg-video-info h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.zg-video-info h4 a:hover {
  color: var(--gt-theme, #ff9700);
}

/* ---------- Contact Section ---------- */
.zg-contact-section {
  padding: 100px 0;
  background: #050505;
}
.zg-contact-wrapper {
  background: #111;
  border-radius: 12px;
  padding: 60px;
  border: 1px solid #222;
}
.zg-contact-content {
  padding-right: 40px;
}
.zg-contact-title {
  font-family: "Barlow", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.25;
}
.zg-contact-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 30px;
}
.zg-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.zg-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.zg-contact-info-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 151, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gt-theme, #ff9700);
}
.zg-contact-info-item div {
  display: flex;
  flex-direction: column;
}
.zg-contact-info-item span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #999;
  margin-bottom: 2px;
}
.zg-contact-info-item a {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.zg-contact-info-item a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-contact-form-box {
  background: #0a0a0a;
  border-radius: 8px;
  padding: 35px;
  border: 1px solid #222;
}
.zg-contact-form .row {
  margin: 0;
}
.zg-form-group {
  margin-bottom: 18px;
}
.zg-form-group input,
.zg-form-group textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.zg-form-group input:focus,
.zg-form-group textarea:focus {
  border-color: var(--gt-theme, #ff9700);
}
.zg-form-group input::placeholder,
.zg-form-group textarea::placeholder {
  color: #666;
}
.zg-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Stats Section ---------- */
.zg-stats-section {
  padding: 80px 0;
  background: #0a0a0a;
  position: relative;
}
.zg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.zg-stat-item {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  border-radius: 8px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}
.zg-stat-item:hover {
  border-color: var(--gt-theme, #ff9700);
  transform: translateY(-5px);
}
.zg-stat-icon {
  font-size: 36px;
  color: var(--gt-theme, #ff9700);
  margin-bottom: 15px;
}
.zg-stat-number {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.zg-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- FAQ Section ---------- */
.zg-faq-section {
  padding: 100px 0;
  background: #050505;
}
.zg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zg-faq-item {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.zg-faq-item.active {
  border-color: var(--gt-theme, #ff9700);
}
.zg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.zg-faq-question h5 {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-right: 20px;
}
.zg-faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(255, 151, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gt-theme, #ff9700);
  font-size: 12px;
  transition: all 0.3s ease;
}
.zg-faq-item.active .zg-faq-toggle {
  background: var(--gt-theme, #ff9700);
  color: #fff;
}
.zg-faq-answer {
  padding: 0 24px 20px;
}
.zg-faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Footer ---------- */
.zg-footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
}
.zg-footer-main {
  padding: 80px 0 50px;
}
.zg-footer-widget {
  margin-bottom: 30px;
}
.zg-footer-logo {
  margin-bottom: 20px;
}
.zg-footer-logo img {
  max-height: 45px;
}
.zg-footer-widget p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}
.zg-social-links {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.zg-social-links li a {
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zg-social-links li a:hover {
  background: var(--gt-theme, #ff9700);
  border-color: var(--gt-theme, #ff9700);
  color: #fff;
  transform: translateY(-3px);
}
.zg-footer-title {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.zg-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gt-theme, #ff9700);
}
.zg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zg-footer-links li {
  margin-bottom: 10px;
}
.zg-footer-links li a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.zg-footer-links li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--gt-theme, #ff9700);
}
.zg-footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}
.zg-newsletter-form {
  margin-bottom: 25px;
}
.zg-newsletter-input {
  display: flex;
  gap: 0;
}
.zg-newsletter-input input {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  background: #111;
  border: 1px solid #222;
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 12px 16px;
  outline: none;
}
.zg-newsletter-input input:focus {
  border-color: var(--gt-theme, #ff9700);
}
.zg-newsletter-input button {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gt-theme, #ff9700);
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.zg-newsletter-input button:hover {
  background: #e08600;
}
.zg-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zg-footer-contact p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zg-footer-contact p i {
  color: var(--gt-theme, #ff9700);
  width: 16px;
}
.zg-footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 0;
}
.zg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zg-footer-bottom-inner p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
}
.zg-footer-bottom-inner a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}
.zg-footer-bottom-inner a:hover {
  color: var(--gt-theme, #ff9700);
}

/* ---------- Scroll Top ---------- */
.zg-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gt-theme, #ff9700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.zg-scroll-top.show {
  opacity: 0.9;
  visibility: visible;
}
.zg-scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ---------- 404 Page ---------- */
.zg-404-section {
  padding: 120px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #050505;
}
.zg-404-content {
  max-width: 600px;
  margin: 0 auto;
}
.zg-404-icon {
  font-size: 80px;
  color: var(--gt-theme, #ff9700);
  margin-bottom: 20px;
}
.zg-404-title {
  font-family: "Barlow", sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.zg-404-subtitle {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.zg-404-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ---------- Pagination ---------- */
.zg-pagination {
  text-align: center;
  margin-top: 40px;
}
.zg-pagination ul,
.zg-pagination .pagination {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.zg-pagination ul li a,
.zg-pagination ul li span,
.zg-pagination .pagination a,
.zg-pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  background: #111;
  border: 1px solid #222;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zg-pagination ul li.active a,
.zg-pagination ul li a:hover,
.zg-pagination .pagination a:hover,
.zg-pagination .pagination span.current {
  background: var(--gt-theme, #ff9700);
  border-color: var(--gt-theme, #ff9700);
  color: #fff;
}

/* ---------- Single Post (single.php) ---------- */
.zg-single-section {
  padding: 80px 0;
  background: #0a0a0a;
}
.zg-single-post {
  background: #111;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #222;
}
.zg-single-header {
  margin-bottom: 30px;
}
.zg-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.zg-single-meta span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
}
.zg-single-meta span i {
  color: var(--gt-theme, #ff9700);
  margin-right: 5px;
}
.zg-single-meta span a {
  color: #888;
  text-decoration: none;
}
.zg-single-meta span a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-single-title {
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.zg-single-thumb {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.zg-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.zg-single-content {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}
.zg-single-content h1, .zg-single-content h2, .zg-single-content h3,
.zg-single-content h4, .zg-single-content h5, .zg-single-content h6 {
  font-family: "Barlow", sans-serif;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 15px;
}
.zg-single-content p {
  margin-bottom: 18px;
}
.zg-single-content a {
  color: var(--gt-theme, #ff9700);
}
.zg-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.zg-single-content ul, .zg-single-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.zg-single-content blockquote {
  border-left: 3px solid var(--gt-theme, #ff9700);
  padding: 15px 20px;
  margin: 20px 0;
  background: #0a0a0a;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #aaa;
}
.zg-single-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zg-single-tags a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #888;
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zg-single-tags a:hover {
  border-color: var(--gt-theme, #ff9700);
  color: var(--gt-theme, #ff9700);
}

/* ---------- Sidebar ---------- */
.zg-sidebar {
  padding-left: 30px;
}
.zg-sidebar-widget {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}
.zg-sidebar-title {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.zg-sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gt-theme, #ff9700);
}
.zg-search-form {
  display: flex;
  gap: 0;
}
.zg-search-form input {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  background: #0a0a0a;
  border: 1px solid #222;
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 10px 14px;
  outline: none;
}
.zg-search-form input:focus {
  border-color: var(--gt-theme, #ff9700);
}
.zg-search-form button {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gt-theme, #ff9700);
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 10px 16px;
  cursor: pointer;
}
.zg-search-form button:hover {
  background: #e08600;
}
.zg-sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zg-sidebar-categories li {
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
}
.zg-sidebar-categories li:last-child {
  border-bottom: none;
}
.zg-sidebar-categories li a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}
.zg-sidebar-categories li a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-sidebar-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zg-sidebar-posts li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
}
.zg-sidebar-posts li:last-child {
  border-bottom: none;
}
.zg-sidebar-posts li img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.zg-sidebar-posts li div {
  display: flex;
  flex-direction: column;
}
.zg-sidebar-posts li div a {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.zg-sidebar-posts li div a:hover {
  color: var(--gt-theme, #ff9700);
}
.zg-sidebar-posts li div span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* ---------- Product Single (pro-single.php) ---------- */
.zg-pro-single-section {
  padding: 80px 0;
  background: #0a0a0a;
}
.zg-pro-gallery {
  margin-bottom: 30px;
}
.zg-pro-main-img {
  border-radius: 8px;
  overflow: hidden;
}
.zg-pro-main-img img {
  width: 100%;
  height: auto;
  display: block;
}
.zg-pro-details {
  padding-left: 20px;
}
.zg-pro-title {
  font-family: "Barlow", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.zg-pro-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.zg-pro-cats a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gt-theme, #ff9700);
  background: rgba(255, 151, 0, 0.1);
  padding: 5px 14px;
  border-radius: 4px;
  text-decoration: none;
}
.zg-pro-description {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
}
.zg-pro-cta {
  display: flex;
  gap: 15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .zg-about-section,
  .zg-products-section,
  .zg-standard-section,
  .zg-news-section,
  .zg-list-section,
  .zg-showcase-section,
  .zg-video-section,
  .zg-contact-section,
  .zg-stats-section,
  .zg-faq-section {
    padding: 60px 0;
  }
  .zg-section-title {
    font-size: 30px;
  }
  .zg-about-title {
    font-size: 28px;
  }
  .zg-about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .zg-about-image-wrapper {
    padding-right: 0;
  }
  .zg-about-floating-card {
    bottom: -20px;
    right: 10px;
    padding: 15px 20px;
  }
  .zg-about-features {
    grid-template-columns: 1fr;
  }
  .zg-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zg-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zg-contact-wrapper {
    padding: 30px;
  }
  .zg-contact-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .zg-single-post {
    padding: 25px;
  }
  .zg-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  .zg-pro-details {
    padding-left: 0;
  }
  .zg-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .zg-footer-main {
    padding: 50px 0 20px;
  }
}

@media (max-width: 767px) {
  .zg-showcase-grid {
    grid-template-columns: 1fr;
  }
  .zg-404-title {
    font-size: 80px;
  }
  .zg-about-floating-card {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .zg-stats-grid {
    grid-template-columns: 1fr;
  }
  .zg-section-title {
    font-size: 24px;
  }
  .zg-contact-wrapper {
    padding: 20px;
  }
  .zg-contact-form-box {
    padding: 20px;
  }
}
