/* =========================================================
   LILMEOWGI
   MASTER STOREFRONT STYLESHEET
   Clean / Responsive / Product-first
========================================================= */


/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {

    --lm-purple: #351b3d;
    --lm-purple-dark: #24122b;
    --lm-purple-soft: #54335d;

    --lm-cream: #fffaf7;
    --lm-cream-dark: #f7eee9;

    --lm-pink: #e9b9a8;
    --lm-pink-dark: #c98573;
    --lm-pink-soft: #f5ddd4;

    --lm-lavender: #eee5f1;
    --lm-lavender-dark: #dfd1e4;

    --lm-text: #291a31;
    --lm-muted: #746a75;
    --lm-muted-light: #9b919b;

    --lm-white: #ffffff;

    --lm-border: rgba(53, 27, 61, .10);
    --lm-border-dark: rgba(53, 27, 61, .16);

    --lm-shadow:
        0 20px 60px rgba(53, 27, 61, .08);

    --lm-shadow-hover:
        0 30px 80px rgba(53, 27, 61, .14);

    --lm-radius: 24px;

    --lm-container: 1240px;

    --lm-header-height: 78px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--lm-cream);
    color: var(--lm-text);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: .65;
}

textarea {
    font-family: inherit;
}

::selection {
    background: var(--lm-pink);
    color: var(--lm-purple);
}


/* =========================================================
   CONTAINERS
========================================================= */

.container,
.section,
.story-section,
.product-container {

    width: min(
        calc(100% - 48px),
        var(--lm-container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--lm-purple);
}

p {
    color: var(--lm-muted);
}


/* =========================================================
   GLOBAL BUTTON
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding:
        0 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    background: var(--lm-purple);
    color: #fff;

    font-size: 13px;
    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.btn:hover {

    background: var(--lm-purple-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(53, 27, 61, .16);
}

.btn:active {
    transform: translateY(0);
}

.btn-soft {

    background: var(--lm-pink-soft);
    color: var(--lm-purple);
}

.btn-soft:hover {
    background: var(--lm-pink);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 250, 247, .94);

    border-bottom:
        1px solid var(--lm-border);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

.header-inner {

    width: min(
        calc(100% - 48px),
        var(--lm-container)
    );

    min-height: var(--lm-header-height);

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--lm-purple);

    flex-shrink: 0;
}

.brand-mark {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--lm-purple);

    color: var(--lm-pink);

    font-size: 20px;

    box-shadow:
        0 8px 24px rgba(53, 27, 61, .15);
}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text strong {

    color: var(--lm-purple);

    font-size: 19px;

    font-weight: 900;

    letter-spacing: -.04em;
}

.brand-text small {

    margin-top: 5px;

    color: var(--lm-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.main-nav a {

    position: relative;

    color: var(--lm-purple);

    font-size: 13px;

    font-weight: 650;

    transition:
        color .2s ease;
}

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 2px;

    border-radius: 999px;

    background: var(--lm-pink);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {

    transform:
        scaleX(1);
}

.header-shop-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding:
        0 18px;

    border-radius: 999px;

    background: var(--lm-purple);

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease;
}

.header-shop-btn:hover {

    background: var(--lm-purple-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {

    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--lm-border);

    border-radius: 14px;

    background: #fff;

    color: var(--lm-purple);

    font-size: 20px;
}


/* =========================================================
   GENERIC SECTION
========================================================= */

.section {

    padding-top: 90px;
    padding-bottom: 90px;
}

.section-head {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 35px;
}

.section-head h2 {

    margin: 0;

    font-size:
        clamp(32px, 5vw, 52px);

    line-height: 1;

    letter-spacing: -.055em;
}

.section-head p {

    max-width: 600px;

    margin: 0;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    width: min(
        calc(100% - 48px),
        var(--lm-container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr);

    gap: 45px;

    padding:
        75px 0 85px;
}

.hero h1 {

    max-width: 800px;

    margin: 0;

    color: var(--lm-purple);

    font-size:
        clamp(48px, 8vw, 84px);

    line-height: .94;

    letter-spacing:
        -.065em;

    font-weight: 900;
}

.hero-description {

    max-width: 620px;

    margin-top: 25px;

    color: var(--lm-muted);

    font-size: 18px;

    line-height: 1.7;
}

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}

.hero-feature {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px 13px;

    border:
        1px solid var(--lm-border);

    border-radius: 999px;

    background:
        rgba(255,255,255,.75);

    color: var(--lm-muted);

    font-size: 12px;

    font-weight: 650;
}

.hero-feature span {
    color: var(--lm-purple);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-blob {

    position: absolute;

    width: min(90vw, 470px);
    height: min(90vw, 470px);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #f9e9e2 0%,
            #efd4dc 45%,
            #d8c1db 100%
        );
}

.hero-card {

    position: relative;

    z-index: 2;

    width: min(82vw, 370px);

    aspect-ratio: .82;

    padding: 28px;

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f7e9e5
        );

    box-shadow:
        0 35px 70px rgba(53,27,61,.16);

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(1, minmax(0, 1fr));

    gap: 14px;
}

