/* Product Cards */
.product-category-card {
     border: 2px solid black;
    border: none; 
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-card {
    border: 2px solid black; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-specs {
    background: #F8F9FA;
    padding: 15px;
    border-radius: 5px;
}
/* Product Detail */
.product-gallery .main-image {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
}
.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}
.thumbnail:hover {
    opacity: 0.8;
}
.list-check {
    list-style: none;
    padding-left: 0;
}
.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.list-check li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* */
