/* Cookie Toggle Button */
.cookie-toggle {
    position: fixed;
    bottom: 70px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: #1a3a4a;
    border: 2px solid #d4af37;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.cookie-toggle:hover {
    transform: scale(1.1);
    background: #d4af37;
}
.cookie-toggle svg {
    width: 16px;
    height: 16px;
    fill: #d4af37;
    transition: fill 0.3s ease;
}
.cookie-toggle:hover svg {
    fill: #1a3a4a;
}
.cookie-toggle.hidden {
    display: none;
}

/* Cookie Panel */
.cookie-panel {
    position: fixed;
    bottom: 115px;
    right: 10px;
    width: 320px;
    max-height: 400px;
    background: #1a3a4a;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 10px;
    z-index: 99999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}
.cookie-panel.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Panel Header */
.cookie-panel-header {
    background: rgba(212,175,55,0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-panel-header h4 {
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cookie-panel-close {
    background: none;
    border: none;
    color: #f8f6f3;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.cookie-panel-close:hover {
    opacity: 1;
}

/* Panel Content */
.cookie-panel-content {
    padding: 20px;
    max-height: 250px;
    overflow-y: auto;
}
.cookie-panel-content p {
    color: #f8f6f3;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 15px 0;
}
.cookie-panel-content ul {
    color: rgba(248,246,243,0.8);
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    padding-left: 20px;
}
.cookie-panel-content li {
    margin-bottom: 5px;
}
.cookie-policy-link {
    display: inline-block;
    color: #d4af37;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    transition: opacity 0.3s;
}
.cookie-policy-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Panel Buttons */
.cookie-panel-buttons {
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    display: flex;
    gap: 10px;
}
.cookie-btn {
    flex: 1;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 3px;
}
.cookie-btn.accept {
    background: #d4af37;
    color: #1a3a4a;
}
.cookie-btn.accept:hover {
    background: #f4d03f;
}
.cookie-btn.decline {
    background: transparent;
    color: #f8f6f3;
    border: 1px solid rgba(248,246,243,0.3);
}
.cookie-btn.decline:hover {
    border-color: #f8f6f3;
}

@media (max-width: 480px) {
    .cookie-panel {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 150px;
    }
    .cookie-toggle {
        bottom: 100px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    .cookie-toggle svg {
        width: 18px;
        height: 18px;
    }
}
