/* Basic Form Styling */
.bacsgs-form {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
    max-width: 500px;
}
.bacsgs-form .form-row {
    margin-bottom: 15px;
}
.bacsgs-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.bacsgs-form .input-text {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}
.bacsgs-form .button {
    padding: 10px 20px;
    background-color: #2ea44f;
    color: white;
    border: none;
    cursor: pointer;
}
.bacsgs-form .button:disabled {
    background-color: #94d3a2;
    cursor: not-allowed;
}
.bacsgs-message {
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
}
.bacsgs-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.bacsgs-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.product-item {
    border: 1px solid #eee;
    text-align: center;
}
.product-item img {
    max-width: 100%;
    height: auto;
}
.product-item h2 {
    font-size: 1.2em;
    margin: 10px 0;
}
.product-item .price {
    color: #c00;
    font-weight: bold;
}

/* Product Detail */
.product-detail {
    display: flex;
    gap: 30px;
}
.product-gallery {
    flex: 1;
}
.product-summary {
    flex: 1;
}

/* Shortcode Product */
.bacsgs-shortcode-product {
    border: 1px solid #f0f0f0;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}
.bacsgs-shortcode-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.bacsgs-shortcode-product .product-title {
    font-size: 1.1em;
    margin: 0 0 10px;
}

