/*
 * Aurora Shop - Free HTML/CSS storefront template
 * Source: https://templates.inuno.app
 * Copyright (c) 2026 templates.inuno.app
 *
 * Free license note:
 * This free template may be used privately and commercially,
 * but the attribution/backlink to https://templates.inuno.app must remain.
 */

:root {
    --ink: #17202f;
    --muted: #6d7685;
    --paper: #f7f2ea;
    --panel: rgba(255, 255, 255, 0.74);
    --line: rgba(23, 32, 47, 0.12);
    --cream: #fffaf2;
    --sage: #8fae99;
    --sky: #8fc5dd;
    --clay: #d9b99d;
    --shadow: 0 24px 70px rgba(50, 42, 34, 0.18);
    --radius: 24px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(142, 215, 223, 0.38), transparent 24rem),
        radial-gradient(circle at 82% 18%, rgba(255, 125, 99, 0.2), transparent 20rem),
        linear-gradient(135deg, #f4eadc, #f9f7ef 54%, #e9f4ef);
    color: var(--ink);
    font-family: var(--font);
    letter-spacing: 0;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

.page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 84px;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(247, 242, 234, 0.94), rgba(247, 242, 234, 0.72));
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
    font-weight: 900;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    background: var(--ink);
    color: var(--cream);
}

.nav {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.nav a {
    padding: 10px 12px;
    border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
    outline: 0;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.cart-button,
.product-action {
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--ink);
    font-weight: 850;
    cursor: pointer;
}

.cart-button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    gap: 18px;
    align-items: stretch;
    min-height: 620px;
    padding: 18px 0 26px;
}

.hero-copy,
.shop-panel,
.product-card,
.mini-card,
.story-copy,
.journal-card,
.signup {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 64px);
    border-radius: var(--radius);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 34px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(23, 32, 47, 0.16);
    border-radius: 999px;
    background: rgba(154, 181, 157, 0.22);
    color: #52725d;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(54px, 8vw, 104px);
    line-height: 0.9;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 0.96;
}

.hero-copy p,
.story-copy p,
.signup p {
    max-width: 600px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.primary,
.secondary,
.product-action,
.text-link {
    display: inline-grid;
    min-height: 48px;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
}

.primary {
    padding: 0 20px;
    border: 0;
    background: var(--ink);
    color: var(--cream);
}

.secondary,
.text-link {
    padding: 0 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
}

.hero-visual {
    display: grid;
    gap: 18px;
    grid-template-rows: 1fr auto;
}

.image-panel,
.product-image {
    position: relative;
    background-image: linear-gradient(180deg, rgba(23, 32, 47, 0.02), rgba(23, 32, 47, 0.14)), url("../img/aurora-products.webp");
    background-repeat: no-repeat;
    background-size: 300% 100%;
}

.image-bag,
.product-bag {
    background-position: left center;
}

.image-tray,
.product-tray {
    background-position: center center;
}

.image-towel,
.product-towel {
    background-position: right center;
}

.shop-panel {
    position: relative;
    min-height: 448px;
    overflow: hidden;
    border-radius: var(--radius);
}

.floating-label {
    position: absolute;
    right: 22px;
    bottom: 24px;
    width: 200px;
    padding: 14px;
    border: 1px solid rgba(23, 32, 47, 0.12);
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.84);
}

.floating-label span,
.mini-card span,
.journal-card span,
.signup-form span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.floating-label strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mini-card {
    min-height: 154px;
    padding: 16px;
    border-radius: 20px;
}

.mini-card strong {
    display: block;
    margin-top: 20px;
    font-size: 34px;
}

.collection {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 6px 0 26px;
}

.product-card {
    display: grid;
    gap: 14px;
    min-height: 420px;
    padding: 14px;
    border-radius: 22px;
}

.product-image {
    display: block;
    min-height: 244px;
    border-radius: 18px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
}

.product-meta h2 {
    margin: 0 0 7px;
    font-size: 22px;
    line-height: 1.1;
}

.product-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.product-meta strong {
    font-size: 19px;
}

.product-action {
    width: 100%;
    min-height: 44px;
}

.product-action:hover,
.cart-button:hover,
.primary:hover,
.secondary:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr) minmax(240px, 0.45fr);
    gap: 18px;
    padding: 0 0 26px;
}

.story-copy {
    min-height: 390px;
    padding: clamp(24px, 5vw, 50px);
    border-radius: var(--radius);
}

