/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 100px; /* Add margin to the bottom */
    min-height: 800px; /* Add a minimum height */
}

/* Header */
.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.shop-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Item Grid */
.item-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.item-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    transition: transform 0.2s;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card-content {
    padding: 20px;
}

.item-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.item-card-price {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 15px;
}

.item-card-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.item-card-button:hover {
    background-color: #0056b3;
}

.return-to-home-btn {
    position: relative;
    z-index: 1000;
    margin-top: 20px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .item-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .item-card {
        width: 100%;
    }
}