contact.css


.contact-page {
    color: #211634;
    background: #f7f9fc;
}

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.contact-hero {
    padding: 82px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgb(41 198 221 / 24%), transparent 34%),
        linear-gradient(135deg, #211338 0%, #102b64 58%, #0759c7 100%);
    color: #fff;
}

.contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: end;
    gap: 64px;
}

.contact-eyebrow {
    margin: 0 0 12px;
    color: #27d4df;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -.045em;
    line-height: 1.02;
}

.contact-hero__inner > div:first-child > p:last-child {
    max-width: 720px;
    margin: 0;
    color: #d8e6fb;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.contact-hero__facts {
    display: grid;
    gap: 12px;
}

.contact-hero__facts span {
    padding: 14px 16px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 12px;
    background: rgb(255 255 255 / 8%);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.contact-form-section {
    padding: 82px 0 100px;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 34px;
}

.contact-form-panel,
.contact-summary {
    border: 1px solid #e0e5ef;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgb(25 40 72 / 8%);
}

.contact-form-panel {
    padding: 42px;
}

.contact-form-panel__heading {
    margin-bottom: 30px;
}

.contact-form-panel__heading h2,
.contact-summary h2 {
    margin: 0;
    color: #2b1847;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -.035em;
    line-height: 1.12;
}

.contact-form-panel__heading > p:last-child,
.contact-summary p {
    color: #667085;
    line-height: 1.6;
}

.wholesale-inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field label,
.contact-consent {
    color: #302544;
    font-size: 13px;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    border: 1px solid #cfd6e2;
    border-radius: 10px;
    color: #211634;
    background: #fff;
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #0871d9;
    box-shadow: 0 0 0 3px rgb(8 113 217 / 13%);
    outline: none;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.contact-consent a {
    color: #0759c7;
}

.contact-submit,
.contact-whatsapp {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    background: #0759c7;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.contact-submit:hover,
.contact-whatsapp:hover {
    transform: translateY(-2px);
    background: #064ba8;
    color: #fff;
}

.contact-summary {
    position: sticky;
    top: 24px;
    padding: 34px;
}

.contact-summary h2 {
    font-size: 28px;
}

.contact-summary h3 {
    margin: 0 0 8px;
    color: #2b1847;
    font-size: 20px;
}

.contact-summary__divider {
    height: 1px;
    margin: 28px 0;
    background: #e2e7ef;
}

.contact-whatsapp {
    width: 100%;
    margin-top: 8px;
    background: #16883d;
    text-align: center;
}

.contact-whatsapp:hover {
    background: #117332;
}

.contact-notice {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 10px;
    line-height: 1.5;
}

.contact-notice--success {
    border: 1px solid #acd9bb;
    color: #176b32;
    background: #eefaf2;
}

.contact-notice--error {
    border: 1px solid #e4b4b4;
    color: #922b2b;
    background: #fff3f3;
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.retailer-inquiry-button,
.retailer-category-inquiry .button {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .contact-hero__inner,
    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-container {
        width: min(100% - 24px, 520px);
    }

    .contact-hero {
        padding: 58px 0;
    }

    .contact-hero__inner {
        gap: 34px;
    }

    .contact-hero__facts,
    .wholesale-inquiry-form {
        grid-template-columns: 1fr;
    }

    .contact-field--full {
        grid-column: auto;
    }

    .contact-form-section {
        padding: 48px 0 68px;
    }

    .contact-form-panel,
    .contact-summary {
        padding: 26px 20px;
        border-radius: 18px;
    }
}

.inquiry-history__heading,
.inquiry-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.inquiry-history__heading {
    margin-bottom: 24px;
}

.inquiry-history__heading h2,
.inquiry-list__item h3 {
    margin: 0;
}

.inquiry-list {
    display: grid;
    gap: 14px;
}

.inquiry-list__item {
    padding: 20px;
    border: 1px solid #e0e5ef;
    border-radius: 14px;
    background: #fff;
}

.inquiry-list__item p {
    margin: 7px 0 0;
    color: #667085;
}

.inquiry-list__item time {
    color: #667085;
    white-space: nowrap;
}

.inquiry-status {
    display: inline-block;
    margin-bottom: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #176b32;
    background: #eaf8ef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.inquiry-back {
    display: inline-block;
    margin-bottom: 20px;
}

.inquiry-message {
    max-width: 86%;
    margin: 16px 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f0f3f7;
}

.inquiry-message--admin {
    margin-left: auto;
    color: #fff;
    background: #0759c7;
}

.inquiry-message__meta {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    opacity: .75;
}

.inquiry-message p:last-child {
    margin-bottom: 0;
}

.inquiry-reply-form {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.inquiry-reply-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #cfd6e2;
    border-radius: 10px;
    font: inherit;
}

@media (max-width: 640px) {
    .inquiry-history__heading,
    .inquiry-list__item {
        align-items: flex-start;
        flex-direction: column;
    }

    .inquiry-message {
        max-width: 100%;
    }
}
