@charset "UTF-8";

/* ---------------------------------------------------------------------------
   Florentiva Store - premium floral theme
   Fonts are self-hosted (local woff2 files) for complete self-containment.
--------------------------------------------------------------------------- */

/* ---- Self-hosted fonts ---- */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfairdisplay-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfairdisplay-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfairdisplay-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfairdisplay-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---- Design tokens ---- */
:root {
    --fs-ivory: #faf7f1;
    --fs-cream: #f6f1e8;
    --fs-white: #ffffff;
    --fs-sage: #7a8b6d;
    --fs-sage-dark: #5b6b50;
    --fs-sage-deep: #44513b;
    --fs-sage-light: #e9eee1;
    --fs-sage-pale: #f2f5ec;
    --fs-blush: #d9a79b;
    --fs-blush-soft: #e7c4b9;
    --fs-blush-light: #f7eae5;
    --fs-ink: #3a3732;
    --fs-ink-soft: #55514a;
    --fs-muted: #75705f;
    --fs-gold: #b98a4b;
    --fs-line: #e6dfd2;
    --fs-radius: 14px;
    --fs-radius-sm: 9px;
    --fs-shadow: 0 10px 30px rgba(90, 80, 60, .08);
    --fs-shadow-lg: 0 18px 45px rgba(90, 80, 60, .14);
    --fs-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --fs-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fs-sans);
    color: var(--fs-ink);
    background-color: var(--fs-ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fs-serif);
    color: var(--fs-sage-deep);
    letter-spacing: .2px;
}

a {
    color: var(--fs-sage-dark);
    text-decoration: none;
}
a:hover {
    color: var(--fs-sage-deep);
    text-decoration: underline;
}

::selection {
    background: var(--fs-sage-light);
    color: var(--fs-sage-deep);
}

img {
    max-width: 100%;
    height: auto;
}

:focus-visible {
    outline: 3px solid var(--fs-sage);
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    background: var(--fs-sage-deep);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
}

/* ---- Buttons ---- */
.btn {
    border-radius: 50rem;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .2px;
    padding: .6rem 1.5rem;
}
.btn-sage {
    background: var(--fs-sage);
    border: 1px solid var(--fs-sage);
    color: #fff;
}
.btn-sage:hover,
.btn-sage:focus {
    background: var(--fs-sage-dark);
    border-color: var(--fs-sage-dark);
    color: #fff;
    text-decoration: none;
}
.btn-outline-sage {
    border: 1px solid var(--fs-sage);
    color: var(--fs-sage-dark);
}
.btn-outline-sage:hover,
.btn-outline-sage:focus {
    background: var(--fs-sage);
    color: #fff;
    text-decoration: none;
}
.btn-blush {
    background: var(--fs-blush);
    border: 1px solid var(--fs-blush);
    color: #fff;
}
.btn-blush:hover,
.btn-blush:focus {
    background: #c98f82;
    border-color: #c98f82;
    color: #fff;
    text-decoration: none;
}
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .75);
    color: #fff;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #fff;
    color: var(--fs-sage-deep);
    text-decoration: none;
}

