.grouped-cards{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.grouped-card{
    background: linear-gradient(135deg, #1e293b, #334155);
    padding:20px;
    border-radius:6px;
    color:#fff;
    cursor:pointer;
    transition:.2s;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    font-family: "League Spartan", Sans-serif;
}

.grouped-card:hover{
    transform:translateY(-2px);
    color:#fff;
}

.grouped-card.active{
    background: linear-gradient(135deg, #FB923C, #fbbf24);
}

.gc-main{
    display:flex;
    justify-content: center;
    align-items:center;
    text-align:center;
    gap:6px;
}

.gc-title{
    font-size:18px;
}

.gc-price{
    font-weight:700;
}

.gc-per-day{
    font-size:13px;
    opacity:.7;
    margin-top:4px;
}

.gc-qty-row{
    display:none;
    width:100%;
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.18);
    justify-content:space-between;
    align-items:center;
}

.grouped-card.active .gc-qty-row{
    display:flex;
}

.gc-qty{
    display:flex;
    align-items:center;
    gap:14px;
}

.gc-minus,
.gc-plus{
    width:44px;
    height:44px;
    border-radius:12px;
    border:none;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.2s;
}

.gc-minus:hover,
.gc-plus:hover{
    background:rgba(255,255,255,.22);
}

.gc-count{
    min-width:22px;
    text-align:center;
    font-weight:600;
    font-size:16px;
}

.gc-total{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:4px;
    font-size:12px;
    opacity:.9;
}

.gc-total strong{
    font-size:22px;
    opacity:1;
}

.gc-add-to-cart{
    font-family: "League Spartan", Sans-serif;
    margin-top:18px;
    width:100%;
    border-radius:6px;
    border:none;
    padding:18px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    background:#FB923C;
    color:#fff;
}

.gc-add-to-cart:hover{
    background:#FDBA74;
    color: #fff;
    box-shadow:0 6px 18px rgba(253,186,116,.35);
}

.gc-add-to-cart:disabled{
    opacity:.35;
    cursor:not-allowed;
    transform:none;
}

.product-type-simple .grouped-cards-wrapper {
    display: none;
}
.product-type-grouped .default-add-to-cart {
    display:none;
}
.woocommerce div.product p.price {
    font-size: 22px;
    font-weight: 700;
}


.grouped-products-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
}

.grouped-product-card{
    display:flex;
    align-items:center;
    padding:12px;
    background:#F1F5F9;
    border-radius:6px;
    text-decoration:none;
    color:#1c2430;
    position:relative;
    transition:.2s ease;
}

.grouped-product-card:hover{
    background:#e9edf2;
    transform:translateY(-2px);
}

.grouped-product-card .flag{
    flex-shrink:0;
    margin-right:14px;
}

.grouped-product-card .flag img{
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:6px;
}

.grouped-product-card .content{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.grouped-product-card .title{
    font-weight:600;
    font-size:15px;
    line-height:1.3;
}

.grouped-product-card .price{
    font-size:14px;
    color:#6b7280;
}

.grouped-product-card .arrow{
    margin-left:auto;
    display:flex;
    align-items:center;
}

.grouped-product-card .arrow svg{
    width:16px;
    height:16px;
    transition:.2s;
}

.grouped-product-card:hover .arrow svg{
    transform:translateX(3px);
}

@media (max-width: 1024px) {
    .grouped-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .grouped-products-grid {
        grid-template-columns: 1fr;
        gap:15px;
    }
}

