
/* בר עוגיות עברי */
.hcb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    direction: rtl;
}

.hcb-banner.show {
    transform: translateY(0);
}

.hcb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hcb-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 300px;
}

.hcb-text a {
    color: #74b9ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hcb-text a:hover {
    color: #0984e3;
    text-decoration: underline;
}

.hcb-button {
    background: #00b894;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.hcb-button:hover {
    background: #00a085;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.4);
}

.hcb-button:active {
    transform: translateY(0);
}

.hcb-reset-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    z-index: 999998;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hcb-reset-btn:hover {
    opacity: 1;
}

/* רספונסיבי */
@media (max-width: 768px) {
    .hcb-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hcb-text {
        min-width: unset;
        font-size: 13px;
    }

    .hcb-button {
        width: 100%;
        max-width: 200px;
    }

    .hcb-banner {
        padding: 15px;
    }
}
