
/* Master Box */
#rpg_logistics_master {
    background: #fff;
    padding: 0 !important;
}

/* Tarjetas Estilo Shopify */
.logistics-toggle-group {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
    margin-bottom: 20px;
}
.logistics-card {
    border: 2px solid #e5e5e5; 
    border-radius: 12px; 
    padding: 16px; 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    background: #fff;
}
.logistics-card:hover { 
    border-color: #1a1a1a; 
}
.logistics-card input[type="radio"] { 
    accent-color: #1a1a1a; 
    width: 20px; 
    height: 20px; 
    margin: 0; 
}
.logistics-card img { 
    max-height: 40px; 
    max-width: 60px; 
    object-fit: contain; 
}
.card-info { 
    display: flex; 
    flex-direction: column; 
}
.card-title { 
    font-weight: 600; 
    color: #1a1a1a; 
    font-size: 0.95rem; 
}
.card-desc { 
    font-size: 0.8rem; 
    color: #717171; 
}
.badge-free { 
    color: #27ae60; 
    font-weight: 700; 
    background: #e8f5e9; 
    padding: 2px 8px; 
    border-radius: 12px; 
    display: inline-block; 
    width: fit-content; 
    margin-top: 4px; 
    font-size: 0.75rem; 
}

/* Tarjeta Activa (Se pinta verde si es Shalom, o negra si es Olva) */
.logistics-card.active-card {
    border-color: #1a1a1a;
    background: #fafaf9;
}
#card-shalom.active-card {
    border-color: #27ae60;
    background: #f8fcf9;
}

/* Bloqueamos el box nativo de envíos de V27 para no confundir */
body.peru-logistics-active .ac-section-shipping {
    display: none !important;
}

@media(max-width: 600px) { 
    .logistics-toggle-group { grid-template-columns: 1fr; } 
}