/* ===============================
   WATCH FACE SECTION
================================ */

.watch-face-section {
    width: 100%;
    background-color: #f5f5f7;

    padding: 72px 24px;
}

.watch-face-content {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.watch-face-content h2 {
    margin: 0;

    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: #111;
}

.watch-face-content p {
    margin: 14px 0 0;

    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;

    color: #555;
}

.watch-face-image-wrapper {
    margin-top: 42px;

    width: 100%;
    max-width: 420px;
}

.watch-face-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.watch-face-buttons {
    margin-top: 36px;

    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.watch-face-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 22px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.watch-face-btn.primary {
    background-color: #0071e3;
    color: white;
}

.watch-face-btn.secondary {
    background-color: white;
    color: #0071e3;
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .watch-face-section {
        padding: 56px 22px;
    }

    .watch-face-content h2 {
        font-size: 42px;
    }

    .watch-face-content p {
        font-size: 20px;
    }

    .watch-face-image-wrapper {
        margin-top: 34px;
        max-width: 300px;
    }

    .watch-face-buttons {
        margin-top: 30px;
        gap: 12px;
    }

    .watch-face-btn {
        min-height: 42px;
        padding: 0 18px;

        font-size: 14px;
    }
}