/*
Theme Name: Sweet Land Factory Official
Theme URI: https://sweetland.store/
Author: Sweet Land Factory
Description: Official lavender identity landing page for Sweet Land Factory.
Version: 4.0.4
Text Domain: sweetland
*/

:root {
    --sl-primary: #8466B2;
    --sl-secondary: #9B84C4;
    --sl-light: #D8CBEA;
    --sl-ultra: #F7F3FC;
    --sl-white: #FFFDFB;
    --sl-gold: #D7B36A;
    --sl-beige: #F4E8D8;
    --sl-text: #5B5565;
    --sl-footer: #4A365F;
    --sl-heading: #6F5799;
    --sl-line: rgba(132, 102, 178, .18);
    --sl-shadow: 0 18px 48px rgba(132, 102, 178, .12);
    --sl-shadow-strong: 0 26px 70px rgba(132, 102, 178, .18);
    --sl-radius-xl: 36px;
    --sl-radius-lg: 30px;
    --sl-radius-md: 22px;
    --sl-container: min(1160px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 203, 234, .35), transparent 28rem),
        linear-gradient(180deg, var(--sl-white) 0%, #fff 45%, var(--sl-ultra) 100%);
    color: var(--sl-text);
    font-family: "Tajawal", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.85;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
}

body.sl-official {
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
summary {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(132, 102, 178, .12);
}

input,
select,
textarea,
button {
    border-radius: 0;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sl-container {
    width: var(--sl-container);
    margin-inline: auto;
}

.sl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3em;
    height: 1.3em;
    color: currentColor;
    flex: 0 0 auto;
}

.sl-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sl-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 251, .86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(74, 54, 95, .08);
}

.sl-topbar {
    color: #fff;
    background: linear-gradient(90deg, var(--sl-footer) 0%, var(--sl-primary) 48%, var(--sl-secondary) 100%);
    padding-top: env(safe-area-inset-top, 0);
}

.sl-topbar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
    font-weight: 600;
}

.sl-topbar__tagline {
    margin: 0;
    letter-spacing: .01em;
}

.sl-topbar__links {
    display: flex;
    align-items: center;
    gap: 20px;
    direction: ltr;
}

.sl-topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: .96;
    transition: opacity .25s ease, transform .25s ease;
}

.sl-topbar__links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.sl-navbar {
    background: rgba(255, 253, 251, .94);
    border-bottom: 1px solid rgba(216, 203, 234, .7);
}

.sl-navbar__inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sl-logo-lockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sl-logo-lockup img {
    width: 272px;
    height: 78px;
    object-fit: contain;
}

.sl-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #4f4860;
    font-size: 14px;
    font-weight: 700;
    flex: 1 1 auto;
}

.sl-main-nav a {
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
    transition: color .25s ease;
}

.sl-main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--sl-primary), var(--sl-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.sl-main-nav a:hover,
.sl-main-nav a.is-active {
    color: var(--sl-primary);
}

.sl-main-nav a:hover::after,
.sl-main-nav a.is-active::after {
    transform: scaleX(1);
}

.sl-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sl-language {
    min-width: 56px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--sl-line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--sl-primary);
    font-weight: 800;
    background: #fff;
}

.sl-whatsapp-cta,
.sl-btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 25px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.sl-whatsapp-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--sl-primary), var(--sl-secondary));
    box-shadow: 0 15px 35px rgba(132, 102, 178, .22);
}

.sl-whatsapp-cta:hover,
.sl-btn:hover {
    transform: translateY(-3px);
}

.sl-mobile-nav {
    display: none;
    position: relative;
}

.sl-mobile-nav summary {
    list-style: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--sl-line);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--sl-primary);
    background: #fff;
}

.sl-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.sl-mobile-nav nav {
    position: absolute;
    top: 56px;
    left: 0;
    width: min(280px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--sl-shadow);
    -webkit-overflow-scrolling: touch;
    display: grid;
    gap: 7px;
}

.sl-mobile-nav nav a {
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--sl-footer);
    font-weight: 800;
}

.sl-mobile-nav nav a:hover {
    background: var(--sl-ultra);
    color: var(--sl-primary);
}

.sl-page {
    background: transparent;
}

.sl-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(90deg, rgba(255, 253, 251, .1) 0%, rgba(247, 243, 252, .9) 49%, rgba(255, 253, 251, .98) 100%),
        radial-gradient(circle at 78% 34%, rgba(216, 203, 234, .7), transparent 24rem);
}

