* {
    margin: 0;
    padding: 0;
   	box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
   
}
body, html {
    height: 100%;
    overflow-y: auto;
}

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover; 
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.whatsapp-float i {
    margin-right: 8px;
    font-size: 22px;
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}



.promo-banner {
    border-radius: 50px;
    width: 100%;  
    background-color:  rgba(0, 0, 0, 0.685); 
    margin-top:10px;
    position: relative;
    overflow: hidden;  
    height: 40px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 

}

.promo-text {
    display: inline-block;
    white-space: nowrap;  
    animation: moveBanner 10s linear infinite; 
    font-size: 18px; 
    color: white;
    padding: 10px 20px;  
}


@keyframes moveBanner {
    0% {
        transform: translateX(100%); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

@media (max-width: 600px) {
    .promo-text {
        font-size: 14px;  
    }

    .promo-banner {
        height: 35px;  
    }
}

@media (max-width: 768px) {
    .background-video {
        width: 100vw; 
        height: 100vh; 
    }
}

.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
    text-align: center;
}

.logo {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    margin-top: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(2, 2, 2, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    box-shadow: 0 0 20px rgba(211, 211, 211, 1), 0 0 30px rgba(211, 211, 211, 0.8);
    transform: scale(1.05);
}

.username {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.social-icons a {
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a.viber { color: #7A3F98; }
.social-icons a.telegram { color: #0088cc; }
.social-icons a.instagram { color: #E4405F; }
.social-icons a.twitter { color: #1DA1F2; }
.social-icons a.whatsapp { color: #25D366; }
.social-icons a.tiktok {color: #69C9D0; 
}

.divider {
    width: 80%;
    height: 1px;
    background-color: white;
    margin: 20px 0;
    opacity: 0.5;
}

.beacons-btn, .try-btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.beacons-btn {
    background-color: white;
    color: black;
}
.try-btn {
    display: inline-block;
    padding: 10px 22px;
    margin: 25px 0;
    background: linear-gradient(90deg, #ff7b00, #ff3d00);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 
        0 0 10px rgba(255, 123, 0, 0.7),
        0 0 20px rgba(255, 61, 0, 0.4),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    z-index: 1;
}

.try-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.try-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 15px rgba(255, 123, 0, 0.9),
        0 0 30px rgba(255, 61, 0, 0.6),
        inset 0 0 8px rgba(255, 255, 255, 0.5);
}

.try-btn:hover::before {
    left: 100%;
}

.try-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 0 5px rgba(255, 123, 0, 0.7),
        inset 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Анимация на текста */
.try-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.try-btn:hover span {
    transform: translateX(5px);
}

/* Ефект на частици при hover */
@keyframes particles {
    0% { transform: translateX(-100%) skewX(25deg); }
    100% { transform: translateX(100%) skewX(25deg); }
}

.try-btn:hover::before {
    animation: particles 1.5s linear infinite;
}

.payment-methods {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}
.payment-methods img {
    width: 50px;
    height: auto;
}

.trustpilot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
}

.trustpilot-logo {
    max-width: 150px;
    height: auto;
}

.trustpilot2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
}

.trustpilot2-logo {
    max-width: 250px;
    height: auto;
}



.modal-dialog {
    display: flex;
    justify-content: center; 
    align-items: center; 
    max-width: 80%; 
    margin: auto;
}

.modal-body {
    padding: 0; 
    text-align: center; 
    background-color: #f9f9f9;
}

#productImage {
    max-width: 100%; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}



.free-delivery-message {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    text-align: center;
}
.free-delivery-message span {
    color: #111111;
}

.professional-note {
    margin-top: 10px;
    font-size: 14px;
    color: #ececec;
    font-style: italic;
    text-align: center;
}

.footer {
    color: #ececec;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.5;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.modal-dialog {
    max-width: 600px; 
    margin: 30px auto; 
}

.modal-content {
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
}

.modal-header {
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}


.modal-body {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
}

.modal-footer {
    text-align: right;
    padding: 10px 20px;
}


.modal-footer .btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background-color: #5a6268;
}

.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform 0.3s ease-out;
}


.modal.show .modal-dialog {
    transform: translate(0, 0);
}

a.read-more {
    color: yellowgreen; 
    text-decoration: none; 
}

.trust-banner {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.7),
        0 0 15px rgba(255, 255, 255, 0.4);
    padding: 12px 25px;
    margin: 15px 0;
    position: relative;
    display: inline-block;
    background: transparent; /* Пълна прозрачност */
    backdrop-filter: none; /* Без blur ефект */
    border: none; /* Без граница */
    animation: text-glow 2.5s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 25px rgba(255, 255, 255, 0.2);
    }
}


.trust-banner::before {
    display: none;
}

