/**
 * GCP Combo Bundle Styles
 * Estilização do componente "Este pacote inclui" na página do produto
 * 
 * Paleta de cores GiftCardPRO:
 * - Fundo: #12161B
 * - Superfície: #181E25
 * - Superfície 2: #1F2630
 * - Bordas: #2C3643
 * - Texto principal: #F2F5F9
 * - Texto secundário: #B3BDCC
 * - Texto muted: #8592A6
 * - Primária: #F59E03
 * - Hover primária: #FFB020
 * - Secundária: #EC7106
 * - Highlight: #FEC600
 */

.gcp-combo-bundle {
    background: linear-gradient(135deg, #181E25 0%, #1F2630 100%);
    border: 1px solid #2C3643;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    color: #F2F5F9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Promo Banner */
.gcp-combo-bundle__promo-banner {
    background: linear-gradient(90deg, #F59E03 0%, #EC7106 100%);
    color: #12161B;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;
}

.gcp-combo-bundle__promo-icon {
    font-size: 16px;
}

.gcp-combo-bundle__promo-text {
    flex: 1;
}

/* Header */
.gcp-combo-bundle__header {
    margin-bottom: 20px;
}

.gcp-combo-bundle__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #F2F5F9;
}

/* Items Container */
.gcp-combo-bundle__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Separator com sinal de + */
.gcp-combo-bundle__separator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
}

.gcp-combo-bundle__plus {
    width: 28px;
    height: 28px;
    background: #F59E03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #12161B;
    margin: -8px 0;
}

/* Card Item */
.gcp-combo-bundle__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(44, 54, 67, 0.4);
    border: 1px solid #2C3643;
    border-radius: 8px;
    padding: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gcp-combo-bundle__item:hover {
    background: rgba(44, 54, 67, 0.6);
    border-color: #F59E03;
}

/* Image - Quadrado */
.gcp-combo-bundle__item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #12161B;
}

.gcp-combo-bundle__item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gcp-combo-bundle__item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Info */
.gcp-combo-bundle__item-info {
    flex: 1;
    min-width: 0;
}

.gcp-combo-bundle__item-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #F59E03;
}

.gcp-combo-bundle__item-name a {
    color: inherit;
    text-decoration: none;
}

.gcp-combo-bundle__item-name a:hover {
    color: #FFB020;
    text-decoration: underline;
}

/* Badges (PS4, PS5, etc) */
.gcp-combo-bundle__item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.gcp-combo-bundle__badge {
    background: #2C3643;
    color: #B3BDCC;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* Price */
.gcp-combo-bundle__item-price {
    font-size: 18px;
    font-weight: 700;
    color: #FEC600;
}

/* Footer - Total */
.gcp-combo-bundle__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #2C3643;
}

.gcp-combo-bundle__total-label {
    font-size: 14px;
    font-weight: 600;
    color: #F2F5F9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcp-combo-bundle__total-price {
    font-size: 22px;
    font-weight: 700;
    color: #FEC600;
}

/* Note */
.gcp-combo-bundle__note {
    margin-top: 12px;
    font-size: 13px;
    color: #8592A6;
}

.gcp-combo-bundle__note p {
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .gcp-combo-bundle {
        padding: 16px;
    }
    
    .gcp-combo-bundle__title {
        font-size: 16px;
    }
    
    /* Manter layout horizontal no mobile */
    .gcp-combo-bundle__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 10px;
    }
    
    /* Imagem pequena quadrada */
    .gcp-combo-bundle__item-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .gcp-combo-bundle__item-info {
        flex: 1;
        min-width: 0;
    }
    
    .gcp-combo-bundle__item-name {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .gcp-combo-bundle__item-badges {
        margin-bottom: 4px;
    }
    
    .gcp-combo-bundle__badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .gcp-combo-bundle__item-price {
        font-size: 15px;
    }
    
    .gcp-combo-bundle__separator {
        padding-left: 30px;
    }
    
    .gcp-combo-bundle__plus {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    
    .gcp-combo-bundle__footer {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
    
    .gcp-combo-bundle__total-label {
        font-size: 12px;
    }
    
    .gcp-combo-bundle__total-price {
        font-size: 18px;
    }
    
    .gcp-combo-bundle__note {
        font-size: 11px;
    }
}