.sl-hero::before {
    content: "";
    position: absolute;
    inset: auto -6rem -10rem auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 0 38%, rgba(132, 102, 178, .08) 39% 40%, transparent 41%),
        repeating-conic-gradient(from 18deg, rgba(132, 102, 178, .075) 0deg 10deg, transparent 10deg 21deg);
    opacity: .8;
    pointer-events: none;
}

.sl-hero__ornament {
    position: absolute;
    pointer-events: none;
    opacity: .07;
}

.sl-hero__ornament::before,
.sl-hero__ornament::after {
    content: "";
    position: absolute;
    border: 2px solid var(--sl-primary);
    border-radius: 42% 58% 56% 44%;
    transform: rotate(24deg);
}

.sl-hero__ornament--right {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 145px;
}

.sl-hero__ornament--right::before {
    inset: 18px;
}

.sl-hero__ornament--right::after {
    inset: 62px;
}

.sl-hero__ornament--left {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: 42px;
    color: var(--sl-gold);
}

.sl-hero__ornament--left::before {
    inset: 22px;
    border-color: var(--sl-gold);
}

.sl-hero__ornament--left::after {
    inset: 70px;
    border-color: var(--sl-gold);
}

.sl-hero__grid {
    width: min(1440px, 100vw);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(420px, .92fr);
    align-items: stretch;
    min-height: 560px;
    direction: ltr;
}

.sl-hero__visual {
    position: relative;
    margin: 0;
    height: 560px;
    min-height: 560px;
    overflow: hidden;
}

.sl-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(.98) brightness(1.04);
    transform: scale(1.02);
}

.sl-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 56%, rgba(247, 243, 252, .35) 73%, rgba(255, 253, 251, .96) 100%),
        linear-gradient(180deg, rgba(255, 253, 251, .08), rgba(247, 243, 252, .1));
}

.sl-hero__content {
    direction: rtl;
    position: relative;
    z-index: 2;
    padding: 58px max(40px, calc((100vw - 1160px) / 2)) 70px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: slFadeUp .7s ease both;
}

.sl-section-kicker,
.sl-mini-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--sl-primary);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .01em;
    white-space: nowrap;
}

.sl-section-kicker {
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(132, 102, 178, .24);
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 8px 25px rgba(132, 102, 178, .08);
}

.sl-mini-title::before,
.sl-mini-title::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sl-gold), transparent);
}

.sl-hero__eyebrow {
    margin: 18px 0 0;
    color: var(--sl-secondary);
    font-size: clamp(24px, 3.3vw, 38px);
    font-weight: 800;
    line-height: 1;
}

.sl-hero h1,
.sl-hero h2,
.sl-section-heading h2,
.sl-about h2,
.sl-quality h2,
.sl-quote h2 {
    margin: 0;
    color: var(--sl-heading);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.sl-hero h1 {
    margin-top: 4px;
    font-size: clamp(54px, 5.9vw, 84px);
    font-weight: 800;
}

.sl-hero h2 {
    margin-top: 6px;
    color: #B58B57;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
}

.sl-hero__content > p:last-of-type {
    width: min(620px, 100%);
    margin: 18px auto 0;
    color: #514a60;
    font-size: 17px;
    font-weight: 500;
}

.sl-hero__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sl-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sl-primary), var(--sl-secondary));
    box-shadow: 0 18px 40px rgba(132, 102, 178, .24);
}

.sl-btn--secondary {
    color: var(--sl-primary);
    background: rgba(255, 253, 251, .78);
    border: 1px solid rgba(132, 102, 178, .36);
    box-shadow: 0 14px 34px rgba(132, 102, 178, .08);
}

.sl-btn--secondary:hover {
    background: #fff;
    box-shadow: 0 20px 44px rgba(132, 102, 178, .14);
}

.sl-btn bdi {
    white-space: nowrap;
    direction: ltr;
    unicode-bidi: isolate;
}

.sl-trust {
    position: relative;
    z-index: 3;
    margin-top: -58px;
}