/* ---- Eyebrow + section heads ---- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--fs-sage-dark);
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--fs-gold);
}
.eyebrow-center::before {
    display: none;
}
.eyebrow-center {
    justify-content: center;
}
.section {
    padding: 4.5rem 0;
}
.section-sm {
    padding: 3rem 0;
}
.section-head {
    max-width: 720px;
}
.section-head h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin: .6rem 0 .8rem;
}
.section-head p {
    color: var(--fs-muted);
    font-size: 1.05rem;
}
.sage-band {
    background: var(--fs-sage-pale);
}

/* ---- Header / nav ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(250, 247, 241, .92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--fs-line);
}
.navbar {
    padding: .8rem 0;
}
.brand-mark {
    color: var(--fs-sage);
    display: inline-flex;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}
.brand-name {
    display: block;
    font-family: var(--fs-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fs-sage-deep);
    line-height: 1.1;
}
.brand-sub {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--fs-muted);
}
.navbar .nav-link {
    font-weight: 500;
    font-size: .95rem;
    color: var(--fs-ink-soft);
    padding: .5rem .8rem;
    border-radius: 6px;
}
.navbar .nav-link:hover {
    color: var(--fs-sage-dark);
    background: var(--fs-sage-pale);
    text-decoration: none;
}
.navbar .nav-link.active {
    color: var(--fs-sage-dark);
    font-weight: 600;
}
.navbar .nav-link.active::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--fs-gold);
    margin: 4px auto 0;
    border-radius: 2px;
}
.navbar-toggler {
    border: 1px solid var(--fs-line);
    border-radius: 8px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235b6b50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero ---- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(78vh, 720px);
    padding: 5rem 0;
    color: #fff;
    background-color: #3d4837;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(30, 40, 28, .72) 0%, rgba(30, 40, 28, .38) 55%, rgba(30, 40, 28, .15) 100%),
        linear-gradient(0deg, rgba(24, 32, 22, .35) 0%, rgba(24, 32, 22, 0) 40%);
}
.hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #eee5d2;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin: 1rem 0 1.1rem;
}
.hero p.lead {
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    font-size: 1.1rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
}
.hero-note {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .28);
    font-size: .9rem;
    color: rgba(255, 255, 255, .82);
    max-width: 540px;
}
.hero-note a {
    color: #fff;
    text-decoration: underline;
}

/* ---- Page header band (inner pages) ---- */
.page-band {
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .55), transparent 45%),
        linear-gradient(120deg, #eef2e6 0%, #f6eee6 100%);
    border-top: 1px solid var(--fs-line);
    border-bottom: 1px solid var(--fs-line);
    padding: 3.2rem 0;
    text-align: center;
}
.page-band h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: .7rem 0 .8rem;
}
.page-band p {
    color: var(--fs-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}
.breadcrumb-line {
    font-size: .82rem;
    color: var(--fs-muted);
    margin-bottom: .4rem;
}
.breadcrumb-line a {
    color: var(--fs-sage-dark);
}

/* ---- Cards: product, category, collection ---- */
.card-floral {
    border: 0;
    border-radius: var(--fs-radius);
    background: var(--fs-white);
    box-shadow: var(--fs-shadow);
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.card-floral:hover {
    transform: translateY(-4px);
    box-shadow: var(--fs-shadow-lg);
}
.card-floral .card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--fs-sage-light);
}
.card-floral .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.card-floral:hover .card-img-wrap img {
    transform: scale(1.05);
}
.card-floral .card-body {
    padding: 1.4rem 1.5rem 1.5rem;
}
.card-floral .card-cat {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fs-sage-dark);
}
.card-floral h3 {
    font-size: 1.3rem;
    margin: .35rem 0 .45rem;
}
.card-floral h3 a {
    color: var(--fs-sage-deep);
}
.card-floral h3 a:hover {
    color: var(--fs-sage-dark);
    text-decoration: none;
}
.card-floral .card-text {
    color: var(--fs-muted);
    font-size: .94rem;
}
.card-floral .card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .9rem;
    margin-top: .8rem;
}

/* Category cards */
.category-card .card-img-wrap {
    aspect-ratio: 1 / 1;
}
.category-card .cat-count {
    font-size: .82rem;
    color: var(--fs-muted);
}

/* Collection cards - taller portrait */
.collection-card .card-img-wrap {
    aspect-ratio: 4 / 5;
}

/* Product cards */
.product-card .badge-floral {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(250, 247, 241, .94);
    color: var(--fs-sage-deep);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .04em;
    border-radius: 50rem;
    padding: .35rem .8rem;
}
.product-price-note {
    font-size: .85rem;
    color: var(--fs-muted);
    margin-top: .45rem;
}

/* ---- Feature / value strips ---- */
.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--fs-sage-light);
    color: var(--fs-sage-dark);
    margin-bottom: 1rem;
}
.value-item h3 {
    font-size: 1.15rem;
    margin-bottom: .4rem;
}
.value-item p {
    color: var(--fs-muted);
    font-size: .93rem;
    margin: 0;
}

/* ---- Split / content rows ---- */
.content-media {
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
}
.content-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media-frame {
    aspect-ratio: 4 / 3;
}
.media-frame-tall {
    aspect-ratio: 4 / 5;
}

/* ---- Contact & forms ---- */
.form-card {
    background: var(--fs-white);
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    box-shadow: var(--fs-shadow);
    padding: 2rem;
}
.form-label {
    font-weight: 600;
    color: var(--fs-sage-deep);
    font-size: .92rem;
}
.form-control {
    border-radius: var(--fs-radius-sm);
    border: 1px solid #ddd2c2;
    padding: .7rem .9rem;
    color: var(--fs-ink);
}
.form-control:focus {
    border-color: var(--fs-sage);
    box-shadow: 0 0 0 .2rem rgba(122, 139, 109, .16);
}
.form-control.is-invalid {
    border-color: #c05851;
}
.alert-inline {
    font-size: .88rem;
}
.contact-side .contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--fs-line);
}
.contact-method .value-icon {
    margin-bottom: 0;
    flex: 0 0 58px;
}
.contact-method h3 {
    font-size: 1.05rem;
    margin-bottom: .15rem;
}
.contact-method p {
    color: var(--fs-muted);
    margin: 0;
    font-size: .95rem;
}