.story-copy .eyebrow,
.signup .eyebrow {
    margin-bottom: 38px;
}

.journal-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border-radius: var(--radius);
    overflow: hidden;
}

.journal-card strong {
    display: block;
    max-width: 260px;
    margin-top: 8px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 250, 242, 0.84);
    font-size: 22px;
    line-height: 1.1;
}

.signup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: 24px;
    margin-bottom: 26px;
    padding: clamp(24px, 5vw, 48px);
    border-radius: var(--radius);
}

.signup h2 {
    margin-bottom: 10px;
}

.signup p {
    margin-bottom: 0;
}

.signup-form {
    display: grid;
    gap: 12px;
}

.signup-form label {
    display: grid;
    gap: 8px;
}

.signup-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.signup-form input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(143, 174, 153, 0.18);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 30px;
    color: var(--muted);
    font-size: 13px;
}

.site-footer a {
    font-weight: 850;
    color: var(--ink);
}
.site-footer > div {
    display: grid;
    gap: 6px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}



@media (max-width: 620px) {
    .footer-links {
        justify-content: flex-start;
    }
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--ink);
    color: var(--cream);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
    }

    .hero,
    .collection,
    .story-grid,
    .signup {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .page {
        width: min(100% - 24px, 1180px);
    }

    .hero-copy,
    .story-copy,
    .signup {
        padding: 26px;
    }

    .eyebrow,
    .story-copy .eyebrow,
    .signup .eyebrow {
        margin-bottom: 30px;
    }

    h1 {
        font-size: 52px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }
}
/* Unified modern demo footer */
.demo-footer {
    align-items: center;
    gap: 18px;
}

.footer-brand-block {
    min-width: min(100%, 280px);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.footer-legal a {
    display: inline-grid;
    min-height: 36px;
    place-items: center;
    border: 1px solid var(--line, rgba(0, 0, 0, 0.14));
    border-radius: var(--radius, 8px);
    background: color-mix(in srgb, var(--panel, #fff) 78%, transparent);
    padding: 0 11px;
    font-weight: 900;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line, rgba(0, 0, 0, 0.14));
    border-radius: var(--radius, 8px);
    background: var(--ink, #111);
    color: var(--panel, #fff);
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--accent, var(--yellow, var(--lime, #dfff00)));
    color: var(--ink, #111);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 760px) {
    .demo-footer,
    .footer-legal,
    .footer-social {
        justify-content: flex-start;
    }
}
/* Neutral footer support pages */
.info-page {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 14px;
    min-height: calc(100vh - 180px);
    padding: 18px 0 28px;
}

.info-hero,
.info-list article,
.info-form {
    border: 1px solid var(--line, rgba(0, 0, 0, 0.14));
    border-radius: var(--radius, 8px);
    background: var(--panel, rgba(255, 255, 255, 0.78));
    box-shadow: var(--shadow, 0 18px 58px rgba(0, 0, 0, 0.08));
}

.info-hero {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 56px);
}

.info-hero p {
    margin: 0 0 12px;
    color: var(--accent, currentColor);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.info-hero h1 {
    max-width: 12ch;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 0.98;
}

.info-hero span,
.info-list p {
    color: var(--muted, #666);
    line-height: 1.65;
}

.info-list {
    display: grid;
    gap: 12px;
}

.info-list article {
    padding: clamp(20px, 3vw, 34px);
}

.info-list h2 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2vw, 28px);
}

.info-list p {
    margin: 0;
}

.info-form {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: clamp(22px, 4vw, 44px);
}

.info-form label {
    display: grid;
    gap: 8px;
    color: var(--muted, #666);
    font-weight: 850;
}

.info-form input,
.info-form textarea {
    width: 100%;
    border: 1px solid var(--line, rgba(0, 0, 0, 0.14));
    border-radius: var(--radius, 8px);
    background: color-mix(in srgb, var(--panel, #fff) 84%, white);
    color: var(--ink, #111);
    padding: 13px 14px;
}

.info-form button {
    width: fit-content;
    border: 1px solid var(--line, rgba(0, 0, 0, 0.14));
    border-radius: var(--radius, 8px);
    background: var(--ink, #111);
    color: var(--panel, #fff);
    padding: 13px 18px;
    font-weight: 950;
    cursor: pointer;
}

@media (max-width: 820px) {
    .info-page {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .info-hero {
        min-height: auto;
    }
}
