/* General Widget Styles */
.scl-widget {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
}
.scl-widget-title {
    color: #0b3b2e;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #C9A24F;
    padding-bottom: 10px;
}

/* SCL Button Styles */
.scl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.scl-btn-call {
    background-color: #0b3b2e;
    color: #fff !important;
    margin-bottom: 10px;
    border: 1px solid #C9A24F;
    animation: luxuryPulseGreen 2.5s infinite ease-in-out !important;
}
.scl-btn-call:hover {
    background-color: #082d23;
}
.scl-btn-order {
    background: linear-gradient(135deg, #eabc4c 0%, #c48c2b 100%);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 15px rgba(178,133,45, 0.4);
    animation: luxuryPulseGold 2.5s infinite ease-in-out !important;
    animation-delay: 0.8s !important;
}
.scl-btn-order:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(223, 162, 54, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
}

/* Luxury Shine Animation */
.scl-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: dtgShine 3s infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes dtgShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
@keyframes luxuryPulseGold {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(178,133,45,0.4); }
    50% { transform: scale(1.03); box-shadow: 0 8px 22px rgba(178,133,45,0.6), 0 0 10px rgba(178,133,45,0.3); }
}
@keyframes luxuryPulseGreen {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(11, 59, 46,0.4); }
    50% { transform: scale(1.03); box-shadow: 0 8px 22px rgba(11, 59, 46,0.6), 0 0 10px rgba(11, 59, 46,0.3); }
}
.scl-btn-submit {
    background-color: #0b3b2e;
    color: #fff;
    margin-top: 10px;
}

/* CTA Widget */
.scl-cta-box {
    text-align: center;
    background: #f9f5ec;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2d3b3;
}
.scl-cta-title {
    color: #0b3b2e;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}
.scl-cta-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.scl-trust-badge {
    margin-top: 15px;
    font-size: 13px;
    color: #28a745;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Lunar Calendar Widget */
.scl-calendar-block {
    text-align: center;
    border: 1px solid #C9A24F;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.scl-cal-header {
    background-color: #0b3b2e;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.scl-cal-body {
    background-color: #fff;
    padding: 20px;
}
.scl-cal-solar-day {
    font-size: 48px;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1;
}
.scl-cal-solar-dow {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}
.scl-cal-footer {
    background-color: #f9f5ec;
    padding: 10px;
    border-top: 1px dashed #C9A24F;
}
.scl-cal-lunar-date {
    font-size: 16px;
    color: #0b3b2e;
}
.scl-cal-can-chi {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}
.scl-upcoming-events {
    background: #fff8e1;
    padding: 10px;
    border-left: 3px solid #ffa000;
    font-size: 14px;
    border-radius: 4px;
}

/* FAQ Widget */
.scl-faq-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.scl-faq-item:last-child {
    border-bottom: none;
}
.scl-faq-q {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0b3b2e;
}
.scl-faq-a {
    padding-top: 10px;
    font-size: 14px;
    color: #555;
}
.scl-faq-toggle {
    font-size: 18px;
    color: #C9A24F;
}

/* Newsletter Widget */
.scl-newsletter-form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.scl-success { color: #28a745; }
.scl-error { color: #dc3545; }
