.cosmic-navbar__dropdown-link.active.disabled {
  color: gray;          /* visually indicate it's disabled */
  cursor: default;      /* default cursor to show it’s not clickable */
  pointer-events: none; /* disable click */
  font-weight: 600;     /* highlight the current page link */
  text-decoration: none;
}
.cosmic-navbar__dropdown-link.active.disabled:hover {
  background-color: transparent; /* prevent hover effect */
}

body {
    box-sizing: border-box;
}

.gallery-hero-8472 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container-9384 {
    max-width: 2200px;
    margin: 0 auto;
}

.hero-title-2847 {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 80px; /* Add this line */
    margin-bottom: 16px; /* 1rem is roughly 16px */
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


.hero-subtitle-5629 {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid-7391 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.print-card-1847 {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.print-card-1847:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cards-grid-7391:hover .print-card-1847:not(:hover) {
    opacity: 0.6;
    transform: scale(0.98);
}

.card-image-3952 {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    position: relative;
    overflow: hidden;
}

.card-image-3952::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.print-card-1847:hover .card-image-3952::before {
    transform: translateX(100%);
}

.size-label-6284 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.card-title-9573 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.card-dimensions-4826 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-section-8194 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.price-option-7352 {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}



.price-label-5847 {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-value-2639 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.upload-button-4729 {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upload-button-4729:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.modal-overlay-8361 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content-5928 {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay-8361.active {
    display: flex;
}

.modal-overlay-8361.active .modal-content-5928 {
    transform: scale(1);
}

.close-button-7194 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-button-7194:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-image-3847 {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #999;
}

.modal-title-6283 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-pricing-9472 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-price-option-5839 {
    text-align: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}



/* Mobile Portrait */
@media (max-width: 480px) {
    .gallery-hero-8472 {
        padding: 1rem 0.5rem;
    }
    .cosmic-navbar__dropdown-icon.active.disabled {
    color: gray;          /* visually indicate it's disabled */
    cursor: default;      /* default cursor to show it’s not clickable */
    pointer-events: none; /* disable click */
    font-weight: 600;     /* highlight the current page link */
    text-decoration: none;
    }
    .cosmic-navbar__dropdown-icon.active.disabled:hover {
      background-color: transparent; /* prevent hover effect */
    }
    .hero-title-2847 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle-5629 {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .cards-grid-7391 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .print-card-1847 {
        padding: 1rem;
    }
    
    .card-image-3952 {
        height: 150px;
        font-size: 2.5rem;
    }
    
    .card-title-9573 {
        font-size: 1.1rem;
    }
    
    .pricing-section-8194 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-option-7352 {
        padding: 0.5rem;
    }
    
    .upload-button-4729 {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .modal-overlay-8361 {
        padding: 0.5rem;
    }
    
    .modal-content-5928 {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-image-3847 {
        height: 180px;
        font-size: 3rem;
    }
    
    .modal-title-6283 {
        font-size: 1.2rem;
    }
    
    .modal-pricing-9472 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .modal-price-option-5839 {
        padding: 0.75rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .gallery-hero-8472 {
        padding: 1.5rem 1rem;
    }
    
    .hero-title-2847 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-5629 {
        font-size: 1.1rem;
    }
    
    .cards-grid-7391 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .print-card-1847 {
        padding: 1.25rem;
    }
    
    .card-image-3952 {
        height: 160px;
    }
    
    .pricing-section-8194 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .upload-button-4729 {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .modal-content-5928 {
        max-width: 90%;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .modal-pricing-9472 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .cards-grid-7391 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title-2847 {
        font-size: 2.5rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .gallery-hero-8472 {
        padding: 1rem;
    }
    
    .hero-title-2847 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle-5629 {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cards-grid-7391 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .print-card-1847 {
        padding: 0.75rem;
    }
    
    .card-image-3952 {
        height: 120px;
        font-size: 2rem;
    }
    
    .card-title-9573 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .card-dimensions-4826 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .size-label-6284 {
        padding: 0.25rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-content-5928 {
        max-height: 95vh;
        overflow-y: auto;
        padding: 1rem;
    }
    
    .modal-image-3847 {
        height: 150px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .modal-title-6283 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .hero-title-2847 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-5629 {
        font-size: 0.8rem;
    }
    
    .print-card-1847 {
        padding: 0.75rem;
    }
    
    .card-image-3952 {
        height: 120px;
        font-size: 2rem;
    }
    
    .upload-button-4729 {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .modal-content-5928 {
        padding: 1rem;
    }
}
    

  