.header .header__top {
    background-color: #f1f1f1;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding: 22px 0;
}

.navigation {
    background-color: #ebebeb;
}

/* Top Callback Bar */
.top-callback-bar {
    background-color: #9b844f;
    width: 100%;
}

.callback-container {
    display: flex;
    justify-content: flex-end;   /* Right align */
    align-items: center;
    gap: 20px;
    padding: 8px 15px;
}

.callback-btn {
    background-color: #ffffff;
    color: #9b844f;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.callback-btn:hover {
    background-color: #f5f5f5;
}

.callback-number {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.ps-breadcrumb .breadcrumb a {
    color: #000000;
    line-height: 20px;
}

.ps-block--store-2 .ps-block__author .ps-btn {
    background-color: #000f23;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    left: 30px;  /* Changed from right to left */
    background-color: #000f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.header--mobile {
    background-color: #f1f1f1;
    border-bottom: 0;
    left: 0;
    position: relative;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.header--mobile.header--sticky .navigation--mobile {
    background-color: #f1f1f1;
    -ms-box-shadow: 0 0 3px 0 rgba(0,0,0,.12);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .12);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}