/* === HARDWARE PAGE STYLES - Zu quantum.css hinzufügen === */

/* === HARDWARE FILTERS === */
.hardware-filters {
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.hardware-filters .filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* === QUANTUM HARDWARE PAGE === */
.quantum-hardware-page {
    min-height: 100vh;
    padding: 80px 40px;
    position: relative;
}

.hardware-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* === HARDWARE CARD === */
.hardware-card {
    position: relative;
    background: rgba(0, 10, 44, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.hardware-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pulse);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.2);
}

.hardware-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.hardware-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%) brightness(0.8);
}

.hardware-card:hover .hardware-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.hardware-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hardware-card:hover .hardware-overlay {
    opacity: 1;
}

.hardware-actions {
    display: flex;
    gap: 10px;
}

.hardware-view-btn,
.hardware-inquiry-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 10, 44, 0.9);
    border: 1px solid var(--neon-pulse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pulse);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hardware-view-btn:hover,
.hardware-inquiry-btn:hover {
    background: var(--neon-pulse);
    color: var(--deep-space);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.5);
}

/* === STATUS & RARITY BADGES === */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-available {
    background: rgba(0, 200, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 200, 0, 0.4);
}

.status-reserved {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.status-sold {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.status-on_display {
    background: rgba(0, 246, 255, 0.2);
    color: var(--neon-pulse);
    border: 1px solid rgba(0, 246, 255, 0.4);
}

.rarity-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--holographic-gradient);
    color: var(--deep-space);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: rarityPulse 3s infinite;
}

@keyframes rarityPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 246, 255, 0.5); 
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 246, 255, 0.8), 0 0 30px rgba(0, 26, 255, 0.4); 
    }
}

/* === HARDWARE CONTENT === */
.hardware-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hardware-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.hardware-category {
    color: var(--neon-pulse);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hardware-year {
    color: var(--nebula-silver);
    opacity: 0.7;
}

.hardware-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--chrome-white);
    font-weight: 600;
    line-height: 1.3;
}

.hardware-manufacturer,
.hardware-model {
    font-size: 0.9rem;
    color: var(--nebula-silver);
    margin-bottom: 8px;
}

.hardware-manufacturer strong,
.hardware-model strong {
    color: var(--neon-pulse);
}

.hardware-description {
    font-size: 0.95rem;
    color: var(--nebula-silver);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.hardware-condition {
    font-size: 0.9rem;
    color: var(--nebula-silver);
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 246, 255, 0.05);
    border-left: 3px solid var(--neon-pulse);
    border-radius: 4px;
}

.hardware-condition strong {
    color: var(--neon-pulse);
}

/* === HARDWARE FOOTER === */
.hardware-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
    padding-top: 20px;
}

.hardware-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-label {
    color: var(--nebula-silver);
}

.price-value {
    color: var(--neon-pulse);
    font-weight: 700;
    font-size: 1.2rem;
}

.hardware-actions-bottom {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.hardware-details-btn,
.hardware-contact-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
}

.hardware-contact-btn {
    background: var(--holographic-gradient);
    border-color: transparent;
    color: var(--deep-space);
}

.hardware-contact-btn::before {
    background: var(--quantum-blue);
}

/* === NO HARDWARE STATE === */
.no-hardware {
    text-align: center;
    padding: 100px 20px;
    color: var(--nebula-silver);
}

.no-hardware-icon {
    font-size: 4rem;
    color: var(--neon-pulse);
    opacity: 0.5;
    margin-bottom: 30px;
}

.no-hardware h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--chrome-white);
}

.no-hardware p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === HARDWARE PAGINATION === */
.hardware-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
    flex-wrap: wrap;
}

/* === HARDWARE STATS === */
.hardware-stats {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.3);
    margin: 80px 0;
}

/* === HARDWARE CTA === */
.hardware-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--deep-space), rgba(0, 26, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.hardware-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 246, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* === HARDWARE MODAL === */
.hardware-modal,
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 10, 44, 0.95);
    backdrop-filter: blur(15px);
    opacity: 1;
    visibility: visible;
}

.hardware-modal .modal-content,
.inquiry-modal .modal-content {
    background: rgba(0, 10, 44, 0.9);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.hardware-modal .modal-header,
.inquiry-modal .modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}

.hardware-modal .modal-header h2,
.inquiry-modal .modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hardware-modal .modal-body,
.inquiry-modal .modal-body {
    padding: 30px;
}

.hardware-hero-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.hardware-section {
    margin-bottom: 25px;
}

.hardware-section h3 {
    font-size: 1.3rem;
    color: var(--neon-pulse);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hardware-info {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--nebula-silver);
}

.hardware-info strong {
    color: var(--neon-pulse);
}

.hardware-price-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 246, 255, 0.05);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 6px;
    text-align: center;
}

.hardware-price-info strong {
    color: var(--neon-pulse);
}

.hardware-actions {
    text-align: center;
    margin-top: 25px;
}

/* === FORM STYLES === */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--neon-pulse);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 6px;
    color: var(--chrome-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--nebula-silver);
    opacity: 0.6;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hardware-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hardware-filters {
        position: static;
        padding: 40px 20px;
    }
    
    .quantum-hardware-page {
        padding: 60px 20px;
    }
    
    .hardware-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hardware-card {
        min-height: 450px;
    }
    
    .hardware-image-wrapper {
        height: 200px;
    }
    
    .hardware-actions-bottom {
        flex-direction: column;
    }
    
    .hardware-modal .modal-content,
    .inquiry-modal .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .hardware-modal .modal-header,
    .inquiry-modal .modal-header,
    .hardware-modal .modal-body,
    .inquiry-modal .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hardware-filters .filter-tabs {
        flex-direction: column;
    }
    
    .hardware-filters .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hardware-card {
        min-height: 400px;
    }
}