/* ---- Accordion (FAQ) ---- */
.accordion-floral .accordion-item {
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-sm) !important;
    overflow: hidden;
    margin-bottom: .75rem;
    background: var(--fs-white);
    box-shadow: 0 2px 8px rgba(90, 80, 60, .05);
}
.accordion-floral .accordion-button {
    font-weight: 600;
    color: var(--fs-sage-deep);
    background: var(--fs-white);
    padding: 1.1rem 1.3rem;
}
.accordion-floral .accordion-button:not(.collapsed) {
    background: var(--fs-sage-pale);
    color: var(--fs-sage-deep);
    box-shadow: none;
}
.accordion-floral .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(122, 139, 109, .18);
}
.accordion-floral .accordion-body {
    color: var(--fs-muted);
    padding: 0 1.3rem 1.2rem;
}

/* ---- Policy prose ---- */
.policy-card {
    background: var(--fs-white);
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    box-shadow: var(--fs-shadow);
    padding: 2.4rem;
}
.policy-card h2 {
    font-size: 1.5rem;
    margin-top: 1.6rem;
    margin-bottom: .6rem;
}
.policy-card h3 {
    font-size: 1.15rem;
    margin-top: 1.4rem;
    margin-bottom: .4rem;
}
.policy-card p,
.policy-card li {
    color: var(--fs-ink-soft);
}
.policy-card .updated {
    color: var(--fs-muted);
    font-size: .88rem;
    margin-bottom: 1.2rem;
}
.policy-notice {
    background: var(--fs-sage-pale);
    border-left: 4px solid var(--fs-sage);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    font-size: .92rem;
    color: var(--fs-ink-soft);
    margin: 1.2rem 0;
}

/* ---- CTA banner ---- */
.cta-banner {
    background: linear-gradient(120deg, #5b6b50 0%, #7a8b6d 60%, #8a9c7a 100%);
    color: #fff;
    padding: 4rem 0;
}
.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.cta-banner p {
    color: rgba(255, 255, 255, .88);
    max-width: 600px;
    margin: .6rem auto 0;
}

/* ---- Footer ---- */
.site-footer {
    background: #33382e;
    color: #d8d2c4;
    padding: 4rem 0 2rem;
}
.site-footer a {
    color: #d8d2c4;
}
.site-footer a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-brand {
    font-family: var(--fs-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}
.footer-tagline,
.footer-note {
    font-size: .92rem;
    color: #bdb6a6;
    max-width: 320px;
}
.footer-address {
    font-style: normal;
    color: #c9c2b1;
    margin-top: 1.1rem;
    line-height: 1.6;
}
.footer-phone {
    margin: .5rem 0 0;
}
.footer-phone a {
    color: #fff;
    font-weight: 600;
}
.footer-heading {
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .8rem;
    color: #efe9da;
    margin-bottom: 1rem;
}
.footer-links li {
    margin-bottom: .55rem;
}
.footer-links a {
    font-size: .94rem;
    color: #c9c2b1;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-hr {
    border-color: rgba(255, 255, 255, .14);
    margin: 2.2rem 0 1.4rem;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    font-size: .85rem;
    color: #a9a292;
}
.footer-bottom p {
    margin: 0;
}
.footer-dom a {
    color: #a9a292;
}
.link-plain {
    background: none;
    border: 0;
    padding: 0;
    color: #c9c2b1;
    font-size: .88rem;
    cursor: pointer;
    text-decoration: underline;
}
.link-plain:hover {
    color: #fff;
}

/* ---- Cookie banner ---- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: #2f3529;
    color: #efe9da;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .25);
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner-text {
    flex: 1 1 420px;
    font-size: .9rem;
    color: #d8d2c4;
}
.cookie-banner-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}
.cookie-banner-text a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: .6rem;
    flex: 0 0 auto;
}

/* ---- Misc ---- */
.mini-note {
    font-size: .85rem;
    color: var(--fs-muted);
}
.divider-flower {
    text-align: center;
    color: var(--fs-gold);
    font-size: 1.1rem;
    letter-spacing: .6em;
    margin: .4rem 0 1.2rem;
}
.lead-note {
    font-size: 1.05rem;
    color: var(--fs-ink-soft);
}
.list-check li {
    list-style: none;
    margin-bottom: .55rem;
    padding-left: 1.6rem;
    position: relative;
    color: var(--fs-ink-soft);
}
.list-check li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--fs-sage-dark);
    font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .section { padding: 3.5rem 0; }
    .navbar-collapse {
        padding-top: .8rem;
        border-top: 1px solid var(--fs-line);
        margin-top: .6rem;
    }
    .hero { min-height: auto; padding: 4rem 0; }
}

@media (max-width: 767.98px) {
    .section { padding: 3rem 0; }
    .policy-card { padding: 1.6rem; }
    .form-card { padding: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}