Stomatologiczny blog
.custom-sticky-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #111111;
padding: 15px 0;
z-index: 999999;
display: flex;
justify-content: center;
}
.bar-content {
display: flex;
align-items: center;
justify-content: center;
width: 90%;
max-width: 1000px;
gap: 20px;
}
.decor-line {
flex: 1;
height: 1px;
background-color: rgba(255, 255, 255, 0.4);
}
.sticky-button {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 28px;
border-radius: 50px;
color: white !important;
text-decoration: none !important;
font-weight: bold;
font-family: Arial, sans-serif;
font-size: 14px;
white-space: nowrap;
transition: all 0.3s ease;
border: none;
cursor: pointer;
line-height: 1;
}
.sticky-button:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.sticky-button svg,
.sticky-button img {
display: block;
flex-shrink: 0;
}
/* Renkler */
.btn-orange { background-color: #d86833 !important; }
.btn-green { background-color: #82c95f !important; }
.btn-blue { background-color: #0b59e8 !important; }
/* WhatsApp ikonu daha dolgun görünüm */
.btn-green .wa-icon-wrap {
width: 24px;
height: 24px;
min-width: 24px;
min-height: 24px;
border-radius: 50%;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
}
.btn-green .wa-icon-wrap svg {
width: 14px !important;
height: 14px !important;
fill: #25d366 !important;
display: block;
}
/* Sosyal Medya Açılır Menü */
.social-dropdown {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
/* Buton ile menü arasındaki görünmez köprü */
.social-dropdown::after {
content: "";
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
height: 20px;
display: none;
}
.social-dropdown:hover::after {
display: block;
}
.dropdown-content {
position: absolute;
bottom: calc(100% + 10px);
background-color: rgba(34, 34, 34, 0.98);
border-radius: 15px;
padding: 12px;
display: flex;
flex-direction: column;
gap: 15px;
visibility: hidden;
opacity: 0;
transform: translateY(10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 10px 25px rgba(0,0,0,0.6);
border: 1px solid rgba(255,255,255,0.15);
z-index: 1000;
}
.social-dropdown:hover .dropdown-content {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
.social-icon {
text-decoration: none;
transition: transform 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.social-icon:hover {
transform: scale(1.2);
}
/* Mobil */
@media (max-width: 768px) {
.decor-line {
display: none;
}
.bar-content {
gap: 8px;
width: 95%;
}
.sticky-button {
padding: 10px 14px;
font-size: 11px;
gap: 5px;
}
.btn-green .wa-icon-wrap {
width: 24px;
height: 24px;
min-width: 24px;
min-height: 24px;
}
.btn-green .wa-icon-wrap svg {
width: 14px !important;
height: 14px !important;
}
.dropdown-content {
padding: 10px;
gap: 12px;
}
}
