/** Shopify CDN: Minification failed

Line 15:13 Expected ":"
Line 80:13 Expected ":"

**/
/* Afterpay Container Styles */
.m-afterpay-container {
  margin-top: 10px;
  margin-bottom: 15px;
}

/* Text Only Style */
.m-afterpay-installment {
  text-center;
}

.m-afterpay-installment p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.m-afterpay-installment .money {
  font-weight: 600;
  color: #000;
}

/* Card Style */
.m-afterpay-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.m-afterpay-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.m-afterpay-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.m-afterpay-icon {
  flex-shrink: 0;
}

.m-afterpay-icon svg {
  width: 24px;
  height: 24px;
  fill: #6CC04A;
}

.m-afterpay-text {
  flex-grow: 1;
}

.afterpay-installment-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin: 0 0 4px 0;
}

.afterpay-icon-text {
  font-size: 12px;
  color: #666;
  margin: 0 0 6px 0;
  font-style: italic;
}

/* Custom Image Style */
.m-afterpay-image-container {
  text-center;
}

.afterpay-image-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.afterpay-image-link:hover {
  transform: scale(1.02);
}

.afterpay-custom-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Common Link Style */
.afterpay-link {
  font-weight: 700;
  color: #6CC04A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.afterpay-link:hover {
  color: #4a9030;
  text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .m-afterpay-installment p,
  .afterpay-installment-text {
    font-size: 13px;
  }
  
  .afterpay-icon-text {
    font-size: 11px;
  }
  
  .m-afterpay-card {
    padding: 12px;
  }
  
  .m-afterpay-card-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* 加载动画效果 */
.m-afterpay-container {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* 主题样式兼容 */
.m-product-block-group--price {
  margin-bottom: 0;
}

/* 通用样式 */
.money {
  font-weight: 600;
  color: #000;
}