/* =CTA Banner (Size Guide) */
.sizeguide-cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;    /* 当父容器是 flex 时，确保占满整行 */
  align-self: stretch !important;/* 当父容器是 flex 项时拉伸 */
  grid-column: 1 / -1 !important;/* 当父容器是 grid 时跨列 */


  border: 2px solid #f90;
  background-color: #fff8e1;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-family: inherit !important;
}
.sizeguide-cta-banner p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
}

.sizeguide-cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f90;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: inherit !important;
}

.sizeguide-cta-button:hover {
  background-color: #e07c00;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
