@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display:ital@0;1&display=swap");
:root {
    --cream: #fff3f1;
    --ivory: #fffaf8;
    --rose: #dc6682;
    --rose-dark: #b74461;
    --blush: #f3c4cd;
    --sage: #c85572;
    --sage-light: #f8dfe4;
    --brown: #342b2d;
    --muted: #756469;
    --gold: #d65d79;
    --line: #efd4d9;
    --shadow: 0 16px 45px rgba(145, 49, 75, 0.14);
    --radius: 22px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--ivory);
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}
body,
button,
input,
select,
textarea {
    font: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    line-height: 1.08;
}
h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.04em;
}
h2 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    letter-spacing: -0.03em;
}
h3 {
    font-size: 1.55rem;
}
em {
    color: var(--rose);
    font-weight: 400;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 99;
    background: #fff;
    padding: 0.7rem;
}
.skip-link:focus {
    top: 1rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(223, 212, 202, 0.7);
}
.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font:
        2rem "DM Serif Display",
        serif;
    color: var(--rose-dark);
    letter-spacing: -0.04em;
}
.brand span {
    font-size: 0.8rem;
    color: var(--gold);
    margin-left: 0.15rem;
}
.brand.light {
    color: #fff;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-nav > a:not(.button) {
    font-size: 0.9rem;
    color: var(--muted);
}
.main-nav > a.active {
    color: var(--rose-dark) !important;
    font-weight: 600;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--ivory);
    color: var(--rose-dark);
    cursor: pointer;
}
.menu-toggle-lines {
    width: 19px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle-lines > span {
    width: 100%;
    height: 1.5px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines > span:first-child {
    transform: translateY(6.25px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines > span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines > span:last-child {
    transform: translateY(-6.25px) rotate(-45deg);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-dark);
    color: #fff;
    border: 1px solid var(--rose-dark);
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.button:hover {
    background: var(--rose);
    transform: translateY(-1px);
}
.button-small {
    padding: 0.58rem 1.1rem;
    font-size: 0.86rem;
}
.button-secondary {
    background: transparent;
    color: var(--rose-dark);
}
.button-secondary:hover {
    color: #fff;
}
.button-light {
    background: #fff;
    color: var(--rose-dark);
    border-color: #fff;
}
.button-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}
.button-wide {
    width: 100%;
    padding: 1rem;
}
.text-link {
    color: var(--rose-dark);
    font-weight: 600;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--rose-dark);
}
.hero {
    min-height: 720px;
    background: linear-gradient(115deg, var(--cream), #f4e9e4);
    overflow: hidden;
    position: relative;
}
.hero-full {
    min-height: min(720px, calc(100vh - 82px));
}
.hero-full-media {
    position: absolute;
    inset: 0;
}
.hero-full-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    will-change: transform;
}
.hero-full-overlay {
    position: relative;
    z-index: 1;
    min-height: min(720px, calc(100vh - 82px));
    background: linear-gradient(
        90deg,
        rgba(255, 248, 246, 0.92) 0%,
        rgba(255, 248, 246, 0.86) 38%,
        rgba(255, 248, 246, 0.2) 68%,
        rgba(255, 248, 246, 0) 100%
    );
    display: flex;
    align-items: center;
}
.hero-full-content {
    padding: 3.25rem 0;
}
.hero-copy {
    max-width: 590px;
}
.hero-copy h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    margin: 1rem 0 1.25rem;
    text-wrap: balance;
}
.hero-copy p {
    max-width: 500px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    flex-wrap: wrap;
}
.button-small {
    padding: 0.72rem 1.05rem;
    font-size: 0.82rem;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(183, 68, 97, 0.22);
    border-radius: 999px;
    background: rgba(255, 250, 248, 0.62);
    color: var(--rose-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.hero-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f9b64;
    box-shadow: 0 0 0 4px rgba(79, 155, 100, 0.13);
    animation: hero-pulse 2.2s ease-in-out infinite;
}
.hero-primary {
    gap: 0.75rem;
    padding: 0.82rem 1.35rem;
    box-shadow: 0 12px 28px rgba(183, 68, 97, 0.2);
}
.hero-primary span,
.cta .button span {
    transition: transform 0.2s ease;
}
.hero-primary:hover span,
.cta .button:hover span {
    transform: translate(2px, -2px);
}
.hero-proof {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}
.hero-proof p {
    max-width: 290px;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--muted);
}
.hero-proof-faces {
    display: flex;
    padding-left: 8px;
}
.hero-proof-faces span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    margin-left: -8px;
    border: 2px solid var(--ivory);
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose-dark);
    font: 0.72rem "DM Serif Display", serif;
}
.hero-proof-faces span:nth-child(2) {
    background: #ead9c8;
}
.hero-proof-faces span:nth-child(3) {
    background: #d9dfcf;
}
.hero-petal {
    position: absolute;
    z-index: 2;
    color: rgba(255, 250, 248, 0.82);
    pointer-events: none;
    filter: drop-shadow(0 8px 14px rgba(91, 39, 55, 0.14));
}
.hero-petal-one {
    top: 18%;
    right: 9%;
    font-size: 1.8rem;
    animation: petal-float 5s ease-in-out infinite;
}
.hero-petal-two {
    right: 3%;
    bottom: 16%;
    font-size: 3.4rem;
    animation: petal-float 7s 0.8s ease-in-out infinite reverse;
}
.service-ribbon {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
}
.service-ribbon-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.service-ribbon-inner > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: 104px;
    padding: 1.1rem 2rem;
    border-right: 1px solid var(--line);
}
.service-ribbon-inner > div:last-child {
    border-right: 0;
}
.service-ribbon-inner > div > span {
    color: var(--rose);
    font-size: 1.7rem;
}
.service-ribbon p,
.service-ribbon small {
    margin: 0;
}
.service-ribbon strong,
.service-ribbon small {
    display: block;
}
.service-ribbon strong {
    font-size: 0.83rem;
}
.service-ribbon small {
    color: var(--muted);
    font-size: 0.72rem;
}
.hero-page {
    padding: 24px 0 0;
}
.hero-page .hero-full-media,
.hero-page .hero-full-overlay {
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    overflow: hidden;
}
.hero-page .hero-full-overlay {
    min-height: 460px;
    padding: 0 24px;
    background: linear-gradient(
        180deg,
        rgba(255, 248, 246, 0.86) 0%,
        rgba(255, 248, 246, 0.82) 52%,
        rgba(255, 248, 246, 0.62) 100%
    );
}
.hero-page .hero-full-content {
    padding: 2.5rem 0;
    text-align: center;
}
.hero-page .hero-copy {
    max-width: 760px;
    margin: 0 auto;
}
.hero-page .hero-copy p {
    max-width: 620px;
    margin: 0 auto;
}
.hero-page .hero-actions {
    justify-content: center;
}
.section {
    padding: 110px 0;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3.2rem;
}
.section-heading h2 {
    margin: 0.6rem 0 0;
}
.section-heading > p {
    max-width: 390px;
    color: var(--muted);
}
.section-heading.center {
    text-align: center;
    justify-content: center;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.category-card {
    min-height: 380px;
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: 0.25s;
    color: #fff;
    isolation: isolate;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.category-card:hover .category-media img {
    transform: scale(1.055);
    filter: saturate(1) contrast(0.94) brightness(0.76);
}
.category-card h3 {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: #fff;
    text-shadow: 0 3px 14px rgba(38, 12, 23, 0.42);
}
.category-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 10px rgba(38, 12, 23, 0.36);
}
.category-card small {
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(38, 12, 23, 0.36);
}
.category-media {
    position: absolute;
    inset: 0;
    display: block;
    z-index: -2;
}
.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.92) brightness(0.72);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.category-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 13, 25, 0.08) 0%,
        rgba(72, 23, 39, 0.28) 52%,
        rgba(24, 8, 14, 0.7) 100%
    );
}
.category-symbol {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-size: 9rem;
    line-height: 1;
    opacity: 0.4;
    z-index: 1;
    text-shadow: 0 6px 20px rgba(27, 7, 14, 0.4);
}
.category-card .eyebrow,
.category-card h3,
.category-card p,
.category-card small {
    position: relative;
    z-index: 1;
}
.category-card small {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-card small b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background 0.2s ease;
}
.category-card:hover small b {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.15);
}
.category-card .eyebrow {
    color: #fff;
    text-shadow: 0 2px 10px rgba(38, 12, 23, 0.4);
}
.cat-1 {
    background: #e5b9be;
}
.cat-2 {
    background: #ccd8c3;
}
.cat-3 {
    background: #e8d9c3;
}
.cat-4 {
    background: #c6a4a8;
    color: #fff;
}
.featured-section {
    background: var(--cream);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--ivory);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: 0.25s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.product-card:hover .product-image img {
    transform: scale(1.045);
}
.product-image {
    height: 340px;
    background: linear-gradient(140deg, #ead1d2, #c7d0bd);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.flower-placeholder {
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff6ed;
    text-shadow: 0 8px 24px rgba(85, 50, 50, 0.18);
}
.badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: var(--ivory);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    color: var(--rose-dark);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.product-body {
    padding: 1.5rem;
}
.product-body h3 {
    margin: 0.35rem 0;
}
.product-body p {
    color: var(--muted);
    font-size: 0.88rem;
    min-height: 48px;
}
.price {
    font:
        1.3rem "DM Serif Display",
        serif;
    color: var(--rose-dark);
}
.price small,
.detail-price small {
    font:
        500 0.68rem "DM Sans",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    color: var(--muted);
}
.card-actions {
    border-top: 1px solid var(--line);
    margin-top: 1.2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icon-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
}
.steps {
    background: #fff;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid:before {
    content: "";
    position: absolute;
    top: 70px;
    left: 16.66%;
    right: 16.66%;
    border-top: 1px dashed var(--blush);
}
.steps-grid article {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.steps-grid strong {
    position: absolute;
    top: 0;
    left: 1rem;
    color: var(--blush);
    font:
        4rem "DM Serif Display",
        serif;
    opacity: 0.55;
}
.steps-grid article > span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--ivory);
    font-size: 2.5rem;
    color: var(--rose);
    position: relative;
    box-shadow: 0 12px 30px rgba(145, 49, 75, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
}
.steps-grid article:hover > span {
    transform: translateY(-5px) rotate(-4deg);
    background: var(--cream);
}
.steps-grid p {
    color: var(--muted);
}
.cta {
    background: var(--rose-dark);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-media {
    position: absolute;
    inset: 0;
}
.cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        95deg,
        rgba(69, 30, 40, 0.84) 0%,
        rgba(120, 52, 72, 0.72) 42%,
        rgba(255, 214, 224, 0.08) 100%
    );
}
.cta h2 {
    margin: 1rem 0;
}
.cta em {
    color: var(--blush);
}
.cta .eyebrow {
    color: #ffd7e0;
}
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}
.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-ready .category-grid [data-reveal]:nth-child(2) {
    transition-delay: 80ms;
}
.reveal-ready .category-grid [data-reveal]:nth-child(3) {
    transition-delay: 160ms;
}
.reveal-ready .category-grid [data-reveal]:nth-child(4) {
    transition-delay: 240ms;
}
@keyframes hero-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(79, 155, 100, 0.13);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(79, 155, 100, 0.04);
    }
}
@keyframes petal-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
    50% {
        transform: translate3d(-8px, -14px, 0) rotate(8deg);
    }
}
.page-hero {
    padding: 100px 0 80px;
    background: var(--cream);
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin: 1rem 0;
}
.page-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
}
.search-form {
    display: flex;
    max-width: 650px;
    margin: 2rem auto 0;
    background: white;
    padding: 0.4rem;
    border-radius: 999px;
    border: 1px solid var(--line);
}
.search-form input {
    border: 0;
    background: none;
    flex: 1;
    padding: 0 1.2rem;
    min-width: 0;
}
.search-form input:focus {
    outline: 0;
}
.category-nav {
    position: sticky;
    top: 82px;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.category-nav .container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    overflow: auto;
    padding: 1rem 0;
}
.category-nav a {
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}
.catalog-section {
    scroll-margin-top: 140px;
}
.catalog-section:nth-of-type(even) {
    background: var(--cream);
}
.empty-state {
    grid-column: 1/-1;
    padding: 3rem;
    border: 1px dashed var(--line);
    text-align: center;
}
.breadcrumbs {
    padding-top: 2rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.8rem;
}
.detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
}
.main-product-image {
    height: 610px;
    border-radius: var(--radius);
    background: linear-gradient(140deg, #ead1d2, #c7d0bd);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-product-image > span {
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff6ed;
}
.thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 0.7rem;
}
.thumbs img {
    height: 110px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.detail-copy h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin: 0.6rem 0;
}
.lead {
    font-size: 1.1rem;
    color: var(--muted);
}
.detail-price {
    font:
        2rem "DM Serif Display",
        serif;
    color: var(--rose-dark);
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.rich-text {
    padding: 1.5rem 0;
    color: var(--muted);
}
.availability-note {
    background: var(--cream);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}
.availability-note p {
    font-size: 0.82rem;
    margin: 0;
}
.microcopy {
    display: block;
    text-align: center;
    color: var(--muted);
    margin-top: 0.8rem;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.story-art {
    height: 580px;
    border-radius: 220px 220px 20px 20px;
    background: linear-gradient(140deg, #b87982, #d8b6b2 48%, #89977f);
    display: grid;
    place-items: center;
    color: #fff3e9;
    font-size: 15rem;
    position: relative;
}
.story-art small {
    position: absolute;
    bottom: 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.values article {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}
.values strong {
    display: block;
    font:
        2rem "DM Serif Display",
        serif;
    color: var(--rose-dark);
}
.values span {
    font-size: 0.75rem;
    color: var(--muted);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr;
    gap: 2rem;
}
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(77, 50, 46, 0.04);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.form-grid .full {
    grid-column: 1/-1;
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--ivory);
    border-radius: 10px;
    padding: 0.75rem;
    color: var(--brown);
}
textarea {
    resize: vertical;
}
.contact-card {
    background: var(--sage);
    color: white;
    border-radius: var(--radius);
    padding: 2.2rem;
}
.contact-card .eyebrow {
    color: #e6eddf;
}
.contact-card dl {
    margin: 2rem 0 0;
}
.contact-card dt {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #dbe4d6;
    margin-top: 1.2rem;
}
.contact-card dd {
    margin: 0.2rem 0;
}
.site-footer {
    background: #292421;
    color: #d9cec7;
    padding: 70px 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}
.footer-grid h2 {
    font:
        600 0.7rem "DM Sans",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
}
.footer-grid a,
.footer-grid span {
    display: block;
    margin: 0.4rem 0;
    font-size: 0.86rem;
}
.copyright {
    border-top: 1px solid #4a403b;
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.72rem;
    color: #8f827c;
}
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream), var(--blush));
    display: grid;
    place-items: center;
    padding: 2rem;
}
.login-card {
    width: min(450px, 100%);
    background: #fff;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}
.login-card .eyebrow {
    display: block;
    margin-top: 2.5rem;
}
.login-card h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}
.login-card label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 1rem 0;
}
.check {
    flex-direction: row !important;
    align-items: center;
}
.check input {
    width: auto;
}
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.alert.success {
    background: #e2eddf;
    color: #365034;
}
.alert.error {
    background: #f6dfe1;
    color: #723b43;
}
.admin-body {
    background: #f4f0eb;
    min-height: 100vh;
}
.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 250px;
    background: #302925;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    color: #e3d8d2;
}
.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 3rem 0 auto;
}
.admin-sidebar nav a {
    padding: 0.7rem;
    border-radius: 8px;
}
.admin-sidebar nav a:hover {
    background: #493e38;
}
.admin-main {
    margin-left: 250px;
    padding: 2.5rem;
    max-width: 1500px;
}
.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.admin-top h1 {
    font-size: 2.5rem;
    margin: 0.3rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid var(--line);
}
.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
}
.stat-card strong {
    font:
        2.3rem "DM Serif Display",
        serif;
    color: var(--rose-dark);
}
.admin-section {
    margin-top: 2rem;
}
.admin-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}
.admin-section-head h2 {
    font-size: 1.7rem;
    margin: 0;
}
.table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
th,
td {
    padding: 1rem;
    border-bottom: 1px solid #eee4dc;
    font-size: 0.83rem;
}
th {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    color: var(--muted);
    background: #fbf9f5;
}
.status {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.68rem;
}
.status.on {
    background: #e1ebdf;
    color: #44603e;
}
.status.off {
    background: #eee7e2;
    color: #76665e;
}
.actions {
    display: flex;
    gap: 0.8rem;
}
.actions form {
    display: inline;
}
.actions button {
    border: 0;
    background: transparent;
    color: #a63f4c;
    cursor: pointer;
}
.table-sub {
    display: block;
    color: var(--muted);
}
.admin-form {
    max-width: 980px;
}
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}
.pagination nav > div:first-child {
    display: none;
}
.pagination svg {
    width: 18px;
}
.pagination nav > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}
.pagination nav span,
.pagination nav a {
    display: inline-flex;
    padding: 0.35rem;
}
.pagination nav p {
    margin: 0;
}
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--ivory);
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--line);
    }
    .main-nav.open {
        display: flex;
    }
    .menu-toggle {
        display: grid;
        place-items: center;
    }
    .hero {
        padding: 0;
    }
    .hero-full-overlay {
        min-height: 520px;
        background: linear-gradient(
            180deg,
            rgba(255, 248, 246, 0.88) 0%,
            rgba(255, 248, 246, 0.78) 55%,
            rgba(255, 248, 246, 0.45) 100%
        );
    }
    .hero-petal {
        display: none;
    }
    .service-ribbon-inner > div {
        padding-inline: 1rem;
    }
    .hero-full-content {
        padding: 3rem 0;
    }
    .hero-copy,
    .hero-copy p {
        max-width: 100%;
    }
    .hero-copy h1 {
        font-size: clamp(2.4rem, 6vw, 3.8rem);
    }
    .hero-actions {
        margin-top: 1.25rem;
    }
    .button-small {
        padding: 0.7rem 0.98rem;
        font-size: 0.8rem;
    }
    .hero-page {
        padding: 18px 0 0;
    }
    .hero-page .hero-full-media,
    .hero-page .hero-full-overlay {
        position: absolute;
        inset: 18px;
        border-radius: 24px;
    }
    .hero-page .hero-full-overlay {
        min-height: 420px;
        padding: 0 18px;
    }
    .hero-page .hero-full-content {
        padding: 2.25rem 0;
    }
    .hero-page .hero-copy h1 {
        font-size: clamp(2.2rem, 5.4vw, 3.4rem);
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid:before {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-sidebar {
        position: static;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .admin-sidebar nav {
        margin: 0;
        flex-direction: row;
        overflow: auto;
    }
    .admin-sidebar form {
        margin-left: auto;
    }
    .admin-main {
        margin: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid > div:first-child {
        grid-column: 1/-1;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }
    .section {
        padding: 70px 0;
    }
    .hero-full-overlay {
        min-height: 600px;
        align-items: flex-end;
        background: linear-gradient(
            180deg,
            rgba(255, 248, 246, 0.1) 0%,
            rgba(255, 248, 246, 0.7) 42%,
            rgba(255, 248, 246, 0.97) 76%,
            rgba(255, 248, 246, 1) 100%
        );
    }
    .hero-full-content {
        padding: 2.5rem 0;
    }
    .hero-copy h1 {
        font-size: clamp(2.75rem, 12vw, 4rem);
    }
    .hero-copy p {
        font-size: 0.95rem;
    }
    .hero-actions {
        align-items: stretch;
    }
    .button-small {
        width: 100%;
        padding: 0.68rem 1rem;
    }
    .hero-primary {
        width: 100%;
    }
    .hero-proof {
        margin-top: 1.4rem;
    }
    .service-ribbon-inner {
        grid-template-columns: 1fr;
        padding: 0.4rem 0;
    }
    .service-ribbon-inner > div {
        justify-content: flex-start;
        min-height: auto;
        padding: 0.75rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .service-ribbon-inner > div:last-child {
        border-bottom: 0;
    }
    .hero-page {
        padding: 12px 0 0;
    }
    .hero-page .hero-full-media,
    .hero-page .hero-full-overlay {
        position: absolute;
        inset: 12px;
        border-radius: 20px;
    }
    .hero-page .hero-full-overlay {
        min-height: 380px;
        padding: 0 12px;
    }
    .hero-page .hero-full-content {
        padding: 2rem 0;
    }
    .hero-page .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .section-heading {
        align-items: start;
        flex-direction: column;
    }
    .category-grid,
    .product-grid,
    .form-grid,
    .values {
        grid-template-columns: 1fr;
    }
    .category-card {
        min-height: 310px;
    }
    .product-image {
        height: 320px;
    }
    .page-hero {
        padding: 70px 0;
    }
    .category-nav .container {
        justify-content: flex-start;
    }
    .main-product-image {
        height: 430px;
    }
    .form-grid .full {
        grid-column: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > div:first-child {
        grid-column: auto;
    }
    .admin-sidebar {
        display: block;
    }
    .admin-sidebar nav {
        margin: 1rem 0;
    }
    .admin-sidebar form {
        display: none;
    }
    .admin-main {
        padding: 1rem;
    }
    .admin-top {
        align-items: start;
    }
    .admin-top > span {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .admin-section-head {
        align-items: flex-start;
        gap: 1rem;
    }
    .login-card {
        padding: 2rem;
    }
}

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

/* Palette inspired by the uploaded Lilybouquet reference:
   warm ivory, petal blush, dusty rose, raspberry, and burgundy. */
body {
    background: #fffaf8;
}
:focus-visible {
    outline-color: #dc6682;
}
.skip-link {
    background: #fffaf8;
    color: #94364f;
}
.site-header {
    background: rgba(255, 250, 248, 0.92);
    border-bottom-color: rgba(239, 212, 217, 0.8);
}
.brand {
    color: #bd4967;
}
.brand span {
    color: #dc6682;
}
.button {
    background: #d95375;
    border-color: #d95375;
}
.button:hover {
    background: #bd4967;
}
.button-secondary {
    color: #bd4967;
    background: transparent;
}
.button-light {
    background: #fffaf8;
    color: #b74461;
    border-color: #fffaf8;
}
.button-light:hover {
    background: #fff;
    color: #94364f;
}
.text-link,
.eyebrow,
em {
    color: #c94f6e;
}
.hero {
    background: linear-gradient(115deg, #fff8f5, #fbe9eb);
}
.arch {
    background: linear-gradient(150deg, #efa9b9, #f8cbd3 48%, #de7d95);
}
.arch:after {
    background: linear-gradient(#b64260, #d96884);
}
.bouquet-mark {
    text-shadow: 0 2px 12px rgba(133, 43, 67, 0.35);
}
.petal {
    color: #fff7f5;
    text-shadow: 0 12px 24px rgba(151, 55, 79, 0.2);
}
.p2 {
    color: #fff;
}
.p3 {
    color: #f7b9c6;
}
.art-note {
    background: #fffaf8;
    color: #bd4967;
}
.cat-1 {
    background: #f7c9d1;
}
.cat-2 {
    background: #f9dce1;
}
.cat-3 {
    background: #f5d1d4;
}
.cat-4 {
    background: #dc7890;
    color: #fff;
}
.featured-section {
    background: #fff3f1;
}
.product-card {
    background: #fffaf8;
}
.product-image,
.main-product-image {
    background: linear-gradient(140deg, #f6cbd2, #e997aa);
}
.flower-placeholder,
.main-product-image > span {
    color: #fff7f5;
    text-shadow: 0 8px 24px rgba(145, 49, 75, 0.18);
}
.badge {
    background: #fffaf8;
    color: #bd4967;
}
.price,
.detail-price {
    color: #bd4967;
}
.icon-button {
    background: #d95375;
}
.whatsapp-button {
    background: #25d366;
    color: #fff;
}
.whatsapp-button:hover {
    background: #128c7e;
}
.whatsapp-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.steps {
    background: #fffaf8;
}
.steps-grid strong {
    color: #f3c4cd;
}
.steps-grid article > span {
    color: #dc6682;
}
.cta {
    background: linear-gradient(105deg, #d96f89, #e997aa);
}
.cta em,
.cta .eyebrow {
    color: #fff1f3;
}
.cta:before,
.cta:after {
    color: rgba(255, 255, 255, 0.09);
}
.page-hero {
    background: #fff3f1;
}
.search-form,
.category-nav {
    background: #fffaf8;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    padding-top: 2rem;
}
.catalog-sidebar {
    position: sticky;
    top: 148px;
    z-index: 10;
}
.filter-panel {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    box-shadow: 0 12px 30px rgba(77, 50, 46, 0.05);
}
.filter-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.7rem;
    margin-bottom: 20px;
}
.filter-heading h2 {
    margin: 0.35rem 0 0;
    font-size: 1.8rem;
}
.filter-coming-soon {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--blush);
    color: var(--rose-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.filter-note {
    margin: 0.65rem 0 1.35rem;
    color: var(--muted);
    font-size: 0.88rem;
}
.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brown);
}
.filter-field select,
.filter-field input {
    min-height: 44px;
    background: #fff;
    border-color: var(--line);
    font-size: 0.84rem;
}
.filter-field select:disabled,
.filter-field input:disabled {
    cursor: not-allowed;
    color: var(--muted);
    opacity: 0.72;
}
.filter-checks {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--muted);
    font-size: 0.78rem;
}
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.filter-actions button {
    width: 100%;
}
.filter-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}
.catalog-results .catalog-section {
    padding: 0 0 5rem;
    scroll-margin-top: 148px;
}
.catalog-results .catalog-section + .catalog-section {
    padding-top: 3rem;
}
.catalog-results .section-heading {
    margin-bottom: 2rem;
}
.catalog-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}
.catalog-results .product-card {
    min-width: 0;
}
.catalog-results .product-image {
    height: 220px;
}
.catalog-results .product-body {
    padding: 1rem;
}
.catalog-results .product-body h3 {
    font-size: 1.3rem;
}
.catalog-results .product-body p {
    min-height: 44px;
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.catalog-results .card-actions {
    margin-top: 0.8rem;
    padding-top: 0.75rem;
}
.catalog-results .icon-button {
    width: 36px;
    height: 36px;
}
.catalog-results .whatsapp-button svg {
    width: 19px;
    height: 19px;
}
.catalog-results .section-heading {
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}
.catalog-results .section-heading > div {
    min-width: 0;
}
.catalog-results .section-heading h2 {
    margin: 0.35rem 0 0;
}
.catalog-results .section-heading > span {
    flex: 0 0 auto;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}
.price-range-field {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.9rem 0;
}
.price-range-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brown);
}
.price-range-label > span:first-child {
    width: 100%;
    margin-bottom: 0.15rem;
}
.price-range-label output {
    font-size: 0.8rem;
    color: var(--rose-dark);
    font-weight: 700;
}
.price-range-control {
    position: relative;
    height: 30px;
    margin: 0.2rem 0.55rem 0;
}
.price-range-track {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 99px;
    background: #ead8d7;
}
.price-range-track span {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    background: var(--rose);
}
.price-range-control input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 30px;
    margin: 0;
    background: none;
    pointer-events: none;
    appearance: none;
}
.price-range-control input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid var(--ivory);
    border-radius: 50%;
    background: var(--rose-dark);
    box-shadow: 0 1px 4px rgba(77, 50, 46, 0.25);
    pointer-events: auto;
    appearance: none;
    cursor: grab;
}
.price-range-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 3px solid var(--ivory);
    border-radius: 50%;
    background: var(--rose-dark);
    box-shadow: 0 1px 4px rgba(77, 50, 46, 0.25);
    pointer-events: auto;
    cursor: grab;
}
.price-range-control input[type="range"]:active::-webkit-slider-thumb {
    cursor: grabbing;
}
.price-range-hint {
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
}
.catalog-section:nth-of-type(even) {
    background: #fff3f1;
}
.filter-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}
@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: static;
    }
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .filter-checks {
        grid-column: span 2;
        flex-direction: row;
    }
    .filter-actions {
        flex-direction: row;
    }
    .filter-actions button {
        width: auto;
        flex: 1;
    }
}
@media (max-width: 600px) {
    .catalog-layout {
        padding-top: 1.25rem;
    }
    .filter-panel {
        padding: 1.25rem;
    }
    .filter-grid {
        grid-template-columns: 1fr;
    }
    .filter-checks {
        grid-column: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 0.5rem;
    }
    .filter-check {
        width: 100%;
    }
    .catalog-results .section-heading {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }
    .catalog-results .section-heading h2 {
        font-size: 2rem;
    }
    .catalog-results .section-heading > span {
        font-size: 0.65rem;
        padding: 0.35rem 0.55rem;
    }
    .catalog-results .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
    .catalog-results .product-image {
        height: 165px;
    }
    .catalog-results .product-body {
        padding: 0.8rem;
    }
    .catalog-results .product-body h3 {
        font-size: 1.12rem;
    }
    .catalog-results .product-body p {
        min-height: 38px;
        font-size: 0.74rem;
    }
    .catalog-results .product-body .price {
        font-size: 1.05rem;
    }
    .catalog-results .card-actions {
        font-size: 0.72rem;
    }
    .catalog-results .catalog-section {
        padding-bottom: 3rem;
    }
}
.availability-note {
    background: #fff0f1;
}
.story-art {
    background: linear-gradient(140deg, #c65370, #e69aaa 48%, #f4c5cd);
    color: #fff7f5;
}
.panel {
    background: #fffaf8;
    box-shadow: 0 10px 30px rgba(145, 49, 75, 0.06);
}
input,
select,
textarea {
    background: #fffaf8;
}
.contact-card {
    background: linear-gradient(145deg, #bd4967, #96364f);
}
.contact-card .eyebrow,
.contact-card dt {
    color: #f9dce2;
}
.site-footer {
    background: linear-gradient(110deg, #a53c58, #8f314a);
    color: #f6dbe1;
}
.footer-grid h2 {
    color: #fff7f8;
}
.copyright {
    border-top-color: #bd5a73;
    color: #efbdc8;
}
.login-page {
    background: linear-gradient(135deg, #fff5f2, #f3c4cd);
}
.login-card {
    background: #fffaf8;
}
.alert.success {
    background: #f6dce1;
    color: #863047;
}
.alert.error {
    background: #f8d8df;
    color: #8f314a;
}
.admin-body {
    background: #fff1ef;
}
.admin-sidebar {
    background: linear-gradient(180deg, #9f3953, #843047);
    color: #f7dfe4;
}
.admin-sidebar nav a:hover {
    background: #b84b68;
}
.stat-card,
.table-wrap {
    background: #fffaf8;
}
.stat-card strong {
    color: #b74461;
}
th,
td {
    border-bottom-color: #f2dce0;
}
th {
    background: #fff4f3;
}
.status.on {
    background: #f5d4db;
    color: #96364f;
}
.status.off {
    background: #f4e5e7;
    color: #756469;
}
.actions button {
    color: #b74461;
}
@media (max-width: 900px) {
    .main-nav {
        background: #fffaf8;
    }
}

.testimonials-section {
    background: linear-gradient(180deg, #fff, #fff6f4);
}
.slider-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.slider-button {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--rose-dark);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(145, 49, 75, 0.08);
    transition: 0.2s;
}
.slider-button:hover {
    transform: translateY(-1px);
    background: var(--cream);
}
.testimonials-shell {
    position: relative;
}
.testimonials-shell:before,
.testimonials-shell:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 28px;
}
.testimonials-shell:before {
    background:
        radial-gradient(
            circle at top left,
            rgba(220, 102, 130, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(199, 208, 189, 0.14),
            transparent 30%
        );
}
.testimonials-track {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0 1.25rem;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar {
    height: 10px;
}
.testimonials-track::-webkit-scrollbar-thumb {
    background: rgba(180, 71, 97, 0.22);
    border-radius: 999px;
}
.testimonial-card {
    scroll-snap-align: start;
    background: linear-gradient(180deg, #fff, #fffaf8);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.testimonial-card:before {
    content: "“";
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font:
        7rem "DM Serif Display",
        serif;
    color: rgba(220, 102, 130, 0.1);
    line-height: 1;
}
.testimonial-rating {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: #d98a54;
}
.testimonial-card p {
    margin: 1rem 0 1.5rem;
    color: var(--brown);
    font-size: 1.02rem;
    line-height: 1.8;
}
.testimonial-card footer {
    display: grid;
    gap: 0.15rem;
}
.testimonial-card strong {
    font-size: 1.05rem;
    color: var(--rose-dark);
}
.testimonial-card span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Catalog experience */
.catalog-hero {
    min-height: 610px;
    background: radial-gradient(circle at 78% 28%, rgba(243, 196, 205, 0.55), transparent 26%), var(--cream);
}
.catalog-hero .hero-full-overlay {
    min-height: 562px;
    background: linear-gradient(90deg, rgba(255, 248, 246, 0.97) 0%, rgba(255, 248, 246, 0.9) 48%, rgba(255, 248, 246, 0.62) 100%);
}
.catalog-hero .hero-full-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 4.5rem;
    text-align: left;
}
.catalog-hero .hero-copy {
    max-width: 590px;
    margin: 0;
}
.catalog-hero .hero-copy h1 {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    margin: 0.9rem 0 1.1rem;
}
.catalog-search {
    max-width: 560px;
    margin: 1.75rem 0 0;
    padding: 0.45rem;
    box-shadow: 0 16px 42px rgba(145, 49, 75, 0.1);
}
.catalog-search .button {
    gap: 0.45rem;
    min-width: 104px;
}
.search-clear {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    align-self: center;
    border-radius: 50%;
    color: var(--muted);
    font-size: 1.25rem;
}
.search-clear:hover {
    background: var(--cream);
    color: var(--rose-dark);
}
.search-feedback {
    margin: 0.75rem 0 0 !important;
    font-size: 0.78rem !important;
}
.catalog-hero-showcase {
    height: 430px;
    position: relative;
}
.catalog-hero-card {
    position: absolute;
    display: block;
    overflow: hidden;
    border: 7px solid rgba(255, 250, 248, 0.94);
    border-radius: 130px 130px 24px 24px;
    background: linear-gradient(145deg, #f6cbd2, #e997aa);
    box-shadow: 0 22px 50px rgba(107, 42, 61, 0.17);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-hero-card:hover {
    z-index: 5;
    transform: translateY(-8px) rotate(0deg);
}
.catalog-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.catalog-hero-card:hover img {
    transform: scale(1.05);
}
.catalog-hero-card > span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    font: 1.2rem "DM Serif Display", serif;
    letter-spacing: -0.02em;
}
.catalog-hero-card small {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    overflow: hidden;
    padding: 0.6rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 250, 248, 0.92);
    color: var(--brown);
    font-size: 0.67rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}
.catalog-hero-card-1 {
    top: 20px;
    left: 7%;
    z-index: 2;
    width: 210px;
    height: 300px;
    transform: rotate(-7deg);
}
.catalog-hero-card-2 {
    top: 72px;
    right: 0;
    z-index: 3;
    width: 200px;
    height: 286px;
    transform: rotate(7deg);
}
.catalog-hero-card-3 {
    right: 24%;
    bottom: 0;
    z-index: 4;
    width: 166px;
    height: 220px;
    transform: rotate(2deg);
}
.catalog-showcase-note {
    position: absolute;
    top: 2px;
    right: 1rem;
    color: var(--rose-dark);
    font: italic 1rem "DM Serif Display", serif;
    transform: rotate(5deg);
}
.category-nav {
    box-shadow: 0 10px 30px rgba(108, 45, 63, 0.05);
}
.category-nav .container {
    gap: 0.65rem;
    padding: 0.75rem 0;
}
.category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.category-nav a > span {
    color: var(--rose);
    font-size: 1rem;
}
.category-nav a small {
    min-width: 20px;
    padding: 0.08rem 0.35rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--rose-dark);
    font-size: 0.63rem;
    text-align: center;
}
.category-nav a:hover,
.category-nav a.active {
    border-color: var(--line);
    background: var(--cream);
    color: var(--rose-dark);
}
.filter-panel {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 110% -10%, rgba(243, 196, 205, 0.48), transparent 34%), var(--ivory);
}
.filter-heading {
    padding-right: 1.2rem;
}
.filter-result-total {
    display: inline-flex;
    align-items: baseline;
    gap: 0.28rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--muted);
    font-size: 0.68rem;
}
.filter-result-total strong {
    color: var(--rose-dark);
    font-size: 0.85rem;
}
.catalog-results .catalog-section {
    position: relative;
}
.catalog-results .section-heading > div > p {
    max-width: 520px;
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}
.catalog-results .section-heading > span strong {
    color: var(--rose-dark);
}
.catalog-filtered .product-card:not([hidden]) {
    animation: catalog-card-in 0.38s ease both;
}
.catalog-filter-empty {
    background: var(--cream);
}
@keyframes catalog-card-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 900px) {
    .catalog-hero {
        min-height: 560px;
    }
    .catalog-hero .hero-full-overlay {
        min-height: 512px;
    }
    .catalog-hero .hero-full-content {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 2rem;
    }
    .catalog-hero-showcase {
        height: 340px;
    }
    .catalog-hero-card-1 {
        width: 155px;
        height: 230px;
    }
    .catalog-hero-card-2 {
        width: 150px;
        height: 218px;
    }
    .catalog-hero-card-3 {
        width: 130px;
        height: 175px;
    }
}
@media (max-width: 600px) {
    .catalog-hero {
        min-height: 660px;
    }
    .catalog-hero .hero-full-overlay {
        min-height: 636px;
        align-items: stretch;
    }
    .catalog-hero .hero-full-content {
        display: block;
        padding-top: 2.4rem;
        text-align: center;
    }
    .catalog-hero .hero-copy {
        margin: 0 auto;
    }
    .catalog-hero .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }
    .catalog-hero .hero-kicker {
        font-size: 0.62rem;
    }
    .catalog-search {
        margin-top: 1.3rem;
    }
    .catalog-search .button {
        width: auto;
        min-width: 84px;
        padding-inline: 0.85rem;
    }
    .catalog-hero-showcase {
        height: 190px;
        max-width: 340px;
        margin: 1.2rem auto 0;
    }
    .catalog-hero-card {
        border-width: 4px;
        border-radius: 70px 70px 16px 16px;
    }
    .catalog-hero-card-1 {
        top: 8px;
        left: 9%;
        width: 105px;
        height: 150px;
    }
    .catalog-hero-card-2 {
        top: 18px;
        right: 8%;
        width: 102px;
        height: 145px;
    }
    .catalog-hero-card-3 {
        right: calc(50% - 55px);
        bottom: 0;
        width: 110px;
        height: 135px;
    }
    .catalog-hero-card small {
        right: 5px;
        bottom: 5px;
        left: 5px;
        padding: 0.35rem 0.45rem;
        font-size: 0.55rem;
    }
    .catalog-showcase-note {
        display: none;
    }
    .category-nav .container {
        padding: 0.65rem 0;
    }
    .category-nav a {
        padding: 0.45rem 0.65rem;
    }
    .catalog-results .section-heading {
        align-items: flex-start;
    }
    .catalog-results .section-heading > div > p {
        display: none;
    }
}

/* Contact experience */
.contact-hero {
    min-height: 550px;
}
.contact-hero .hero-full-overlay {
    min-height: 502px;
    background: linear-gradient(90deg, rgba(255, 248, 246, 0.96) 0%, rgba(255, 248, 246, 0.88) 46%, rgba(255, 248, 246, 0.08) 78%);
}
.contact-hero .hero-full-content {
    text-align: left;
}
.contact-hero .hero-copy {
    max-width: 650px;
    margin: 0;
}
.contact-hero .hero-copy h1 {
    max-width: 640px;
    margin: 0.9rem 0 1.15rem;
    font-size: clamp(3.3rem, 5.4vw, 5.7rem);
}
.contact-hero .hero-copy p {
    max-width: 570px;
}
.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
}
.contact-hero-actions .button {
    gap: 0.7rem;
}
.contact-hero-actions .button span {
    transition: transform 0.2s ease;
}
.contact-hero-actions .button:hover span {
    transform: translateY(3px);
}
.contact-hero-actions > span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 600;
}
.contact-hero-actions > span i,
.studio-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f9b64;
    box-shadow: 0 0 0 4px rgba(79, 155, 100, 0.13);
}
.contact-channels {
    position: relative;
    z-index: 5;
    margin-top: -36px;
}
.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    box-shadow: 0 20px 55px rgba(112, 47, 66, 0.12);
}
.contact-channel {
    min-width: 0;
    min-height: 112px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1.3rem 1.5rem;
    border-right: 1px solid var(--line);
    transition: background 0.2s ease;
}
.contact-channel:last-child {
    border-right: 0;
}
.contact-channel:hover {
    background: var(--cream);
}
.contact-channel-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--rose-dark);
    font: 1rem "DM Serif Display", serif;
}
.contact-channel-primary .contact-channel-icon {
    background: #25d366;
    color: #fff;
}
.contact-channel small,
.contact-channel strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact-channel small {
    margin-bottom: 0.12rem;
    color: var(--muted);
    font-size: 0.65rem;
}
.contact-channel strong {
    color: var(--brown);
    font-size: 0.82rem;
}
.contact-channel b {
    color: var(--rose-dark);
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}
.contact-channel:hover b {
    transform: translate(2px, -2px);
}
.contact-section {
    scroll-margin-top: 82px;
    padding-top: 95px;
    background: linear-gradient(180deg, var(--ivory) 0%, #fff3f1 100%);
}
.contact-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.3rem;
}
.contact-intro h2 {
    margin: 0.6rem 0 0;
}
.contact-intro > p {
    max-width: 430px;
    margin-bottom: 0.6rem;
    color: var(--muted);
}
.contact-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    align-items: stretch;
}
.contact-form {
    padding: 2.3rem;
    box-shadow: 0 20px 60px rgba(112, 47, 66, 0.08);
}
.contact-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}
.contact-form-head h3 {
    margin: 0.35rem 0 0;
    font-size: 2rem;
}
.contact-form-step {
    color: var(--blush);
    font: 2.8rem "DM Serif Display", serif;
    line-height: 1;
}
.contact-form .form-grid {
    gap: 1.35rem;
}
.contact-form .form-grid label {
    gap: 0.55rem;
}
.contact-form .form-grid label > span:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
}
.contact-form .form-grid label > span small {
    color: var(--muted);
    font-weight: 400;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    border-color: transparent;
    background: #fff6f4;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: var(--line);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--rose);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(220, 102, 130, 0.1);
}
.field-hint {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 400;
}
.field-hint > span:first-child {
    max-width: 80%;
}
.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}
.contact-form-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}
.contact-form-footer p span {
    color: var(--rose);
}
.contact-form-footer .button {
    gap: 0.7rem;
}
.contact-studio {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 2.3rem;
    background: linear-gradient(150deg, #9f3b56 0%, #ca5a77 62%, #de8398 100%);
    box-shadow: 0 20px 55px rgba(126, 45, 69, 0.16);
}
.contact-studio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.studio-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.62rem;
    white-space: nowrap;
}
.studio-status i {
    background: #a7e2b3;
    box-shadow: 0 0 0 3px rgba(167, 226, 179, 0.15);
}
.contact-studio h2 {
    margin: 2.2rem 0 1rem;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
}
.contact-studio-lead {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.85rem;
}
.contact-studio dl {
    display: grid;
    gap: 0;
    margin: 1.2rem 0 2rem;
}
.contact-studio dl > div {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.contact-studio dt {
    margin: 0 0 0.25rem;
    color: rgba(255, 255, 255, 0.6);
}
.contact-studio dd {
    font-size: 0.88rem;
}
.contact-studio-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: auto;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.11);
}
.contact-studio-note > span {
    font-size: 1.2rem;
}
.contact-studio-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    line-height: 1.55;
}
@media (max-width: 900px) {
    .contact-channel-grid {
        grid-template-columns: 1fr;
    }
    .contact-channel {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .contact-channel:last-child {
        border-bottom: 0;
    }
    .contact-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .contact-hero {
        min-height: 580px;
    }
    .contact-hero .hero-full-overlay {
        min-height: 556px;
        align-items: flex-end;
        background: linear-gradient(180deg, rgba(255, 248, 246, 0.08) 0%, rgba(255, 248, 246, 0.72) 40%, rgba(255, 248, 246, 0.98) 72%);
    }
    .contact-hero .hero-full-content {
        padding-bottom: 3rem;
        text-align: left;
    }
    .contact-hero .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }
    .contact-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .contact-hero-actions .button {
        width: 100%;
    }
    .contact-channels {
        margin-top: 1rem;
    }
    .contact-channel {
        padding: 1rem;
    }
    .contact-section {
        padding-top: 70px;
    }
    .contact-intro {
        margin-bottom: 2.2rem;
    }
    .contact-form,
    .contact-studio {
        padding: 1.35rem;
    }
    .contact-form .form-grid {
        gap: 1rem;
    }
    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }
    .contact-form-footer .button {
        width: 100%;
    }
    .contact-studio-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* About experience */
