.wpshop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.wpshop-item {
    width: calc(25% - 12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    padding: 12px
}

.wpshop-item img {
    max-width: 100%;
    height: auto
}

.wpshop-price {
    font-weight: 700;
    color: #2a9d8f
}

.wpshop-product-single {
    display: flex;
    gap: 24px
}

.wpshop-product-image img { 
    max-width: 250px;
	height:auto;
}

.wpshop-product-image {
    flex: 1; 
}

.wpshop-product-details {
    flex: 1
}

#wpshop-order-btn {
    background: #2a9d8f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    margin: 16px 0
}

#wpshop-order-btn:hover {
    background: #238276
}

#wpshop-order-form-container {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 4px
}

#wpshop-order-form input,
#wpshop-order-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px
}

#wpshop-order-form button {
    background: #2a9d8f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 8px
}

#wpshop-order-form button:hover {
    background: #238276
}