/* ============================================
   JEDNODUCHÉ COOKIES POPUP - CSS
   Pro integraci do koucinkserikou.cz
   ============================================ */

:root {
    --cookie-primary: #8B7355;
    --cookie-primary-dark: #6B5745;
    --cookie-text-dark: #2c2c2c;
    --cookie-text-light: #666;
    --cookie-white: #ffffff;
}

/* Cookies Overlay */
.cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookies-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cookies Popup */
.cookies-popup {
    position: fixed;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    background: var(--cookie-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 32px;
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookies-popup.show {
    bottom: 30px;
}

.cookies-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-icon {
    font-size: 2rem;
}

.cookies-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: var(--cookie-text-dark);
    font-weight: 600;
    margin: 0;
}

.cookies-text {
    color: var(--cookie-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookies-text a {
    color: var(--cookie-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookies-text a:hover {
    color: var(--cookie-primary-dark);
    text-decoration: underline;
}

/* Buttons */
.cookies-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: var(--cookie-primary);
    color: var(--cookie-white);
}

.btn-accept:hover {
    background: var(--cookie-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.4);
}

.btn-reject {
    background: transparent;
    color: var(--cookie-primary);
    border: 2px solid var(--cookie-primary);
}

.btn-reject:hover {
    background: var(--cookie-primary);
    color: var(--cookie-white);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
    .cookies-popup {
        width: 95%;
        padding: 24px;
    }

    .cookies-title {
        font-size: 1.2rem;
    }

    .cookies-text {
        font-size: 0.9rem;
    }

    .cookies-buttons {
        flex-direction: column;
    }
}
