@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --gray-1: #dedada;
    --text: rgba(0, 0, 0, .7);
    --pink: #e06575;
    --pink-hover: #f08a97;
}

/* TOP */
.wix-top {
    background: var(--gray-1);
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px 12px;
    display: flex;
    justify-content: flex-start;
}

.wix-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* PAGE */
body.wix-ref {
    background: #fff;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

.wix-ref-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

/* IMAGES */
.wix-ref-images {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wix-ref-images img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

/* BUTTON */
.wix-ref-actions {
    margin-top: 34px;
    text-align: center;
}

.wix-ref-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 34px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
}

.wix-ref-btn:hover {
    background: var(--pink-hover);
}

/* MOBILE */
@media (max-width: 600px) {
    .wix-logo img {
        width: 64px;
        height: 64px;
    }

    .wix-ref-wrap {
        padding: 30px 16px 60px;
    }
}