/* TopDeal Cookie Consent - stilovi */

.tdcc-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
    font-size: 14px;
    line-height: 1.5;
}

.tdcc-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tdcc-text {
    flex: 1 1 500px;
}

.tdcc-text p {
    margin: 6px 0 0 0;
    color: #ccc;
}

.tdcc-text a {
    color: #ff8c00;
    text-decoration: underline;
}

.tdcc-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.tdcc-btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tdcc-btn-accept {
    background: #ff8c00;
    color: #fff;
}

.tdcc-btn-accept:hover {
    background: #e67d00;
}

.tdcc-btn-reject {
    background: #444;
    color: #fff;
}

.tdcc-btn-reject:hover {
    background: #555;
}

.tdcc-btn-settings {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
}

.tdcc-btn-settings:hover {
    border-color: #999;
}

/* Modal za podešavanja */

.tdcc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tdcc-modal-inner {
    background: #fff;
    color: #222;
    max-width: 520px;
    width: 100%;
    border-radius: 10px;
    padding: 28px;
    max-height: 90vh;
    overflow-y: auto;
}

.tdcc-modal-inner h3 {
    margin-top: 0;
}

.tdcc-category {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.tdcc-category label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.tdcc-category p {
    margin: 6px 0 0 26px;
    color: #666;
    font-size: 13px;
}

.tdcc-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .tdcc-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .tdcc-buttons {
        width: 100%;
    }
    .tdcc-btn {
        flex: 1;
    }
}
