/**
 * Step 2 Specific Styles - Grass Product Selection
 * Main styles are in awtgr-public.css
 */

/* Grass Product Cards */
.awtgr-grass-products {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.awtgr-product-card {
    min-width: 200px;
    width: 49%;
    max-width: 100%;
    transition: all 0.2s ease;
    padding: 20px;
    background-color: #fff;
    color: #59595c;
    border-radius: 4px;
    margin: 0;
}

.awtgr-product-card.disabled {
    opacity: 1;
}

.awtgr-product-card.disabled .awtgr-product-price {
    display: none !important;
}

/* Hide price elements when product is disabled or price on request */
.awtgr-product-card.disabled .price,
.awtgr-product-card.disabled .price-sub,
.awtgr-product-card.price-on-request .price,
.awtgr-product-card.price-on-request .price-sub {
    display: none !important;
}

.awtgr-product-card h5 {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 24px;
    line-height: 24px;
    color: #6ab52e;
    font-weight: 600;
}

.awtgr-product-description {
    min-height: 120px;
    padding-bottom: 20px;
}

.awtgr-btn-select-grass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.awtgr-product-card.selected .awtgr-btn-select-grass {
    background: #53982B;
    color: #fff;
    border-color: #53982B;
}

/* Delivery Warning */
.awtgr-delivery-warning {
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.awtgr-warning-icon {
    font-size: 20px;
    line-height: 1;
}

.awtgr-delivery-warning p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.awtgr-btn-select-grass {
    width: 100%;
    padding: 8px 12px;
    margin-top: 10px;
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.awtgr-step-2 .awtgr-session-summary {
    display: none;
}

@media(max-width: 768px) {
    .awtgr-product-card {
        width: 100%;
        display: block;
        position: relative;
		margin-bottom: 20px;
    }

    .awtgr-grass-products {
        display: block;
        position: relative;
    }
}