/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.shop-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.category-filter {
    text-align: center;
    margin: 20px 0;
}

.category-filter button {
    padding: 10px 20px;
    margin: 5px;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.category-filter button:hover {
    background-color: #444;
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pro-con {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-con:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.pro-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.pro-info h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.pro-info p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: #ff6f61;
}

.pro-info-right a {
    color: #ff6f61;
    font-size: 1.5em;
    text-decoration: none;
}

.pro-info-right a:hover {
    color: #333;
}

.pro-info-right span {
    color: #ff6f61;
    font-size: 1.2em;
    font-weight: bold;
}
