/* ===== КНОПКА ПРОКРУТКИ ДО ФОРМИ ===== */
.sv-scroll-btn {
    background: linear-gradient(135deg, #25a65b 0%, #1e8c4c 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 140, 76, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.sv-scroll-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(30, 140, 76, 0.5);
}

/* ===== КНОПКА INSTAGRAM ===== */
.sv-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f09433 0%, #d62976 40%, #962fbf 80%);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite, fadeInUp 0.6s ease-out;
}
.sv-instagram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}
.sv-instagram-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    margin-left: 5px;
}

/* ===== АНІМАЦІЇ ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(210, 41, 118, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* ===== СТИЛІ ДЛЯ БЛОКУ .looks ===== */
.looks h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a2c3e;
    border-left: 4px solid #ff9800;
    padding-left: 16px;
}
.looks ul {
    margin: 0 0 30px 0;
    padding-left: 0;
    list-style: none;
}
.looks li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.6;
}
.looks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25a65b;
    font-weight: bold;
}
.looks p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.looks p:nth-child(3) { animation-delay: 0.1s; }
.looks p:nth-child(4) { animation-delay: 0.2s; }
.looks p:nth-child(5) { animation-delay: 0.3s; }
.looks p:nth-child(6) { animation-delay: 0.4s; }
.looks p:nth-child(7) { animation-delay: 0.5s; }
.looks p:nth-child(8) { animation-delay: 0.6s; }
.looks p:nth-child(9) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}