.about-hero {
    min-height: 610px;
}
.about-hero .hero-full-overlay {
    min-height: 562px;
    background: linear-gradient(90deg, rgba(255, 248, 246, 0.97) 0%, rgba(255, 248, 246, 0.88) 51%, rgba(255, 248, 246, 0.2) 82%);
}
.about-hero .hero-full-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 5rem;
    text-align: left;
}
.about-hero .hero-copy {
    max-width: 660px;
    margin: 0;
}
.about-hero .hero-copy h1 {
    margin: 0.9rem 0 1.15rem;
    font-size: clamp(3.3rem, 5.5vw, 5.8rem);
}
.about-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--rose-dark);
    color: var(--rose-dark);
    font-size: 0.78rem;
    font-weight: 600;
}
.about-scroll-link span {
    transition: transform 0.2s ease;
}
.about-scroll-link:hover span {
    transform: translateY(3px);
}
.about-hero-quote {
    position: relative;
    margin: 6rem 0 0;
    padding: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: rgba(255, 250, 248, 0.72);
    box-shadow: 0 18px 45px rgba(94, 38, 54, 0.12);
    backdrop-filter: blur(12px);
}
.about-hero-quote > span {
    position: absolute;
    top: -1.5rem;
    left: 1rem;
    color: var(--rose);
    font: 5rem "DM Serif Display", serif;
    line-height: 1;
}
.about-hero-quote p {
    margin: 0.65rem 0 1rem;
    font: 1.25rem/1.5 "DM Serif Display", serif;
}
.about-hero-quote footer {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-story-section {
    scroll-margin-top: 82px;
    background: var(--ivory);
}
.about-story-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 7rem;
}
.about-story-visual {
    position: relative;
    padding: 0 0 3.5rem 3.5rem;
}
.about-story-visual:before {
    content: "";
    position: absolute;
    top: 3rem;
    bottom: 0;
    left: 0;
    width: 72%;
    border-radius: 180px 180px 20px 20px;
    background: var(--cream);
}
.about-story-image {
    position: relative;
    z-index: 1;
    height: 590px;
    overflow: hidden;
    border-radius: 230px 230px 24px 24px;
    box-shadow: 0 24px 60px rgba(112, 47, 66, 0.13);
}
.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-story-visual:hover img {
    transform: scale(1.035);
}
.about-image-caption {
    position: absolute;
    right: -1.5rem;
    bottom: 0;
    z-index: 2;
    max-width: 280px;
    margin: 0;
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--ivory);
    box-shadow: 0 14px 35px rgba(112, 47, 66, 0.1);
    color: var(--muted);
    font-size: 0.72rem;
}
.about-image-caption span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--rose-dark);
    font: 1.25rem "DM Serif Display", serif;
}
.about-story-copy h2 {
    margin: 0.7rem 0 1.5rem;
}
.about-story-copy > p {
    color: var(--muted);
}
.about-story-copy .about-lead {
    color: var(--brown);
    font: 1.35rem/1.5 "DM Serif Display", serif;
}
.about-signature {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.about-signature > span {
    color: var(--rose-dark);
    font: italic 2rem "DM Serif Display", serif;
}
.about-signature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.45;
}
.about-values-section {
    background: var(--cream);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.about-values-grid article {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.about-values-grid article:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: var(--shadow);
}
.about-values-grid article > span {
    align-self: flex-end;
    color: var(--blush);
    font: 2.4rem "DM Serif Display", serif;
}
.about-value-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: auto 0 1.3rem;
    border-radius: 50%;
    background: var(--cream);
    color: var(--rose);
    font-size: 2rem;
    transition: transform 0.25s ease;
}
.about-value-word {
    font: 600 0.68rem "DM Sans", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-values-grid article:hover .about-value-icon {
    transform: rotate(-6deg) scale(1.06);
}
.about-values-grid h3 {
    margin: 0 0 0.65rem;
    font-size: 1.8rem;
}
.about-values-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}
.about-process-section {
    background: var(--ivory);
}
.about-process-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 7rem;
}
.about-process-intro {
    position: sticky;
    top: 125px;
    align-self: start;
}
.about-process-intro h2 {
    margin: 0.7rem 0 1rem;
}
.about-process-intro p {
    max-width: 390px;
    color: var(--muted);
}
.about-process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}
.about-process-list li {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}
.about-process-list li:last-child {
    border-bottom: 1px solid var(--line);
}
.about-process-list li > span {
    color: var(--blush);
    font: 2.8rem "DM Serif Display", serif;
}
.about-process-list h3 {
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
}
.about-process-list p {
    max-width: 510px;
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}
.about-closing {
    min-height: 580px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.about-closing-media,
.about-closing-overlay {
    position: absolute;
    inset: 0;
}
.about-closing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-closing:hover .about-closing-media img {
    transform: scale(1.025);
}
.about-closing-overlay {
    background: linear-gradient(90deg, rgba(76, 25, 40, 0.9) 0%, rgba(140, 52, 78, 0.7) 50%, rgba(83, 32, 47, 0.25) 100%);
}
.about-closing-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.about-closing-content .eyebrow {
    color: #ffdbe3;
}
.about-closing-content h2 {
    margin: 0.8rem 0 1rem;
}
.about-closing-content em {
    color: var(--blush);
}
.about-closing-content p {
    max-width: 560px;
    margin: 0 auto 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}
.about-closing-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.about-closing .button-ghost {
    color: #fff;
}
.about-closing .button-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 900px) {
    .about-hero .hero-full-content {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 2.5rem;
    }
    .about-story-grid {
        gap: 3.5rem;
    }
    .about-story-visual {
        padding-left: 1.5rem;
    }
    .about-story-image {
        height: 500px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid article {
        min-height: 260px;
    }
    .about-process-grid {
        gap: 3rem;
    }
}
@media (max-width: 600px) {
    .about-hero {
        min-height: 650px;
    }
    .about-hero .hero-full-overlay {
        min-height: 626px;
        align-items: flex-end;
        background: linear-gradient(180deg, rgba(255, 248, 246, 0.06) 0%, rgba(255, 248, 246, 0.78) 38%, rgba(255, 248, 246, 0.98) 66%);
    }
    .about-hero .hero-full-content {
        display: block;
        padding-bottom: 2.6rem;
    }
    .about-hero .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }
    .about-hero-quote {
        margin: 2.2rem 0 0;
        padding: 1.2rem;
    }
    .about-hero-quote p {
        font-size: 1rem;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .about-story-visual {
        padding: 0 0 3rem 1rem;
    }
    .about-story-image {
        height: 440px;
    }
    .about-image-caption {
        right: 0;
    }
    .about-values-grid article {
        min-height: 280px;
    }
    .about-process-grid {
        grid-template-columns: 1fr;
    }
    .about-process-intro {
        position: static;
    }
    .about-process-list li {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 0.9rem;
    }
    .about-process-list li > span {
        font-size: 2rem;
    }
    .about-closing {
        min-height: 530px;
        padding: 5rem 0;
    }
    .about-closing-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .about-closing-actions .button {
        width: 100%;
    }
}

/* Unified mobile hero layout */
@media (max-width: 600px) {
    .hero:not(.hero-page),
    .hero:not(.hero-page) .hero-full-overlay {
        min-height: max(590px, calc(100svh - 82px));
    }
    .hero:not(.hero-page) .hero-full-overlay {
        align-items: flex-end;
    }
    .hero:not(.hero-page) .hero-full-content {
        padding: 2.4rem 0 2.8rem;
    }
    .hero:not(.hero-page) + .service-ribbon {
        margin-top: -3.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.65rem;
    }
    .hero-actions .button {
        width: 100%;
        min-height: 46px;
    }
    .hero-copy h1,
    .hero-page .hero-copy h1,
    .catalog-hero .hero-copy h1,
    .contact-hero .hero-copy h1,
    .about-hero .hero-copy h1 {
        max-width: 100%;
        margin: 0.75rem 0 0.9rem;
        font-size: clamp(2.6rem, 11.5vw, 3.35rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
        text-wrap: balance;
    }
    .hero-copy p,
    .hero-page .hero-copy p {
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.55;
    }
    .hero-kicker {
        max-width: 100%;
        padding: 0.42rem 0.68rem;
        font-size: 0.6rem;
        line-height: 1.35;
        text-align: left;
    }
    .hero-proof {
        align-items: flex-start;
        gap: 0.75rem;
    }
    .hero-proof p {
        font-size: 0.7rem;
    }
    .hero-page {
        min-height: 0;
        padding-top: 12px;
    }
    .hero-page .hero-full-media {
        inset: 12px 12px 0;
        border-radius: 20px;
    }
    .hero-page .hero-full-overlay {
        position: relative;
        inset: auto;
        width: auto;
        height: auto;
        margin: 0 12px;
        padding: 0;
        border-radius: 20px;
    }
    .hero-page .hero-full-content {
        width: min(100% - 28px, 1180px);
        padding: 3rem 0 2.6rem;
    }
    .contact-hero .hero-full-overlay {
        min-height: max(520px, calc(100svh - 106px));
    }
    .contact-hero .hero-full-content {
        display: flex;
        align-items: flex-end;
        min-height: max(520px, calc(100svh - 106px));
        padding: 3rem 0 2.6rem;
    }
    .contact-hero-actions {
        margin-top: 1.35rem;
        gap: 0.7rem;
    }
    .contact-hero-actions .button {
        min-height: 46px;
    }
    .catalog-hero .hero-full-overlay {
        min-height: 0;
        align-items: initial;
    }
    .catalog-hero .hero-full-content {
        min-height: 620px;
        padding: 2.7rem 0 1.5rem;
    }
    .catalog-hero .hero-copy {
        text-align: left;
    }
    .catalog-search {
        margin-top: 1.15rem;
    }
    .catalog-hero-showcase {
        height: 175px;
        margin-top: 1rem;
    }
    .about-hero .hero-full-overlay {
        min-height: 0;
    }
    .about-hero .hero-full-content {
        min-height: 610px;
        padding: 3rem 0 2.2rem;
    }
    .about-hero-quote {
        margin-top: 1.8rem;
        padding: 1.15rem;
    }
    .about-hero-quote > span {
        top: -1.15rem;
        font-size: 4rem;
    }
    .about-hero-quote p {
        margin: 0.5rem 0 0.75rem;
        line-height: 1.45;
    }
}
@media (max-width: 380px) {
    .hero-copy h1,
    .hero-page .hero-copy h1,
    .catalog-hero .hero-copy h1,
    .contact-hero .hero-copy h1,
    .about-hero .hero-copy h1 {
        font-size: 2.45rem;
    }
    .hero-page .hero-full-content {
        width: calc(100% - 24px);
    }
    .catalog-search input {
        padding-inline: 0.7rem;
    }
    .catalog-search .button {
        min-width: 72px;
        padding-inline: 0.65rem;
    }
    .catalog-hero-card-1 {
        left: 4%;
    }
    .catalog-hero-card-2 {
        right: 4%;
    }
}

@media (max-width: 600px) {
    .featured-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
    .featured-section .product-card {
        min-width: 0;
    }
    .featured-section .product-image {
        height: 170px;
    }
    .featured-section .badge {
        top: 0.65rem;
        left: 0.65rem;
        padding: 0.3rem 0.5rem;
        font-size: 0.52rem;
        letter-spacing: 0.07em;
    }
    .featured-section .product-body {
        padding: 0.85rem;
    }
    .featured-section .product-body .eyebrow {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }
    .featured-section .product-body h3 {
        margin: 0.3rem 0;
        font-size: 1.12rem;
    }
    .featured-section .product-body p {
        min-height: 36px;
        margin-bottom: 0.6rem;
        overflow: hidden;
        font-size: 0.72rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .featured-section .price {
        font-size: 1rem;
    }
    .featured-section .price small {
        font-size: 0.55rem;
    }
    .featured-section .card-actions {
        gap: 0.4rem;
        margin-top: 0.7rem;
        padding-top: 0.7rem;
        font-size: 0.68rem;
    }
    .featured-section .icon-button {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }
    .featured-section .whatsapp-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Product detail experience */
.product-breadcrumb-wrap {
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}
.product-breadcrumbs {
    overflow: hidden;
    padding: 1rem 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.product-breadcrumbs a,
.product-breadcrumbs > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-breadcrumbs > span[aria-hidden] {
    color: var(--blush);
}
.product-detail {
    padding-top: 3rem;
    background: linear-gradient(180deg, var(--ivory) 0%, #fff7f5 100%);
}
.product-detail-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 5.5rem);
}
.product-gallery {
    position: sticky;
    top: 110px;
}
.product-gallery-main {
    height: min(680px, calc(100vh - 150px));
    min-height: 540px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(145deg, #f8d8dd, #df8da2);
    box-shadow: 0 20px 55px rgba(114, 46, 66, 0.11);
}
.product-gallery-main img {
    transition: opacity 0.2s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-gallery-main:hover img {
    transform: scale(1.02);
}
.product-gallery-main img.is-changing {
    opacity: 0;
}
.main-product-image > .product-gallery-badge,
.main-product-image > .product-gallery-hint {
    position: absolute;
    z-index: 2;
    padding: 0.5rem 0.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 248, 0.9);
    color: var(--rose-dark);
    font: 600 0.62rem "DM Sans", sans-serif;
    letter-spacing: 0.06em;
    text-shadow: none;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.main-product-image > .product-gallery-badge {
    top: 1rem;
    left: 1rem;
}
.main-product-image > .product-gallery-hint {
    right: 1rem;
    bottom: 1rem;
    color: var(--muted);
    font-size: 0.58rem;
    letter-spacing: 0.02em;
    text-transform: none;
}
.main-product-image > .product-gallery-empty {
    position: static;
}
.product-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.product-thumb {
    height: 94px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 13px;
    background: var(--cream);
    cursor: pointer;
    opacity: 0.68;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.product-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.product-thumb.active {
    border-color: var(--rose);
    opacity: 1;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 250, 248, 0.86);
    box-shadow: 0 20px 55px rgba(114, 46, 66, 0.07);
}
.product-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 600;
}
.product-stock i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f9b64;
    box-shadow: 0 0 0 4px rgba(79, 155, 100, 0.12);
}
.product-info h1 {
    margin: 0.8rem 0 0.9rem;
    font-size: clamp(3rem, 5vw, 5rem);
    text-wrap: balance;
}
.product-info .lead {
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.product-price-block {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.product-price-block .detail-price {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    font-size: 2.1rem;
}
.product-price-block > p {
    max-width: 230px;
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: right;
}
.product-assurances {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 1.5rem 0;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.product-assurances > div {
    min-width: 0;
    padding: 0.85rem;
    border-right: 1px solid var(--line);
}
.product-assurances > div:last-child {
    border-right: 0;
}
.product-assurances span,
.product-assurances strong {
    display: block;
}
.product-assurances span {
    margin-bottom: 0.2rem;
    color: var(--blush);
    font: 1.2rem "DM Serif Display", serif;
}
.product-assurances strong {
    font-size: 0.66rem;
    line-height: 1.35;
}
.product-description {
    padding: 0.5rem 0 0;
}
.product-description h2 {
    margin: 0;
    font-size: 1.45rem;
}
.product-description .rich-text {
    padding: 0.85rem 0 1.2rem;
    font-size: 0.88rem;
    line-height: 1.75;
}
.product-availability {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.product-availability > span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 25px;
    border-radius: 50%;
    background: var(--rose-dark);
    color: #fff;
    font: italic 0.78rem "DM Serif Display", serif;
}
.product-availability strong {
    font-size: 0.78rem;
}
.product-availability p {
    margin-top: 0.2rem;
    line-height: 1.5;
}
.product-order-box {
    padding-top: 0.5rem;
}
.product-order-button {
    gap: 0.7rem;
    box-shadow: 0 14px 30px rgba(183, 68, 97, 0.18);
}
.product-order-button span {
    transition: transform 0.2s ease;
}
.product-order-button:hover span {
    transform: translate(2px, -2px);
}
.product-related .section-heading {
    align-items: end;
}
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }
    .product-gallery-main {
        height: min(680px, 78vw);
        min-height: 480px;
    }
}
@media (max-width: 600px) {
    .product-breadcrumbs {
        gap: 0.45rem;
        font-size: 0.7rem;
    }
    .product-breadcrumbs a:first-child,
    .product-breadcrumbs > span:nth-of-type(1) {
        display: none;
    }
    .product-detail {
        padding: 1rem 0 4rem;
    }
    .product-detail-grid {
        gap: 1rem;
    }
    .product-gallery-main {
        height: min(118vw, 520px);
        min-height: 400px;
        border-radius: 20px;
    }
    .main-product-image > .product-gallery-hint {
        display: none;
    }
    .product-thumbs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scroll-snap-type: x mandatory;
    }
    .product-thumb {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
        scroll-snap-align: start;
    }
    .product-info {
        padding: 1.25rem;
        border-radius: 20px;
    }
    .product-info-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }
    .product-info h1 {
        margin-top: 0.65rem;
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }
    .product-info .lead {
        font-size: 0.95rem;
    }
    .product-price-block {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }
    .product-price-block > p {
        max-width: none;
        text-align: left;
    }
    .product-assurances > div {
        padding: 0.65rem 0.5rem;
    }
    .product-assurances strong {
        font-size: 0.58rem;
    }
    .product-order-button {
        min-height: 48px;
    }
    .product-related .section-heading {
        align-items: flex-start;
    }
}
