/* VacSoftware Shop - Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.jumbotron a {
    color: white;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.navbar-brand {
    font-weight: bold;
}

/* Product grid */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Staff panel */
.backstage-nav {
    background: #2c3e50;
}

/* Debug info */
pre {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}
