/* Shop Page Styles */
.shop-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.shop-title {
    color: white;
    font-family: 'LogoFont';
    font-size: 8vw;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.shop-subtitle {
    color: rgb(150, 150, 150);
    font-family: 'EvaFont';
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.shop-container {
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.merch-card {
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.merch-card:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.merch-image {
    text-align: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.placeholder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cd-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.vinyl-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.shirt-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.merch-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.merch-title {
    color: white;
    font-family: 'KatsuFont';
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.merch-description {
    color: rgb(180, 180, 180);
    font-family: 'EvaFont';
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.merch-price {
    color: white;
    font-family: 'KatsuFont';
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.notify-button {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'KatsuFont';
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.notify-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.notify-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Notify Modal Styles */
.notify-modal {
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.notify-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-modal .modal-title {
    color: white;
    font-family: 'KatsuFont';
    font-weight: bold;
}

.notify-modal .btn-close {
    filter: invert(1);
}

.notify-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'EvaFont';
}

.notify-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    color: white;
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.notify-submit-btn {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'KatsuFont';
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.notify-submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-title {
        font-size: 12vw;
    }
    
    .shop-subtitle {
        font-size: 1.2rem;
    }
    
    .merch-card {
        padding: 1rem;
    }
    
    .placeholder-image {
        width: 100px;
        height: 100px;
    }
    
    .merch-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .shop-container {
        padding: 1rem 0.5rem;
    }
    
    .merch-card {
        padding: 0.75rem;
    }
    
    .placeholder-image {
        width: 80px;
        height: 80px;
    }
    
    .merch-title {
        font-size: 1.1rem;
    }
    
    .merch-description {
        font-size: 0.9rem;
    }
    
    .merch-price {
        font-size: 1.1rem;
    }
    
    .buy-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