.sl-trust__card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    min-height: 126px;
    padding: 18px 26px;
    border-radius: 35px;
    border: 1px solid rgba(216, 203, 234, .75);
    background: rgba(255, 253, 251, .94);
    box-shadow: var(--sl-shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.sl-trust__card article {
    display: grid;
    place-items: center;
    gap: 4px;
    text-align: center;
    padding: 14px 16px;
    color: var(--sl-primary);
}

.sl-trust__card article:not(:last-child) {
    border-left: 1px solid rgba(132, 102, 178, .16);
}

.sl-trust__card .sl-icon {
    width: 38px;
    height: 38px;
    color: var(--sl-primary);
}

.sl-trust__card h3 {
    margin: 7px 0 0;
    color: var(--sl-heading);
    font-size: 15px;
    line-height: 1.35;
}

.sl-trust__card p {
    margin: 0;
    color: var(--sl-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.sl-section {
    padding: 86px 0;
}

.sl-about {
    position: relative;
}

.sl-about::before,
.sl-products::before,
.sl-gallery::before {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(132, 102, 178, .12);
    border-radius: 48%;
    opacity: .6;
    transform: rotate(28deg);
}

.sl-about::before {
    right: -120px;
    top: 80px;
}

.sl-products,
.sl-gallery {
    position: relative;
    overflow: hidden;
}

.sl-products::before {
    left: -120px;
    top: 130px;
}

.sl-gallery::before {
    right: -130px;
    bottom: 60px;
}

.sl-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 68px;
}

.sl-about__content {
    animation: slFadeUp .7s ease both;
}

.sl-about h2 {
    margin-top: 15px;
    max-width: 620px;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
}

.sl-about__content > p {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--sl-text);
    font-size: 17px;
    font-weight: 500;
}

.sl-about__image {
    margin: 0;
    position: relative;
}

.sl-about__image::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(216, 203, 234, .46), rgba(244, 232, 216, .35));
    z-index: -1;
}

.sl-about__image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    border-radius: var(--sl-radius-lg);
    box-shadow: var(--sl-shadow);
}

.sl-stats-card {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 28px;
    border: 1px solid rgba(132, 102, 178, .18);
    background: rgba(255, 253, 251, .72);
    box-shadow: 0 14px 40px rgba(132, 102, 178, .08);
}

.sl-stats-card article {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 118px;
    padding: 18px;
    text-align: center;
}

.sl-stats-card article:not(:last-child) {
    border-left: 1px solid rgba(132, 102, 178, .14);
}

.sl-stats-card .sl-icon {
    width: 34px;
    height: 34px;
    color: var(--sl-primary);
}

.sl-stats-card strong {
    color: var(--sl-heading);
    font-size: 21px;
    line-height: 1.25;
}

.sl-stats-card span {
    color: var(--sl-text);
    font-weight: 700;
    font-size: 13px;
}

.sl-section-heading {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 34px;
}

.sl-section-heading h2 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
}

.sl-product-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.sl-product-card {
    overflow: hidden;
    min-height: 100%;
    border-radius: 32px;
    background: rgba(255, 253, 251, .96);
    border: 1px solid rgba(132, 102, 178, .14);
    box-shadow: 0 14px 40px rgba(132, 102, 178, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sl-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sl-shadow-strong);
    border-color: rgba(132, 102, 178, .28);
}

.sl-product-card figure {
    margin: 0;
    padding: 10px 10px 0;
}

.sl-product-card img {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    object-fit: cover;
    border-radius: 24px;
}

.sl-product-card__body {
    position: relative;
    padding: 20px 22px 24px;
    text-align: center;
    display: grid;
    justify-items: center;
}

.sl-product-card__icon {
    width: 48px;
    height: 48px;
    margin-top: -44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--sl-primary);
    background: #fff;
    border: 1px solid rgba(132, 102, 178, .15);
    box-shadow: 0 10px 26px rgba(132, 102, 178, .12);
}

.sl-product-card__icon .sl-icon {
    width: 26px;
    height: 26px;
}

.sl-product-card h3 {
    margin: 15px 0 7px;
    color: var(--sl-heading);
    font-size: 22px;
    line-height: 1.35;
}

.sl-product-card p {
    min-height: 88px;
    margin: 0;
    color: var(--sl-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.sl-product-card a {
    margin-top: 18px;
    min-height: 40px;
    padding: 0 20px;
    border: 1px solid rgba(132, 102, 178, .3);
    border-radius: 999px;
    color: var(--sl-primary);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
}

.sl-product-card a:hover {
    background: var(--sl-ultra);
    transform: translateY(-2px);
}

.sl-quality {
    margin: 10px 0 0;
    padding: 0;
}

.sl-quality__grid {
    overflow: hidden;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: stretch;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(74, 54, 95, .96), rgba(132, 102, 178, .9)),
        radial-gradient(circle at 10% 20%, rgba(216, 203, 234, .28), transparent 22rem);
    color: #fff;
    box-shadow: var(--sl-shadow-strong);
}

.sl-quality figure {
    margin: 0;
    min-height: 380px;
}

.sl-quality figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95) contrast(.98) brightness(.86);
}

.sl-quality__content {
    padding: 52px 56px;
}

