
.products-page {
    padding: 2rem 0;
}

.page-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    margin-bottom: 0;
}

.search-filter-section .card {
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-filter-section .sticky-top {
    top: 1rem;
    z-index: 100;
}

.search-filter-section .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.search-filter-section .filter-form {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.offcanvas {
    max-width: 300px;
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
}

.stock-status {
    position: absolute;
    top: 10px;
    right: 10px;
}
.product-type .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

.product-price {
    border-top: 1px solid #e9ecef;
    padding-top: 0.75rem;
}

.price-label {
    font-size: 1rem;
    color: #6c757d;
}

.price-value {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
}

.admin-actions {
    display: flex;
    gap: 0.25rem;
}

.no-results {
    padding: 4rem 2rem;
}

.no-results-icon {
    opacity: 0.5;
}

.no-results-title {
    color: #495057;
    margin-bottom: 1rem;
}

.no-results-text {
    max-width: 500px;
    margin: 0 auto;
}