.category-card {

    position: relative;

    min-height: 155px;

    padding: 20px;

    overflow: hidden;

    border:
        1px solid var(--lm-border);

    border-radius: 22px;

    background: #f7edf1;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.category-card:nth-child(2n) {
    background: #f8eff5;
}

.category-card:nth-child(3n) {
    background: #f8eee7;
}

.category-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--lm-shadow-hover);
}

.category-number {

    color: #a57989;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;
}

.category-card h3 {

    margin:
        20px 0 4px;

    color: var(--lm-purple);

    font-size: 17px;

    line-height: 1.2;
}

.category-card-content > span {

    color: #927182;

    font-size: 10px;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(5px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.category-card:hover
.category-card-content > span {

    opacity: 1;

    transform:
        translateY(0);
}

.category-card-icon {

    position: absolute;

    right: 18px;
    bottom: 12px;

    color:
        rgba(53,27,61,.08);

    font-size: 38px;

    transition:
        transform .25s ease;
}

.category-card:hover
.category-card-icon {

    transform:
        rotate(15deg)
        scale(1.15);
}


/* =========================================================
   SHOP / PRODUCTS
========================================================= */

.products-section {
    padding-top: 60px;
}

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(1, minmax(0, 1fr));

    gap: 18px;
}

.product-card {

    position: relative;

    min-width: 0;

    overflow: hidden;

    border:
        1px solid var(--lm-border);

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(53,27,61,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--lm-shadow-hover);
}

.product-image {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1.04;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f7edf0,
            #eee6f1
        );
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.product-card:hover
.product-image img {

    transform:
        scale(1.035);
}

.product-tag {

    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 2;

    padding:
        6px 10px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.92);

    color: var(--lm-purple);

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 6px 18px rgba(53,27,61,.08);
}

.product-info {
    padding: 17px;
}

