/* Hero Video Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Ensure hero-pin maintains proper height */
.hero-pin {
    position: relative;
    z-index: 0;
    height: calc(100vh - 10px);
    height: calc(100svh - 10px);
    overflow: hidden;
    background: #000;
}

/* Review Popup Styling */
.review-popup {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 35;
    max-width: 320px;
    width: calc(100% - 40px);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.review-popup-content {
    background: #FFFFFF;
    border: 2px solid #E88B00;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.review-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #8C7B73;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.review-popup-close:hover {
    background: #F6F1EA;
    color: #22140D;
}

.review-popup-stars {
    color: #E88B00;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-popup-text {
    color: #22140D;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

.review-popup-author {
    color: #8C7B73;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

/* Highlighted New Launch Button */
.pill-link.new-launch-highlight {
    background: linear-gradient(135deg, #E88B00, #D9251B) !important;
    color: #FFFFFF !important;
    border: 2px solid #E88B00 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(232, 139, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.pill-link.new-launch-highlight:hover {
    background: linear-gradient(135deg, #D9251B, #E88B00) !important;
    box-shadow: 0 6px 20px rgba(232, 139, 0, 0.6);
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(232, 139, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(232, 139, 0, 0.7);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-popup {
        left: 15px;
        bottom: 80px;
        max-width: 280px;
    }
    
    .review-popup-content {
        padding: 15px;
    }
    
    .review-popup-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .review-popup {
        left: 10px;
        right: 10px;
        bottom: 70px;
        width: auto;
        max-width: none;
    }
}
