/* Additional styles for product detail page */
.product-listing .filter-buttons {
    margin-bottom: 3rem;
}

.product-listing .product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

/* Isotope specific styles */
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/* transitions */
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

/* Back to Products button styles */
.back-to-products-btn {
    border-color: #5f0404 !important;
    color: #5f0404 !important;
    transition: all 0.15s ease; /* Faster transition */
}

.back-to-products-btn:hover {
    background-color: #5f0404 !important;
    color: white !important;
    border-color: #5f0404 !important;
}
