/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
Description: A child theme for Hello Elementor.
Author: whm
*/

/* === Container === */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 10px;
}

/* === Shared Button Styles === */
.button-container .button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 12px; /* Rounded corners like in the image */
    padding: 8px 16px; /* Consistent padding */
    width: 100%;
    max-width: 240px; /* Match the hotline button size */
    gap: 10px; /* Space between icon and text */
}

/* === Button Text === */
.button-container .button-text {
    font-size: 14px;
}

/* === Icons === */
.button-container .button i {
    font-size: 18px;
    margin: 0;
}

/* Inner row for Visit + WhatsApp */
.button-row {
    display: flex;
    flex-direction: row; /* Stack buttons vertically like in the image */
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 240px; /* Keep consistent with other buttons */
}

/* Visit Outlets Button */
.button-container .button-call {
    background: #4A90E2; /* Solid blue to match the image */
	    font-size: 14px;
    border-radius: 12px;
    width: 100%;
	min-width: 48px;
    max-width: 240px;
    justify-content: center;
}

/* WhatsApp Button */
.button-container .button-whatsapp {
    background: #25D366; /* Solid green to match the image */
	    font-size: 14px;
    border-radius: 12px;
    width: 100%;
	min-width: 48px;
    max-width: 240px;
    justify-content:center;
}
/* === Circle Buttons (Visit / WhatsApp) === */
.button-container .button-circle {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    overflow: visible;
}
/* === Visit Button === */
.button-container .button-visit {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 12px;
    width: 100%;
    max-width: 120px;
	min-width: 120px;	
    justify-content:center;
	
    gap: 10px;
	background: linear-gradient(135deg, #0073B4, #0053C8);
	color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Keep shadow for consistency */
}
/* === Hotline Button === */
.button-container .button-hotline {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 12px;
    width: 100%;
    max-width: 120px;
	min-width: 120px;	
    justify-content:center;
	
    gap: 10px;
	background: linear-gradient(135deg, #00B473, #00C853);
	color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Keep shadow for consistency */
}

/* Hotline Icon */
.button-container .button-hotline i {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}
.small-label{
	font-size: 8px;
}
/* Label hidden by default */
.button-container .button-circle .button-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 58px;
    transform: translateY(-50%);
    background: #333;
    color: white;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

/* Show label on hover */
.button-container .button-circle:hover .button-label {
    display: block;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}