/* REAL Premium Compact Horizontal Cookie Popup */

.cookieConsentContainer{
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9999;

    width: 470px;
    max-width: calc(100% - 16px);

    padding: 14px 16px;
    display: none;

    background: rgba(18,18,18,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

/* Make Proper Row */
.cookieConsentContainer{
    display: flex;
    align-items: center;
    gap: 14px;
}

/* LEFT ICON CENTER */
.cookieTitle{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.cookieTitle img{
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    object-fit: contain;

    padding: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04));
}

/* MIDDLE CONTENT */
.cookieDesc{
    flex: 1;
    margin-top: 0 !important;
}

.cookieDesc > a{
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.2;
    text-decoration: none;
}

.cookieDesc p{
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,0.72);
}

.cookieDesc p a{
    color: #fff;
    font-weight: 600;
}

/* RIGHT BUTTON CENTER */
.cookieButton{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.cookieButton a{
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    background: #fff;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

.cookieButton a:hover{
    transform: translateY(-2px);
    background: #f2f2f2;
}

/* Mobile */
@media(max-width:768px){

.cookieConsentContainer{
    width: calc(100% - 12px);
    right: 6px;
    left: 6px;
    bottom: 6px;
    padding: 12px;
    gap: 10px;
}

.cookieTitle img{
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
}

.cookieDesc > a{
    font-size: 13px;
}

.cookieDesc p{
    font-size: 11px;
}

.cookieButton a{
    padding: 8px 12px;
    font-size: 11px;
}

}