/* Webshop Styles */

/* Filter sidebar */
.sidebar-filter {
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .sidebar-filter {
        margin-bottom: 15px;
    }
}

/* Publication cards */
.publication-card {
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.publication-image {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Filter styles */
.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.filter-section .form-check {
    margin-bottom: 0.5rem;
}

/* Hierarchical filters (for instrumentation) */
.filter-tree ul {
    list-style: none;
    padding-left: 1rem;
}

.filter-tree > ul {
    padding-left: 0;
}

/* Price range slider */
.price-slider {
    margin: 10px 0 25px 0;
}

/* Search results */
.search-result-count {
    margin-bottom: 1rem;
    color: #6c757d;
}

/* Sort dropdown */
.sort-dropdown {
    min-width: 200px;
}

/* Cart styles */
.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

/* Checkout form */
.checkout-section {
    margin-bottom: 2rem;
}

/* Publication detail */
.publication-detail-image {
    max-height: 400px;
    object-fit: contain;
}

.publication-metadata {
    margin-bottom: 1.5rem;
}

.publication-metadata dt {
    font-weight: 600;
}

/* Related publications */
.related-publications {
    margin-top: 3rem;
}

/* Order history */
.order-card {
    margin-bottom: 1.5rem;
}

.order-status {
    font-weight: 600;
}

.status-pending {
    color: #ffc107;
}

.status-processing {
    color: #17a2b8;
}

.status-shipped {
    color: #6f42c1;
}

.status-delivered, .status-completed {
    color: #28a745;
}

.status-cancelled, .status-refunded {
    color: #dc3545;
}
