/* Products Page Styles */
.dz-shop-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 30px;
}

.dz-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.dz-shop-card .dz-media {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.dz-shop-card .dz-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dz-shop-card:hover .dz-media img {
    transform: scale(1.05);
}

.dz-shop-card .shop-meta {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.dz-shop-card:hover .shop-meta {
    opacity: 1;
    transform: translateX(0);
}

.dz-shop-card .shop-meta .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dz-shop-card .dz-content {
    padding: 20px;
}

.dz-shop-card .dz-content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.dz-shop-card .dz-content .title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dz-shop-card .dz-content .title a:hover {
    color: var(--color-primary);
}

.dz-shop-card .dz-content .text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dz-shop-card .product-tag {
    margin-bottom: 15px;
}

.dz-shop-card .product-tag .badge {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
}

.dz-shop-card .dz-footer {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.dz-shop-card .dz-footer .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Sidebar Styles */
.side-bar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0;
    overflow: hidden;
}

.side-bar .widget {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.side-bar .widget:last-child {
    border-bottom: none;
}

.side-bar .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.side-bar .list-group-item {
    border: none;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
}

.side-bar .list-group-item:last-child {
    border-bottom: none;
}

.side-bar .list-group-item.active {
    background: var(--rgba-primary-1);
    border-radius: 5px;
    padding: 12px 15px;
}

.side-bar .list-group-item a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.side-bar .list-group-item.active a {
    color: var(--color-primary);
    font-weight: 500;
}

.side-bar .list-group-item a:hover {
    color: var(--color-primary);
}

.side-bar .list-group-item a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Contact Info */
.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 18px;
}

.contact-info .contact-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-info .contact-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Pagination */
.pagination .page-link {
    color: #666;
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pagination .page-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* No Products */
.dz-error-media {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .side-bar {
        margin-bottom: 40px;
    }
    
    .dz-shop-card .dz-media {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .dz-shop-card .dz-footer {
        flex-direction: column;
    }
    
    .dz-shop-card .dz-footer .btn {
        margin-bottom: 5px;
    }
    
    .slider-content h1 {
        font-size: 2.5rem;
    }
    
    .slider-content p {
        font-size: 1rem;
    }
    
    .slider-buttons {
        flex-direction: column;
        align-items: center;
    }
}

