/* Загальні стилі та фон */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

/* Анімовані фігури на фоні */
.shape {
    position: fixed;
    border-radius: 50%;
    background: rgba(225, 36, 95, 0.08);
    animation: float 20s infinite ease-in-out;
    z-index: -1;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-duration: 22s;
}

.shape2 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 80%;
    animation-duration: 18s;
}

.shape3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 50%;
    animation-duration: 25s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Основний контейнер */
.glass-card {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s 0.5s forwards;
    color: #333;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section,
header,
footer {
    margin-bottom: 25px;
}

.info-block {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Заголовок та логотип */
.brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #e1245f;
    box-shadow: 0 0 15px rgba(225, 36, 95, 0.5);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-header h1 {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 700;
    color: #e1245f;
}

.brand-header .subtitle,
.brand-header .motto {
    font-size: clamp(1em, 3vw, 1.1em);
    color: #555;
    margin-top: 5px;
}

/* Соціальні іконки */
.social-icons a {
    color: #e1245f;
    font-size: 1.8em;
    margin: 0 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #f33674;
}

/* Блок TikTok */
.tiktok-info {
    text-align: left;
    background: linear-gradient(45deg, rgba(225, 36, 95, 0.08), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(225, 36, 95, 0.2);
}

.tiktok-info ol {
    list-style-position: inside;
    padding-left: 5px;
}

.tiktok-info .dots {
    color: #e1245f;
    font-weight: bold;
}

/* Кнопки */
.quick-buttons h2,
.payment-details h2,
.return-policy h2 {
    font-size: clamp(1.1em, 4vw, 1.2em);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e1245f;
}

.btn {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: clamp(1em, 3.5vw, 1.1em);
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn .fab {
    margin-right: 10px;
}

.btn-viber {
    background: linear-gradient(45deg, #7360F2, #9852F2);
}

.btn-viber-group {
    background: linear-gradient(45deg, #6c5ce7, #8e44ad);
}

.btn-tiktok {
    background: linear-gradient(140deg, #25f4ee, #000000 40%, #000000 60%, #fe2c55);
}

.btn-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

/* Реквізити */
.payment-details {
    text-align: left;
    background: linear-gradient(45deg, rgba(225, 36, 95, 0.08), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(225, 36, 95, 0.2);
}

.copyable {
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    word-break: break-all;
}

.copyable:hover {
    background-color: rgba(225, 36, 95, 0.1);
}

.copy-tip {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    color: #555;
}

/* Інша інформація */
.return-policy h2 {
    font-size: 1.5em;
    color: #e1245f;
}

.return-policy .important {
    margin-top: 15px;
    padding: 10px;
    background: rgba(225, 36, 95, 0.1);
    border-radius: 8px;
    color: #a11b44;
    border: 1px dashed rgba(225, 36, 95, 0.5);
}

/* Футер */
.final-footer {
    background: linear-gradient(90deg, #e1245f, #fa5a8d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: clamp(1.1em, 4vw, 1.2em);
}

/* Сповіщення */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 100px);
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

/* Адаптивність */
@media (max-width: 768px) {
    body {
        padding: 1.5rem 1rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }
    .glass-card {
        padding: 1rem;
        border-radius: 15px;
    }

    .brand-header h1 {
        font-size: 1.8em;
    }

    .social-icons a {
        font-size: 1.6em;
        margin: 0 10px;
    }

    .btn {
        padding: 12px;
    }

    .copyable {
        padding: 6px;
    }
}