/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
}




/*CTA*/

.product-cta.primary h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-cta.primary {
  background: linear-gradient(135deg, #0f2a33, #163f4d);
  border-radius: 14px;
  padding: 36px 24px;
  margin: 40px 0;
  text-align: center;
  color: #ffffff;
}

/* 标题 */
.product-cta.primary h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

/* 副文案 */
.product-cta.primary .cta-sub {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 26px;
  color: #ffffff;
}

/* WhatsApp 按钮 */
.product-cta.primary .cta-btn.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

/* Hover 效果（PC） */
.product-cta.primary .cta-btn.whatsapp:hover {
  background-color: #1ebc5a;
  transform: translateY(-2px);
}

/* =========================
   Mobile Responsive
   ========================= */

@media (max-width: 768px) {
  .product-cta.primary {
    padding: 28px 18px;
  }

  .product-cta.primary h3 {
    font-size: 22px;
  }

  .product-cta.primary .cta-sub {
    font-size: 14px;
  }

  .product-cta.primary .cta-btn.whatsapp {
    width: 100%;
    font-size: 15px;
    padding: 14px 0;
  }
}



