.apart-cta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    margin-top: 16px;
}

/* Primär-Button */
.apart-btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2364E5;
    color: #fff;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 10px rgba(35, 100, 229, 0.25);
}

.buybox-inner .apart-cta-block {
    margin-bottom: 20px;
}

.apart-btn-primary:hover {
    background: #1a4fc4;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(35, 100, 229, 0.32);
    color: #fff;
    text-decoration: none;
}

.apart-btn-primary:active {
    transform: scale(0.98);
    box-shadow: none;
}

.apart-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    flex-shrink: 0;
}

.apart-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.apart-btn-main {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.apart-btn-sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.78;
    color: #fff;
}

/* Trennlinie */
.apart-divider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apart-divider-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.apart-divider-label {
    font-size: 11px;
    color: #999;
}

/* Telefon-Button */
.apart-btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #d0d0d0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.apart-btn-phone:hover {
    background: #EBF0FD;
    border-color: #2364E5;
    color: #1a4fc4;
    text-decoration: none;
    transform: translateY(-1px);
}

.apart-btn-phone:active {
    transform: scale(0.98);
}

.apart-phone-num {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-left: 2px;
}

/* Trust-Zeile */
.apart-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 2px;
    flex-wrap: wrap;
}

.apart-trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
}