/* Shop Section */
#shop {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

#shop h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#shop p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.shop-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.shop-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.shop-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.shop-item p {
    font-size: 1em;
    color: #666;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta:hover {
    background: #f2bc1c;
}
