/* Button Hotline Component Styles */
.button-hotline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffba00;
    padding: 8px;
    border-radius: 0;
    text-decoration: none;
    position: relative;
    min-width: 165px;
    height: 28px;
    transition: all 0.3s ease;
    margin-top: 24px;
    margin-bottom: 43px;
}

.button-hotline:hover {
    background-color: #e6a800;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-hotline:active {
    transform: translateY(0);
}

.hotline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hotline-icon svg {
    width: 100%;
    height: 100%;
}

.hotline-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.hotline-label {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    line-height: normal;
}

.hotline-number {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
    white-space: nowrap;
    line-height: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .button-hotline {
        min-width: 140px;
        height: 26px;
        padding: 5px 10px;
    }
    
    .hotline-label {
        font-size: 13px;
    }
    
    .hotline-number {
        font-size: 11px;
    }
}

/* Header hotline icon button (circle outline) */
.btn-hotline.btn-hotline2 {
    margin-right: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #ffba00;
    border-radius: 50%;
    background: transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn-hotline.btn-hotline2 svg {
    width: 25px;
    height: 23px;
}

.btn-hotline.btn-hotline2 svg path {
    stroke: #ffba00;
    transition: stroke 0.35s ease;
}

.btn-hotline.btn-hotline2:hover {
    background-color: #ffba00;
    border-color: #ffba00;
    box-shadow: 0 6px 18px rgba(255, 186, 0, 0.25);
}

.btn-hotline.btn-hotline2:hover svg path {
    stroke: #111;
}

@media (max-width: 768px) {
    .btn-hotline.btn-hotline2 {
        width: 42px;
        height: 42px;
    }
}
