/* Premium styling for TGIF Branch Hours shortcode */
.tgif-horarios {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.tgif-branch {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tgif-branch:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tgif-branch-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0 0 0.5rem;
}

.tgif-branch-address {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.tgif-branch-status {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #27ae60; /* green for open */
}
.tgif-branch-status.closed {
    color: #e74c3c; /* red for closed */
}

.tgif-branch-phone,
.tgif-branch-map {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.tgif-branch-phone a,
.tgif-branch-map a {
    color: #2980b9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.tgif-branch-phone a:hover,
.tgif-branch-map a:hover {
    border-color: #2980b9;
}

.tgif-hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.tgif-hours-table th,
.tgif-hours-table td {
    padding: 0.6rem 1rem;
    text-align: left;
}
.tgif-hours-table thead {
    background: rgba(44, 62, 80, 0.1);
    border-radius: 8px;
}
.tgif-hours-table tbody tr {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    transition: background 0.3s;
}
.tgif-hours-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .tgif-branch {
        padding: 1rem;
    }
    .tgif-branch-name {
        font-size: 1.3rem;
    }
    .tgif-hours-table th,
    .tgif-hours-table td {
        padding: 0.4rem 0.6rem;
    }
}
