/*

.eshop-layout {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 100vh;
}

.eshop-sidebar {
    width: 200px;
    padding: 0;
    margin-top: 120px;
    background-color: #f4f4f4;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all 0.3s ease;
}


.eshop-sidebar a {
    display: block;
    padding: 10px;
    margin: 5px 0;
    background: #ddd;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s;
}

.eshop-sidebar a:hover {
    background: #bbb;
}

.eshop-sidebar .active {
    background: #007BFF;
    color: white;
    font-weight: bold;
}

*/




.eshop-content {
    padding: 20px;
    flex: 1;
    flex-grow: 1;
    margin-left: 20px;
    transition: margin-left 0.3s ease;
}

.eshop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.eshop-product-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eshop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.eshop-product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.eshop-product-card h3 {
    margin: 15px 0 10px;
    font-size: 1.3em;
    color: #333;
}

.eshop-product-card p {
    font-size: 0.95em;
    color: #666;
}

.eshop-product-link {
    text-decoration: none; 
    color: inherit; 
}







/*
.eshop-product-buttons a {
    display: inline-block;
    margin: 5px 10px 0 0;
    padding: 8px 12px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.eshop-product-buttons a:hover {
    opacity: 0.9;
}

.eshop-product-buttons .contact {
    background: #28a745;
}
*/






@media (max-width: 768px) {
    .eshop-content {
        margin-left: 0;
    }
    
    .eshop-product-buttons a {
        display: block;
        margin: 5px 0;
        width: fit-content;
    }
}
