/* Opening Hours Button Styles */

.ohb-floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--ohb-bg-color, #d4b896);
    color: var(--ohb-text-color, #ffffff);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 280px;
}

.ohb-floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.ohb-icon {
    width: 40px;
    height: 40px;
    background-color: var(--ohb-icon-color, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.ohb-icon svg {
    width: 24px;
    height: 24px;
}

.ohb-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ohb-status {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.ohb-hours {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ohb-floating-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        max-width: 250px;
    }
    
    .ohb-icon {
        width: 36px;
        height: 36px;
    }
    
    .ohb-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ohb-status {
        font-size: 13px;
    }
    
    .ohb-hours {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ohb-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        gap: 10px;
    }
}