.sl-quality .sl-mini-title,
.sl-quality h2 {
    color: #fff;
}

.sl-quality h2 {
    margin-top: 12px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
}

.sl-quality__content > p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
}

.sl-quality__points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sl-quality__points article {
    min-height: 142px;
    display: grid;
    grid-template-rows: 38px 44px auto;
    place-items: center;
    text-align: center;
    padding: 18px 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
}

.sl-quality__points .sl-icon {
    width: 36px;
    height: 36px;
    color: var(--sl-gold);
}

.sl-quality__points h3 {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.35;
    color: #fff;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-quality__points p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.sl-gallery {
    background: linear-gradient(180deg, rgba(247, 243, 252, .5), rgba(255, 253, 251, .92));
}

.sl-gallery__rail {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 155px;
    gap: 14px;
}

.sl-gallery__rail figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(132, 102, 178, .08);
}

.sl-gallery__rail figure:first-child {
    grid-row: span 1;
}

.sl-gallery__rail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.sl-gallery__rail figure:nth-child(2) img {
    object-position: center 58%;
}

.sl-gallery__rail figure:hover img {
    transform: scale(1.045);
}

.sl-quote {
    padding: 24px 0 86px;
}

.sl-quote__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: stretch;
}

.sl-quote__form,
.sl-quote__contact {
    border-radius: 32px;
    border: 1px solid rgba(132, 102, 178, .15);
    background: rgba(255, 253, 251, .95);
    box-shadow: var(--sl-shadow);
}

.sl-quote__form {
    padding: 34px;
}

.sl-quote__form h2,
.sl-quote__contact h2 {
    margin-top: 6px;
    color: var(--sl-heading);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
}

.sl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.sl-form-grid label {
    display: grid;
    gap: 6px;
    color: var(--sl-heading);
    font-size: 13px;
    font-weight: 800;
}

.sl-form-grid label:last-child {
    grid-column: 1 / -1;
}

.sl-form-grid input,
.sl-form-grid select,
.sl-form-grid textarea,
.sl-footer__newsletter input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(132, 102, 178, .16);
    border-radius: 16px;
    outline: none;
    padding: 0 15px;
    color: var(--sl-footer);
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.sl-form-grid textarea {
    min-height: 94px;
    padding-top: 12px;
    resize: vertical;
}

.sl-form-grid input:focus,
.sl-form-grid select:focus,
.sl-form-grid textarea:focus,
.sl-footer__newsletter input:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 4px rgba(132, 102, 178, .1);
}

.sl-quote__form .sl-btn {
    width: 100%;
    margin-top: 18px;
    border: 0;
    cursor: pointer;
}

.sl-quote__contact {
    overflow: hidden;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
}

.sl-quote__contact img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.sl-quote__contact > div {
    padding: 34px;
}

.sl-quote__contact p {
    margin: 16px 0 23px;
    color: var(--sl-text);
}

.sl-quote__contact .sl-btn {
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
}

.sl-footer {
    color: #fff;
    background:
        radial-gradient(circle at 22% 18%, rgba(216, 203, 234, .18), transparent 25rem),
        linear-gradient(135deg, var(--sl-footer), var(--sl-primary));
}

.sl-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr 1fr 1.05fr;
    gap: 42px;
    padding: 56px 0 38px;
}

.sl-footer h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 19px;
}

.sl-footer p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
}

.sl-footer__logo-card {
    width: fit-content;
    padding: 10px 12px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.sl-logo-lockup--footer img {
    width: 220px;
    height: auto;
}

.sl-footer__social {
    margin-top: 22px;
    display: flex;
    gap: 10px;
}

.sl-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sl-footer__links,
.sl-footer__contact {
    display: grid;
    align-content: start;
    gap: 8px;
}

.sl-footer__links a,
.sl-footer__contact a,
.sl-footer__contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
    white-space: nowrap;
}

.sl-footer__newsletter form {
    position: relative;
    margin-top: 18px;
}

.sl-footer__newsletter input {
    min-height: 52px;
    padding-inline-end: 60px;
}

.sl-footer__newsletter button {
    position: absolute;
    left: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--sl-primary);
    cursor: pointer;
}

.sl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.sl-footer__bottom .sl-container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 0;
}

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

@media (max-width: 1180px) {
    .sl-main-nav {
        gap: 16px;
        font-size: 13px;
    }

    .sl-logo-lockup img {
        width: 230px;
    }

    .sl-whatsapp-cta span {
        display: none;
    }

    .sl-whatsapp-cta {
        width: 50px;
        padding: 0;
    }
}

