.container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 5%;
    margin-bottom: 5%;
}
.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.card h2 {
    margin-bottom: 10px;
    font-size: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.card ul {
    list-style-type: none;
    margin-top: 10px;
}
.card ul li {
    margin-bottom: 2px;
    font-size: 18px;
}
@media (max-width: 1024px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.cat-container {
    width: 100%;
    max-width: 1500px;
    padding: 20px;
}
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 1500px;
}
.card h2 {
    text-align: center;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.grid-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 18px;
}
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.cat1-container {
    width: 100%;
    max-width: 1500px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.card {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}
h2 {
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.location-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 2%;
}
.shop-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.shop-address {
    font-size: 18px;
    color: #555;
}
@media (max-width: 1024px) {
    .cat1-container {
        padding: 15px;
    }
    h2 {
        font-size: 28px;
    }
    .shop-name {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
    .shop-name {
        font-size: 20px;
    }
    .shop-address {
        font-size: 16px;
    }
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.tab {
    padding: 10px 20px;
    cursor: pointer;
    /* background-color: #ddd; */
    border: none;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s;
}
.tab.active {
    background-color: #fff;
    border-bottom: 2px solid #007bff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.image-card {
    width: 30%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.image-card:hover {
    transform: translateY(-10px);
}
.info {
    padding: 10px;
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}
.info p {
    color: #555;
}
@media (max-width: 1024px) {
    .image-card {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .image-card {
        width: 100%;
    }
}
