/* Grand Opening Modal Styles */

.pbmit-grand-opening-modal {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #3772ff 0%, #1e5fcf 100%);
    overflow: hidden;
}

.pbmit-grand-opening-body {
    padding: 50px 30px;
  position: relative;
}

.grand-opening-content {
    position: relative;
    z-index: 2;
}

.grand-opening-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.grand-opening-header {
    margin-bottom: 30px;
}

.grand-opening-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    animation: bounce 1s infinite;
}

.grand-opening-subtitle {
    font-size: 18px;
    color: #e0d4ff;
    margin: 0;
}

.grand-opening-message {
    margin-bottom: 30px;
}

.grand-opening-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}

.grand-opening-highlight {
    font-size: 16px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 20px;
}

.grand-opening-date-container {
    background: rgba(255, 255, 255, 0.2);
 padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.grand-opening-date {
  font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.grand-opening-details {
    margin-bottom: 30px;
}

.detail-item {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.detail-text {
    font-size: 14px;
    color: #e0d4ff;
    margin: 0;
}

/* Countdown Timer Styles */
.grand-opening-countdown {
    margin: 30px 0;
}

.countdown-label {
    font-size: 16px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
 flex-direction: column;
    align-items: center;
  background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 70px;
}

.countdown-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
}

.countdown-item .countdown-label {
    font-size: 12px;
    color: #ffffff;
  margin: 5px 0 0 0;
}

/* Call to Action */
.grand-opening-cta {
    margin-top: 30px;
}

.grand-opening-cta .pbmit-btn {
  background-color: #ffd700;
    color: #333;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.grand-opening-cta .pbmit-btn:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Confetti Animation */
@keyframes confetti-fall {
    to {
  transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
  transform: scale(1);
    }
    50% {
transform: scale(1.05);
    }
}

/* Close Button Styles */
.pbmit-grand-opening-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.pbmit-grand-opening-modal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Modal Backdrop */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .grand-opening-title {
        font-size: 32px;
    }
    
    .grand-opening-date {
  font-size: 28px;
    }
    
    .pbmit-grand-opening-body {
 padding: 30px 20px;
    }
    
    .countdown-timer {
      gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .countdown-value {
      font-size: 20px;
    }
}
