.ch-hybrid-card {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        overflow: hidden;
        width: 100%; /* Leve aumento para comportar as 3 colunas */
        margin: 20px auto;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Seção Superior reestruturada */
    .ch-card-main {
        display: flex;
        padding: 24px;
        gap: 20px;
        align-items: center; /* Centraliza verticalmente os elementos */
    }

    .ch-store-thumb {
        width: 120px;
        height: 120px;
        border-radius: 12px;
        object-fit: cover;
        flex-shrink: 0;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
    }

    /* Coluna do Meio (Nome e Endereço) */
    .ch-content-info {
        flex: 1;
    }

    /* Coluna da Direita (Contatos Diretos) */
    .ch-direct-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 20px;
        border-left: 1px solid #e0e0e0;
        min-width: 160px;
    }

    .ch-badge {
        display: inline-block;
        background: rgba(217, 48, 37, 0.1);
        color: #d93025;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 50px;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .ch-content-info h3 {
        margin: 0 0 4px 0;
        font-size: 17px;
        color: #050b20;
        font-weight: 700;
        line-height: 1.2;
    }

    .ch-address-text {
        font-size: 14px;
        color: #666666;
        line-height: 1.4;
        margin: 0;
    }

    .ch-contact-link {
        text-decoration: none;
        color: #050b20;
        font-size: 19px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.2s;
    }

    .ch-contact-link:hover {
        color: #d93025;
    }

    .ch-contact-link i {
        color: #d93025;
        width: 14px;
    }

    /* Botões de Ação */
    .ch-action-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 24px 20px 24px;
    }

    .ch-btn-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .ch-btn-whats { background: #25d366; color: #fff; }
    .ch-btn-phone { background: #050b20; color: #fff; }

    .ch-btn-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        color: #ffffff;
    }

    /* Accordion */
    .ch-map-trigger {
        border-top: 1px solid #e0e0e0;
        width: 100%;
        background: #fafafa;
        padding: 12px;
        text-align: center;
        cursor: pointer;
        color: #666666;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .ch-map-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .ch-map-content.active { max-height: 400px; }

    /* Ajustes Mobile */
    @media (max-width: 600px) {
        .ch-card-main { flex-direction: column; text-align: center; align-items: center; }
        .ch-direct-links { 
            border-left: none; 
            border-top: 1px solid #e0e0e0;
            padding: 15px 0 0 0;
            width: 100%;
            align-items: center;
        }
        .ch-store-thumb { width: 100%; height: 150px; }
        .ch-action-grid { grid-template-columns: 1fr; }
    }
	
	
    /* Ajuste no contêiner do accordion para permitir expansão real */
    .ch-map-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Transição mais suave */
        background: #fff;
        width: 100%;
    }

    .ch-map-content.active {
        max-height: 1000px; /* Valor alto para não cortar o conteúdo */
    }

    /* Contêiner interno do mapa */
    .ch-map-wrapper {
        padding: 15px;
        width: 100%;
        box-sizing: border-box; /* Garante que o padding não quebre a largura */
    }

    /* O Iframe responsivo */
    #ch-iframe-map {
        width: 100%;
        height: 400px; /* Altura mínima para desktop */
        border: 0;
        border-radius: 8px;
        display: block;
        background: #f0f0f0;
    }

    /* Ajuste para Mobile */
    @media (max-width: 600px) {
        #ch-iframe-map {
            height: 300px; /* Altura um pouco menor em celulares para facilitar o scroll */
        }
        .ch-map-wrapper {
            padding: 10px;
        }
    }