@charset "UTF-8";

.yc-wrapper {
    border: 1px solid #e2e8f0;
    border-left: 4px solid #51a368;
    border-radius: 8px;
    padding: 24px 20px;
    background: #ffffff;
    font-family: inherit;
    margin: 30px 0;
    color: #1a202c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden; /* Fixes corner radius bleed */
}

.yc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.yc-title-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yc-brand {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #000;
    text-transform: uppercase;
}

.yc-dot { color: #a0aec0; font-size: 14px; }
.yc-subtitle { color: #718096; font-size: 14px; font-weight: 500; }

.yc-badge {
    background: #fde047;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 1px 3px rgba(253, 224, 71, 0.4);
}

.yc-badge-price {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: #1a202c;
}

.yc-badge-txt {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 0.5px;
}

.yc-prices {
    margin-bottom: 24px;
}

.yc-price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #4a5568;
}

.yc-pval { font-weight: 600; color: #1a202c; }

.yc-discount { color: #51a368; }
.yc-discount .yc-pval { color: #51a368; }

.yc-final {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5e0;
    align-items: center;
}

.yc-final .yc-plabel { font-size: 16px; font-weight: 800; color: #1a202c; }
.yc-final .yc-pval { font-size: 26px; font-weight: 900; color: #1a202c; }

.yc-timer-box {
    background: #fefcbf;
    border: 1px solid #f6e05e;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 24px;
}

.yc-timer-box.yc-expired {
    background: #f7fafc;
    border-color: #e2e8f0;
}

.yc-timer-box.yc-expired .yc-timer-title {
    color: #718096;
    margin-bottom: 0;
}

.yc-timer-title {
    font-size: 13.5px;
    color: #975a16;
    margin-bottom: 12px;
    font-weight: 500;
}

.yc-countdown { display: flex; gap: 12px; }

.yc-timeblock {
    background: #ffffff;
    border: 1px solid #faf089;
    border-radius: 6px;
    padding: 8px 14px;
    min-width: 52px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.yc-num { display: block; font-size: 17px; font-weight: 800; color: #1a202c; margin-bottom: 2px;}
.yc-lbl { display: block; font-size: 11px; color: #718096; font-weight: 500; }

.yc-steps {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.yc-step {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px 12px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.yc-circle {
    width: 34px; height: 34px;
    background: #51a368;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px;
    margin-bottom: 16px;
}

.yc-step-txt {
    font-size: 13.5px;
    line-height: 1.5;
    color: #4a5568;
}

.yc-link-arrow {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.yc-link-arrow:hover { text-decoration: underline; }

/* NEW FOOTER STYLING (v1.5.0) */
.yc-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 22px;
    font-size: 14px;
    line-height: 1.6;
}

.yc-footer-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #1a202c;
    margin-bottom: 6px;
}

.yc-shield-icon {
    flex-shrink: 0;
}

.yc-footer-body {
    padding-left: 32px; /* Aligns content under the text, skipping icon */
}

.yc-footer-body p {
    margin: 0 0 14px 0;
    color: #4a5568;
}

.yc-footer-contacts {
    display: flex;
    gap: 22px;
    align-items: center;
}

.yc-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.yc-contact:hover {
    opacity: 0.8;
}

@media(max-width: 600px) {
    .yc-steps { flex-direction: column; gap: 12px; }
    .yc-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .yc-footer-body { padding-left: 0; margin-top: 12px; }
    .yc-footer-contacts { flex-direction: column; gap: 14px; align-items: flex-start; }
}
