/* GRID & LAYOUT */
.products-left {
    padding-right: 20px;
}

.product {
    margin-bottom: 30px;
}

.product-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 15px;
    transition: 0.3s;
}

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

.product-image-box img {
    width: 100%;
    height: auto;
}

/* PRODUCT CONTENT */
.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-features {
    padding-left: 18px;
    margin-bottom: 15px;
}

.product-features li {
    font-size: 14px;
    color: #333;
}

/* SIDEBAR */
.sidebar-right {
    margin-top: 20px;
}

.product-sidebar-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 5px;
}

.product-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-sidebar-list li {
    margin-bottom: 10px;
}

.product-sidebar-list li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.product-sidebar-list li a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .products-left {
        padding-right: 0;
    }
    .sidebar-right {
        margin-top: 25px;
    }
}
