/* ===== Wrapper ===== */

.ecc-wrapper {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

/* ===== Card ===== */

.ecc-card {
    max-width: 720px;
    margin: auto;
    background: linear-gradient(145deg, #3a2621, #2a1b17);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(201,161,92,0.2);
    color: #f5e6c8;
    pointer-events: all;
    font-family: inherit;
}

/* ===== Text ===== */

.ecc-card h3 {
    margin-top: 0;
    color: #d8a75a;
    font-size: 20px;
}

.ecc-card p {
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* ===== Options ===== */

.ecc-options {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ecc-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ecc-option input {
    accent-color: #c9a15c;
    transform: scale(1.2);
}

/* ===== Buttons ===== */

.ecc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* základ tlačítek */
.ecc-btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

/* Zlaté CTA */
.ecc-btn-primary {
    background: linear-gradient(135deg, #d8a75a, #b8893e);
    color: #2b1b15;
    box-shadow: 0 4px 12px rgba(216,167,90,0.4);
}

.ecc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216,167,90,0.6);
}

/* Sekundární */
.ecc-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #f5e6c8;
}

/* Outline */
.ecc-btn-outline {
    background: transparent;
    border: 1px solid rgba(216,167,90,0.4);
    color: #d8a75a;
}

/* ===== Mobil ===== */

@media (max-width: 600px) {

    .ecc-card {
        padding: 18px;
    }

    .ecc-buttons {
        flex-direction: column;
    }

    .ecc-btn {
        width: 100%;
        text-align: center;
    }

}