/* Plantos — Coming Soon / storefront maintenance page.
   Fully standalone: no dependency on store.css, store-ecomus.css, or any
   vendor/ecomus asset, so it renders correctly regardless of what state
   the storefront redesign is in. */

@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/vendor/fonts/cairo/cairo-arabic-400-normal.woff2') format('woff2'),
        url('/vendor/fonts/cairo/cairo-arabic-400-normal.woff') format('woff');
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/vendor/fonts/cairo/cairo-arabic-600-normal.woff2') format('woff2'),
        url('/vendor/fonts/cairo/cairo-arabic-600-normal.woff') format('woff');
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/vendor/fonts/cairo/cairo-arabic-700-normal.woff2') format('woff2'),
        url('/vendor/fonts/cairo/cairo-arabic-700-normal.woff') format('woff');
}

:root {
    --cs-primary: #176b3a;
    --cs-primary-dark: #10542d;
    --cs-primary-soft: #e8f4ec;
    --cs-bg: #fbfaf7;
    --cs-text: #1c2620;
    --cs-muted: #5c6b60;
    --cs-border: #e4ded0;
    --cs-font: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: var(--cs-font);
    background: var(--cs-bg);
    color: var(--cs-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

a { color: inherit; }

.cs-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

.cs-visual {
    position: relative;
    min-height: 260px;
    background: radial-gradient(120% 120% at 30% 20%, #eef6ee 0%, var(--cs-primary-soft) 55%, #dfeee3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cs-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.cs-visual .cs-illustration {
    width: 62%;
    max-width: 340px;
    position: relative;
}

.cs-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 40px;
}
.cs-content-inner {
    width: 100%;
    max-width: 460px;
    text-align: center;
}

.cs-logo { margin-bottom: 28px; }
.cs-logo img { height: 42px; width: auto; margin: 0 auto; display: block; }

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cs-primary-soft);
    color: var(--cs-primary-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.cs-heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px;
    color: var(--cs-primary-dark);
}

.cs-description {
    font-size: 15.5px;
    color: var(--cs-muted);
    margin: 0 0 22px;
    line-height: 1.85;
}

.cs-tagline {
    font-size: 13px;
    color: var(--cs-primary-dark);
    font-weight: 600;
    margin: 0 0 30px;
    opacity: .9;
}

.cs-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cs-primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}
.cs-whatsapp:hover { background: var(--cs-primary-dark); color: #fff; }
.cs-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

.cs-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}
.cs-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--cs-border);
    color: var(--cs-primary-dark);
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease;
}
.cs-social a:hover { border-color: var(--cs-primary); color: var(--cs-primary); }
.cs-social svg { width: 18px; height: 18px; }

.cs-footer {
    margin-top: 40px;
    font-size: 12.5px;
    color: var(--cs-muted);
}

@media (min-width: 900px) {
    .cs-shell { grid-template-columns: 1fr 1fr; }
    /* RTL start (right) = content, RTL end (left) = the plant visual. */
    .cs-content { order: 1; padding: 64px; }
    .cs-visual { order: 2; min-height: 100vh; }
    .cs-visual .cs-illustration { max-width: 420px; }
    .cs-heading { font-size: 34px; }
    .cs-description { font-size: 16.5px; }
}