.product-category {

    margin-bottom: 7px;

    color: var(--lm-muted-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.product-info h3 {

    margin: 0;

    color: var(--lm-purple);

    font-size: 16px;

    line-height: 1.3;
}

.price-row {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 14px;
}

.price {

    color: #9f5c76;

    font-size: 16px;

    font-weight: 850;
}

.view-product {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding:
        0 12px;

    border-radius: 999px;

    background: var(--lm-lavender);

    color: var(--lm-purple);

    font-size: 10px;

    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.view-product:hover {

    background:
        var(--lm-lavender-dark);

    transform:
        translateY(-1px);
}


/* =========================================================
   EMPTY SHOP
========================================================= */

.empty-products {

    grid-column:
        1 / -1;

    padding:
        70px 25px;

    border:
        1px dashed var(--lm-border-dark);

    border-radius: 24px;

    background: #fff;

    text-align: center;

    color: var(--lm-muted);
}

.empty-product-icon {

    margin-bottom: 12px;

    font-size: 42px;
}

.empty-products strong {

    display: block;

    color: var(--lm-purple);

    font-size: 17px;
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-page {

    width: 100%;

    background:
        var(--lm-cream);
}

.product-container {

    padding-bottom: 0;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    padding:
        22px 0 18px;

    color: #8b7d8d;

    font-size: 11px;
}

.product-breadcrumb a {

    color: #806276;

    font-weight: 650;

    transition:
        color .2s ease;
}

.product-breadcrumb a:hover {
    color: var(--lm-purple);
}

.product-breadcrumb strong {
    color: var(--lm-purple);
}


/* =========================================================
   PRODUCT MAIN LAYOUT
========================================================= */

.product-main {

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(360px, .96fr);

    gap:
        clamp(35px, 5vw, 70px);

    align-items: start;

    padding:
        12px 0 90px;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.product-gallery {
    min-width: 0;
}

.product-gallery-main {

    position: relative;

    width: 100%;

    aspect-ratio:
        1 / 1;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #f7ecee,
            #eee5f1
        );

    border:
        1px solid rgba(53,27,61,.06);

    box-shadow:
        0 25px 70px rgba(53,27,61,.10);
}

.product-main-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 0;

    opacity: 0;

    transform:
        scale(1.015);

    transition:
        opacity .35s ease,
        transform .45s ease;

    pointer-events: none;
}

.product-main-image.is-active {

    opacity: 1;

    transform:
        scale(1);

    pointer-events: auto;
}


/* =========================================================
   GALLERY ARROWS
========================================================= */

.gallery-arrow {

    position: absolute;

    top: 50%;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.94);

    color: var(--lm-purple);

    font-size: 28px;

    line-height: 1;

    box-shadow:
        0 8px 25px rgba(53,27,61,.14);

    transform:
        translateY(-50%);

    transition:
        transform .2s ease,
        background .2s ease;
}

.gallery-arrow:hover {

    background: #fff;

    transform:
        translateY(-50%)
        scale(1.06);
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}


/* =========================================================
   GALLERY COUNTER
========================================================= */

.gallery-counter {

    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 5;

    display: inline-flex;

    gap: 5px;

    padding:
        8px 12px;

    border-radius: 999px;

    background:
        rgba(53,27,61,.84);

    color: #fff;

    font-size: 10px;

    font-weight: 750;

    backdrop-filter:
        blur(10px);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.product-thumbnails {

    display: flex;

    gap: 11px;

    margin-top: 14px;

    padding:
        2px 2px 8px;

    overflow-x: auto;

    scrollbar-width: thin;
}

.product-thumbnail {

    position: relative;

    flex:
        0 0 82px;

    width: 82px;
    height: 82px;

    padding: 0;

    overflow: hidden;

    border:
        2px solid transparent;

    border-radius: 15px;

    background: #f5eaee;

    cursor: pointer;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.product-thumbnail:hover {

    transform:
        translateY(-2px);
}

.product-thumbnail img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-thumbnail.is-active {

    border-color:
        var(--lm-purple);

    box-shadow:
        0 5px 18px rgba(53,27,61,.12);
}


/* =========================================================
   EMPTY PRODUCT IMAGE
========================================================= */

.product-image-empty {

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: #967d99;

    text-align: center;
}

.product-image-empty span {
    font-size: 64px;
}

.product-image-empty p {

    margin: 8px 0 0;

    color: #967d99;

    font-size: 13px;
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-details {

    min-width: 0;

    padding-top: 7px;
}

.product-meta-top {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 17px;
}

.product-category-link {

    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding:
        0 11px;

    border-radius: 999px;

    background:
        var(--lm-lavender);

    color: #755372;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.product-status {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #756a75;

    font-size: 11px;

    font-weight: 700;
}

.status-dot {

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #7ba783;
}

.status-coming_soon .status-dot {
    background: #d7a06e;
}

.status-sold_out .status-dot {
    background: #b47784;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.product-title {

    max-width: 760px;

    margin: 0;

    color: var(--lm-purple);

    font-size:
        clamp(40px, 5vw, 66px);

    line-height: .96;

    letter-spacing:
        -.06em;

    font-weight: 900;
}


/* =========================================================
   PRODUCT PRICE
========================================================= */

.product-price {

    display: flex;

    align-items: baseline;

    gap: 2px;

    margin-top: 21px;

    color: #a65e78;

    font-size:
        clamp(27px, 3vw, 34px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -.035em;
}

.product-price-symbol {
    font-size: 19px;
}


/* =========================================================
   STOCK
========================================================= */

.product-stock {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 15px;

    padding:
        7px 11px;

    border-radius: 999px;

    background: #f2f7f2;

    color: #58755d;

    font-size: 11px;

    font-weight: 650;
}

.stock-check {
    font-weight: 900;
}

.stock-warning {

    background: #f7e9eb;

    color: #9a5364;
}

.stock-warning span {

    width: 17px;
    height: 17px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2d8dd;

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-description {

    max-width: 650px;

    margin-top: 24px;

    color: var(--lm-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT BENEFITS
========================================================= */

.product-benefits {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 9px;

    margin-top: 28px;
}

.product-benefit {

    min-width: 0;

    padding: 15px;

    border:
        1px solid var(--lm-border);

    border-radius: 17px;

    background:
        rgba(255,255,255,.72);
}

.benefit-icon {

    margin-bottom: 8px;

    color: #a65e78;

    font-size: 16px;
}

.product-benefit strong {

    display: block;

    color: var(--lm-purple);

    font-size: 11px;

    line-height: 1.25;
}

.product-benefit span {

    display: block;

    margin-top: 4px;

    color: #8b7d8d;

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================================
   ENQUIRY CARD
========================================================= */

.product-enquiry-card {

    margin-top: 28px;

    padding: 28px;

    border:
        1px solid var(--lm-border);

    border-radius: 27px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(53,27,61,.08);
}

.enquiry-kicker {

    display: block;

    margin-bottom: 8px;

    color: #a05f76;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.enquiry-heading h2 {

    margin: 0;

    color: var(--lm-purple);

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -.035em;
}

.enquiry-heading p {

    margin:
        9px 0 0;

    color: #817581;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   PRODUCT FORM
========================================================= */

.product-enquiry-form {
    margin-top: 23px;
}

.form-field {
    margin-top: 15px;
}

.form-field label {

    display: block;

    margin-bottom: 7px;

    color: var(--lm-purple);

    font-size: 11px;

    font-weight: 750;
}

.form-field label > span {
    color: #b05e77;
}

.form-field label small {

    margin-left: 4px;

    color: #968996;

    font-size: 10px;

    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    min-height: 48px;

    padding:
        0 14px;

    border:
        1px solid rgba(53,27,61,.12);

    border-radius: 13px;

    outline: none;

    background: #fffaf9;

    color: var(--lm-text);

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.form-field textarea {

    min-height: 105px;

    padding:
        13px 14px;

    resize: vertical;

    line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {

    color: #aaa0aa;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {

    border-color:
        #b7839b;

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(183,131,155,.10);
}


/* =========================================================
   TWO COLUMN FORM
========================================================= */

.form-two-column {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-control {

    width: 130px;

    display: grid;

    grid-template-columns:
        38px 1fr 38px;

    align-items: center;

    overflow: hidden;

    border:
        1px solid rgba(53,27,61,.12);

    border-radius: 13px;

    background: #fffaf9;
}

.quantity-control input {

    width: 100%;

    min-height: 46px;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--lm-purple);

    text-align: center;

    font-size: 13px;

    font-weight: 750;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.quantity-btn {

    width: 38px;
    height: 46px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--lm-purple);

    font-size: 18px;

    transition:
        background .2s ease;
}

.quantity-btn:hover {
    background: var(--lm-lavender);
}


/* =========================================================
   CONSENT
========================================================= */

.product-consent {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 17px;

    color: #817581;

    font-size: 10px;

    line-height: 1.5;

    cursor: pointer;
}

.product-consent input {

    width: 15px;
    height: 15px;

    flex-shrink: 0;

    margin-top: 1px;

    accent-color:
        var(--lm-purple);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.product-whatsapp-button {

    width: 100%;

    min-height: 56px;

    margin-top: 19px;

    padding:
        0 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 15px;

    background:
        var(--lm-purple);

    color: #fff;

    font-size: 13px;

    font-weight: 850;

    box-shadow:
        0 14px 30px rgba(53,27,61,.17);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.product-whatsapp-button:hover {

    background:
        var(--lm-purple-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 38px rgba(53,27,61,.22);
}

.whatsapp-icon {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.12);

    font-size: 13px;
}

.button-arrow {

    margin-left: auto;

    font-size: 18px;
}

.form-note {

    margin:
        10px 0 0;

    color: #9a8f99;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.product-trust {

    padding:
        30px 0;

    border-top:
        1px solid var(--lm-border);

    background:
        #f8f0ed;
}

.product-trust-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 14px;
}

.product-trust-grid > div {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 0;

    padding:
        8px 4px;
}

.product-trust-grid > div > span {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #fff;

    color: #a65e78;

    font-size: 15px;
}

.product-trust-grid strong {

    display: block;

    color: var(--lm-purple);

    font-size: 11px;
}

.product-trust-grid small {

    display: block;

    margin-top: 2px;

    color: #8b7d8d;

    font-size: 9px;
}


/* =========================================================
   STORY
========================================================= */

.story-grid {

    display: grid;

    grid-template-columns:
        1fr;

    gap: 35px;
}

.story-section {

    padding:
        35px;

    border:
        1px solid var(--lm-border);

    border-radius: 30px;

    background: #fff;
}


/* =========================================================
   COLLECTION BANNER
========================================================= */

.collection-banner {

    display: grid;

    grid-template-columns:
        1fr;

    gap: 30px;

    padding:
        35px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f5e4e1,
            #eee4f1
        );
}


/* =========================================================
   COMING SOON
========================================================= */

.coming-soon {

    min-height: 360px;

    display: grid;

    grid-template-columns:
        1fr;

    align-items: center;

    padding: 35px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #f7e9e4,
            #eee3ef
        );
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {

    padding: 35px;

    border-radius: 28px;

    background: var(--lm-purple);

    color: #fff;
}

.newsletter h2 {
    color: #fff;
}

.newsletter p {
    color: rgba(255,255,255,.72);
}

.newsletter-form {

    display: flex;

    flex-direction: column;

    gap: 10px;

    max-width: 600px;

    margin-top: 20px;
}

.newsletter-form input {

    min-height: 50px;

    padding:
        0 15px;

    border: 0;

    border-radius: 999px;

    outline: 0;

    background: #fff;

    color: var(--lm-text);
}

.newsletter-form button {
    border: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    margin-top: 80px;

    padding:
        60px 0 30px;

    border-top:
        1px solid var(--lm-border);

    background:
        #f7eee9;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1fr;

    gap: 35px;
}

.footer-grid h4 {

    margin-bottom: 12px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.footer-grid a {

    display: block;

    margin-top: 7px;

    color: var(--lm-muted);

    font-size: 12px;
}

.footer-grid a:hover {
    color: var(--lm-purple);
}

.footer-bottom {

    margin-top: 45px;

    padding-top: 20px;

    border-top:
        1px solid var(--lm-border);

    color: var(--lm-muted);

    font-size: 10px;
}


/* =========================================================
   GENERIC FORM CARD
========================================================= */

.form-card {

    padding: 24px;

    border:
        1px solid var(--lm-border);

    border-radius: 22px;

    background: #fff;

    box-shadow:
        var(--lm-shadow);
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {

    display: block;

    margin-bottom: 7px;

    color: var(--lm-purple);

    font-size: 11px;

    font-weight: 750;
}

.form-row input,
.form-row select,
.form-row textarea {

    width: 100%;

    min-height: 46px;

    padding:
        11px 13px;

    border:
        1px solid rgba(53,27,61,.12);

    border-radius: 12px;

    outline: 0;

    background: #fffaf9;

    color: var(--lm-text);
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {

    border-color:
        #b7839b;

    box-shadow:
        0 0 0 4px rgba(183,131,155,.10);
}


/* =========================================================
   BADGES
========================================================= */

.badge {

    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding:
        0 9px;

    border-radius: 999px;

    background:
        var(--lm-lavender);

    color: #755372;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;
}


/* =========================================================
   MUTED
========================================================= */

.muted {
    color: var(--lm-muted);
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 600px) {

    .category-grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .products-grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 20px;
    }

    .footer-grid {

        grid-template-columns:
            2fr 1fr 1fr;
    }

    .newsletter-form {

        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 851px) {

    .header-inner {
        min-height: 82px;
    }

    .main-nav {
        display: flex;
    }

    .header-shop-btn {
        display: inline-flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .hero {

        grid-template-columns:
            minmax(0,1.05fr)
            minmax(380px,.95fr);

        gap: 70px;

        min-height: 700px;

        padding-top: 80px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .section-head {

        flex-direction: row;

        align-items: flex-end;

        justify-content: space-between;
    }

    .category-grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 16px;
    }

    .products-grid {

        grid-template-columns:
            repeat(4,minmax(0,1fr));

        gap: 20px;
    }

    .story-grid {

        grid-template-columns:
            minmax(300px,.8fr)
            minmax(0,1.2fr);

        gap: 70px;
    }

    .story-section {
        padding: 55px;
    }

    .collection-banner {

        grid-template-columns:
            1.1fr .9fr;

        padding: 50px;
    }

    .coming-soon {

        grid-template-columns:
            1.1fr .9fr;

        min-height: 450px;

        padding: 55px;
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .hero {

        padding-top: 100px;

        min-height: 780px;
    }

    .hero h1 {
        font-size: 84px;
    }

    .product-main {

        grid-template-columns:
            minmax(0,1.06fr)
            minmax(390px,.94fr);

        gap: 75px;
    }

    .product-gallery-main {

        max-height: 720px;
    }

    .product-title {
        font-size: 66px;
    }

    .story-section {
        padding: 70px;
    }

    .collection-banner {
        padding: 70px;
    }

}


/* =========================================================
   VERY LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .hero h1 {
        font-size: 92px;
    }

    .hero {
        min-height: 820px;
    }

    .product-main {
        gap: 90px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .main-nav,
    .header-shop-btn {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-inner {
        min-height: 70px;
    }

    .product-main {

        grid-template-columns: 1fr;

        gap: 38px;

        padding-top: 5px;

        padding-bottom: 60px;
    }

    .product-details {
        padding-top: 0;
    }

    .product-gallery-main {

        width: 100%;

        aspect-ratio:
            1 / 1;

        border-radius: 24px;
    }

    .product-title {

        font-size:
            clamp(39px, 9vw, 55px);
    }

    .product-benefits {

        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .product-enquiry-card {
        margin-top: 25px;
    }

}


/* =========================================================
   MOBILE PRODUCT
========================================================= */

@media (max-width: 599px) {

    .container,
    .section,
    .story-section,
    .product-container,
    .hero {

        width:
            calc(100% - 24px);
    }

    .header-inner {
        width:
            calc(100% - 24px);
    }

    .brand-mark {

        width: 43px;
        height: 43px;

        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .product-breadcrumb {

        padding:
            17px 0 13px;

        font-size: 10px;
    }

    .product-main {
        gap: 30px;
    }

    .product-gallery-main {

        aspect-ratio:
            .94;

        border-radius: 21px;
    }

    .product-main-image {
        object-fit: contain;
    }

    .gallery-arrow {

        width: 40px;
        height: 40px;

        font-size: 23px;
    }

    .gallery-prev {
        left: 11px;
    }

    .gallery-next {
        right: 11px;
    }

    .gallery-counter {

        right: 11px;
        bottom: 11px;

        padding:
            6px 9px;

        font-size: 9px;
    }

    .product-thumbnails {

        gap: 8px;

        margin-top: 10px;
    }

    .product-thumbnail {

        flex-basis: 64px;

        width: 64px;
        height: 64px;

        border-radius: 11px;
    }

    .product-meta-top {
        margin-bottom: 13px;
    }

    .product-title {

        font-size:
            clamp(39px, 11vw, 48px);

        line-height: .97;
    }

    .product-price {

        margin-top: 17px;

        font-size: 28px;
    }

    .product-description {

        margin-top: 19px;

        font-size: 14px;

        line-height: 1.75;
    }

    .product-benefits {

        grid-template-columns: 1fr;

        gap: 7px;

        margin-top: 22px;
    }

    .product-benefit {

        display: flex;

        align-items: center;

        gap: 11px;

        padding: 11px;
    }

    .benefit-icon {

        width: 30px;

        margin: 0;

        text-align: center;
    }

    .product-enquiry-card {

        margin-top: 20px;

        padding:
            21px 17px;

        border-radius: 21px;
    }

    .enquiry-heading h2 {
        font-size: 22px;
    }

    .form-two-column {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .product-trust {

        padding:
            24px 0;
    }

    .product-trust-grid {

        grid-template-columns: 1fr;

        gap: 13px;
    }

    .product-trust-grid > div {
        padding: 3px 0;
    }

    .section {

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero {

        padding-top: 55px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .category-grid,
    .products-grid {

        grid-template-columns:
            1fr;
    }

    .products-grid {
        gap: 16px;
    }

    .collection-banner,
    .coming-soon {

        padding:
            28px 20px;
    }

    .story-section {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 380px) {

    .container,
    .section,
    .story-section,
    .product-container,
    .hero {

        width:
            calc(100% - 20px);
    }

    .header-inner {
        width:
            calc(100% - 20px);
    }

    .brand-text small {
        display: none;
    }

    .brand-mark {

        width: 40px;
        height: 40px;

        border-radius: 13px;
    }

    .product-gallery-main {

        aspect-ratio:
            .92;
    }

    .product-title {
        font-size: 37px;
    }

    .product-enquiry-card {
        padding:
            18px 14px;
    }

    .product-whatsapp-button {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 39px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {

    outline:
        3px solid var(--lm-pink);

    outline-offset:
        3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;
    }
}