
/* Modern Mercado Libre Style Box */
:root {
    --meli-green: #00a650;
    --meli-green-light: #e6f7ee;
    --meli-blue: #3483fa;
    --brand-primary: #0e509e; /* Brand Color */
    --brand-dark: #0a3d7a;    /* Brand Dark */
    --brand-bg: #f5f5f5;
}

.ths-meli-modern-box {
    margin: 20px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Modern Shadow */
    font-family: 'Poppins', sans-serif;
    color: #333;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ths-meli-modern-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Header Row */
.ths-header-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 15px;
}

.ths-icon-pulse {
    width: 45px;
    height: 45px;
    background: var(--meli-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--meli-green);
    font-size: 20px;
    position: relative;
}

.ths-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--meli-green);
    animation: pulse-green 2s infinite;
    opacity: 0;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ths-title-group {
    display: flex;
    flex-direction: column;
}

.ths-highlight {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ths-status-today {
    color: var(--meli-green);
}

.ths-status-tomorrow {
    color: var(--brand-primary); /* Using brand blue for tomorrow */
}

.ths-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
        margin-bottom: 5px;
}

/* Content Row */
.ths-content-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 60px; /* Align with text not icon */
    position: relative;
}

.ths-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.ths-benefit-item i {
    color: var(--meli-green);
    font-size: 16px;
}

.ths-benefit-item strong {
    color: var(--meli-green);
    font-weight: 700;
}

/* Timer Wrapper */
.ths-timer-wrapper {
    background: var(--brand-bg);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 0px;
    text-align: center;
    border-left: 4px solid var(--brand-primary);
}

.ths-timer-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 1px;
    font-weight: 600;
}

.ths-timer-display {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-dark);
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
}

/* Link */
.ths-more-info-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    transition: gap 0.2s ease;
}

.ths-more-info-link:hover {
    gap: 12px;
    color: var(--brand-dark);
}
