/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Sembunyikan marker-open hanya di layar kecil */
@media (max-width: 767.98px) {
    .marker-open {
        display: none !important;
    }
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    border: none;
    padding: 25px 30px;
    position: relative;
}

.modal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.closure-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.closure-notice p {
    margin: 0;
    color: #dc2626;
    font-weight: 500;
}

.hours-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.hours-title {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin: 8px 0;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.day-name {
    font-weight: 600;
    color: #374151;
}

.day-hours {
    color: #059669;
    font-weight: 500;
}

.day-closed {
    color: #dc2626;
    font-weight: 500;
}

.thank-you {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.thank-you::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.thank-you p {
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.modal-footer {
    padding: 20px 30px;
    border: none;
    background: #f8fafc;
}

.btn-elegant {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
    color: white;
}

.icon-clock {
    color: #c9a96e;
}

.icon-info {
    color: #3b82f6;
}

/* Responsive design */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