@media (max-width: 980px) {
    :root {
        --sl-container: min(100vw - 32px, 760px);
    }

    .sl-topbar__inner {
        min-height: auto;
        padding: 9px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sl-topbar__links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .sl-navbar__inner {
        min-height: 82px;
        gap: 14px;
    }

    .sl-main-nav {
        display: none;
    }

    .sl-mobile-nav {
        display: block;
    }

    .sl-logo-lockup img {
        width: 210px;
        height: auto;
    }

    .sl-hero {
        min-height: 0;
    }

    .sl-hero__grid {
        width: 100%;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sl-hero__visual {
        height: 420px;
        min-height: 420px;
        order: 1;
        border-bottom-left-radius: 42px;
        border-bottom-right-radius: 42px;
    }

    .sl-hero__visual img {
        min-height: 420px;
    }

    .sl-hero__visual::after {
        background: linear-gradient(180deg, transparent 0 58%, rgba(247, 243, 252, .82) 88%, rgba(255, 253, 251, 1) 100%);
    }

    .sl-hero__content {
        order: 2;
        padding: 42px 20px 88px;
    }

    .sl-hero h1 {
        font-size: clamp(50px, 15vw, 76px);
    }

    .sl-hero__actions {
        width: 100%;
        align-items: stretch;
    }

    .sl-hero__actions .sl-btn {
        width: min(360px, 100%);
    }

    .sl-trust {
        margin-top: -50px;
    }

    .sl-trust__card {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 14px;
    }

    .sl-trust__card article:not(:last-child) {
        border-left: 0;
    }

    .sl-trust__card article {
        border: 1px solid rgba(132, 102, 178, .1);
        border-radius: 22px;
    }

    .sl-trust__card article:last-child {
        grid-column: 1 / -1;
    }

    .sl-about__grid,
    .sl-quality__grid,
    .sl-quote__grid,
    .sl-quote__contact {
        grid-template-columns: 1fr;
    }

    .sl-about__grid {
        gap: 36px;
    }

    .sl-about__image {
        order: -1;
    }

    .sl-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sl-quality__content {
        padding: 36px 26px;
    }

    .sl-quality__points {
        grid-template-columns: repeat(2, 1fr);
    }

    .sl-gallery__rail {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .sl-gallery__rail figure:first-child {
        grid-column: auto;
        grid-row: span 1;
    }

    .sl-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .sl-topbar__tagline {
        font-size: 12px;
    }

    .sl-navbar__actions {
        gap: 8px;
    }

    .sl-language {
        min-width: 48px;
        padding: 0 10px;
    }

    .sl-language .sl-icon {
        display: none;
    }

    .sl-logo-lockup img {
        width: 176px;
    }

    .sl-whatsapp-cta {
        display: none;
    }

    .sl-hero__visual,
    .sl-hero__visual img {
        height: 330px;
        min-height: 330px;
    }

    .sl-hero__content {
        padding: 36px 18px 78px;
    }

    .sl-section-kicker {
        font-size: 12px;
        padding: 0 14px;
    }

    .sl-hero h2 {
        font-size: 24px;
    }

    .sl-hero__content > p:last-of-type {
        font-size: 16px;
    }

    .sl-trust__card {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .sl-trust__card article:last-child {
        grid-column: auto;
    }

    .sl-section {
        padding: 64px 0;
    }

    .sl-about h2,
    .sl-section-heading h2,
    .sl-quality h2,
    .sl-quote__form h2,
    .sl-quote__contact h2 {
        font-size: 29px;
    }

    .sl-stats-card,
    .sl-product-grid,
    .sl-quality__points,
    .sl-form-grid,
    .sl-footer__grid {
        grid-template-columns: 1fr;
    }

    .sl-stats-card article:not(:last-child) {
        border-left: 0;
        border-bottom: 1px solid rgba(132, 102, 178, .14);
    }

    .sl-product-card p {
        min-height: auto;
    }

    .sl-quality__grid {
        border-radius: 28px;
    }

    .sl-quality__points article {
        grid-template-rows: auto;
    }

    .sl-quality figure {
        min-height: 260px;
    }

    .sl-gallery__rail {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .sl-gallery__rail figure {
        min-width: 78vw;
        height: 180px;
        scroll-snap-align: center;
    }

    .sl-quote {
        padding-bottom: 58px;
    }

    .sl-quote__form,
    .sl-quote__contact > div {
        padding: 24px;
    }

    .sl-quote__contact img {
        min-height: 240px;
    }

    .sl-footer__bottom .sl-container {
        flex-direction: column;
        text-align: center;
    }
}
