/*
========================================
LOVE NEST CREATION
WOOCOMMERCE CUSTOM STYLES
========================================
*/

/* WooCommerce styling starts here */
/* ========================================
   LOVE NEST CREATION
   BRAND FOUNDATION
======================================== */

:root {

    /* Brand Colors */
    --ln-burgundy: #2B0008;
    --ln-burgundy-light: #520D1B;
    --ln-gold: #D0A268;
    --ln-ivory: #F8F1EC;
    --ln-blush: #F2E6E2;
    --ln-cream: #FFFDFC;
    --ln-text: #25191B;
    --ln-muted: #806E70;
    --ln-white: #FFFFFF;

    /* Typography */
    --ln-font-heading: "Cormorant Garamond", serif;
    --ln-font-body: "Manrope", sans-serif;

    --ln-font-arabic-heading: "Noto Naskh Arabic", serif;
    --ln-font-arabic-body: "IBM Plex Sans Arabic", sans-serif;

    /* Layout */
    --ln-radius: 4px;
    --ln-container: 1280px;

    /* Motion */
    --ln-transition: 350ms ease;
}
/* ========================================
   01. WOOCOMMERCE TYPOGRAPHY FOUNDATION
   Scoped to WooCommerce content only
======================================== */


/* Main WooCommerce content */
main .woocommerce,
main .wc-block-cart,
main .wc-block-checkout {
    font-family: var(--ln-font-body);
    color: var(--ln-text);
}


/* WooCommerce headings only */
main .woocommerce h1,
main .woocommerce h2,
main .woocommerce h3,
main .woocommerce h4,
main .woocommerce h5,
main .woocommerce h6 {
    font-family: var(--ln-font-heading);
}


/* Product names */
main .woocommerce .product_title,
main .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ln-font-heading);
}


/* WooCommerce UI elements */
main .woocommerce button,
main .woocommerce input,
main .woocommerce select,
main .woocommerce textarea,
main .woocommerce label,
main .woocommerce a.button,
main .woocommerce button.button,
main .woocommerce input.button,
main .wc-block-components-button {
    font-family: var(--ln-font-body);
}


/* Prices */
main .woocommerce .price,
main .woocommerce .woocommerce-Price-amount,
main .wc-block-components-product-price {
    font-family: var(--ln-font-body);
}


/* ========================================
   ARABIC / RTL
======================================== */

html[dir="rtl"] main .woocommerce,
html[dir="rtl"] main .wc-block-cart,
html[dir="rtl"] main .wc-block-checkout {
    font-family: var(--ln-font-arabic-body);
}


html[dir="rtl"] main .woocommerce h1,
html[dir="rtl"] main .woocommerce h2,
html[dir="rtl"] main .woocommerce h3,
html[dir="rtl"] main .woocommerce h4,
html[dir="rtl"] main .woocommerce h5,
html[dir="rtl"] main .woocommerce h6,
html[dir="rtl"] main .woocommerce .product_title,
html[dir="rtl"] main .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ln-font-arabic-heading);
}
/* ========================================
   02. SHOP HERO
======================================== */

.ln-shop-hero {
    position: relative;
    width: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;

    margin: 0 0 56px;

    background-color: var(--ln-burgundy);

    background-image:
        linear-gradient(
            90deg,
            rgba(43, 0, 8, 0.96) 0%,
            rgba(43, 0, 8, 0.88) 30%,
            rgba(43, 0, 8, 0.52) 52%,
            rgba(43, 0, 8, 0.10) 75%,
            rgba(43, 0, 8, 0.00) 100%
        ),
        url('https://lovenestcreations.shop/wp-content/uploads/2026/09/Love-Nest-Creation-Hero-Section-Banner-WEB.webp');

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Old overlay is no longer required */
.ln-shop-hero__overlay {
    display: none;
}


/* ========================================
   CONTENT
======================================== */

.ln-shop-hero__content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 64px),
        var(--ln-container)
    );

    margin: 0 auto;

    padding-top: 64px;
    padding-bottom: 64px;
}


/* Eyebrow */
.ln-shop-hero__eyebrow {
    display: block;

    margin: 0 0 14px;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: 2.8px;
    text-transform: uppercase;

    color: var(--ln-gold);
}


/* Main heading */
.ln-shop-hero__title {
    max-width: 520px;

    margin: 0 0 12px;

    font-family: var(--ln-font-heading);
    font-size: clamp(48px, 4vw, 58px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.5px;

    color: var(--ln-white);
}


/* Supporting text */
.ln-shop-hero__text {
    max-width: 480px;

    margin: 0;

    font-family: var(--ln-font-body);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;

    color: var(--ln-blush);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .ln-shop-hero {
        min-height: 260px;

        background-position: 62% center;
    }

    .ln-shop-hero__content {
        width: calc(100% - 48px);

        padding-top: 52px;
        padding-bottom: 52px;
    }

    .ln-shop-hero__title {
        max-width: 440px;
        font-size: 48px;
    }

    .ln-shop-hero__text {
        max-width: 400px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .ln-shop-hero {
        min-height: 330px;

        margin-bottom: 40px;

        align-items: flex-end;

        background-image:
            linear-gradient(
                0deg,
                rgba(43, 0, 8, 0.96) 0%,
                rgba(43, 0, 8, 0.82) 38%,
                rgba(43, 0, 8, 0.20) 72%,
                rgba(43, 0, 8, 0.05) 100%
            ),
            url('https://lovenestcreations.shop/wp-content/uploads/2026/09/Love-Nest-Creation-Hero-Section-Banner-MOB.webp');

        background-size: cover;
        background-position: center;
    }


    .ln-shop-hero__content {
        width: calc(100% - 32px);

        padding-top: 120px;
        padding-bottom: 36px;
    }


    .ln-shop-hero__eyebrow {
        margin-bottom: 10px;

        font-size: 10px;
        letter-spacing: 2.5px;
    }


    .ln-shop-hero__title {
        max-width: 100%;

        margin-bottom: 10px;

        font-size: 42px;
        line-height: 1;
    }


    .ln-shop-hero__text {
        max-width: 320px;

        font-size: 14px;
        line-height: 1.6;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .ln-shop-hero {
        min-height: 310px;
    }

    .ln-shop-hero__content {
        padding-top: 110px;
        padding-bottom: 30px;
    }

    .ln-shop-hero__title {
        font-size: 38px;
    }

}
/* ========================================
   03. SHOP TOOLBAR
======================================== */

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count {
    margin: 0;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 400;

    color: var(--ln-muted);
}


body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering {
    margin: 0;
}


/* Sorting Dropdown */
body.woocommerce-shop .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select {
    min-width: 190px;
    height: 48px;

    padding: 0 42px 0 16px;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 500;

    color: var(--ln-text);
    background-color: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    outline: none;
    cursor: pointer;

    transition: border-color var(--ln-transition);
}


body.woocommerce-shop .woocommerce-ordering select:focus,
body.tax-product_cat .woocommerce-ordering select:focus {
    border-color: var(--ln-burgundy-light);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-shop .woocommerce-result-count,
    body.tax-product_cat .woocommerce-result-count {
        float: none;
        width: 100%;

        margin-bottom: 14px;
    }


    body.woocommerce-shop .woocommerce-ordering,
    body.tax-product_cat .woocommerce-ordering {
        float: none;
        width: 100%;
    }


    body.woocommerce-shop .woocommerce-ordering select,
    body.tax-product_cat .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
    }

}
/* ========================================
   04. SHOP PRODUCT GRID
======================================== */

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 28px;

    margin: 32px 0 0;
    padding: 0;

    clear: both;
}


/* Remove WooCommerce float/width system */
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
    display: none;
}


body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
    float: none !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 0;

    position: relative;

    background: transparent;
}


/* ========================================
   PRODUCT IMAGE
======================================== */

body.woocommerce-shop ul.products li.product a img,
body.tax-product_cat ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;

    margin: 0 0 18px;

    display: block;

    object-fit: cover;

    border-radius: var(--ln-radius);

    transition:
        transform var(--ln-transition),
        opacity var(--ln-transition);
}


body.woocommerce-shop ul.products li.product:hover a img,
body.tax-product_cat ul.products li.product:hover a img {
    transform: scale(1.025);
}


/* ========================================
   PRODUCT TITLE
======================================== */

body.woocommerce-shop ul.products li.product
.woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product
.woocommerce-loop-product__title {

    margin: 0 0 5px;
    padding: 0;

    font-family: var(--ln-font-heading);
    font-size: 22px;
    font-weight: 500;

    line-height: 1.15;

    color: var(--ln-text);
}


/* ========================================
   PRICE
======================================== */

body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {

    display: block;

    margin: 0 0 14px;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;

    color: var(--ln-burgundy-light);
}


/* Old price */
body.woocommerce-shop ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del {

    margin-right: 6px;

    font-weight: 400;

    color: var(--ln-muted);

    opacity: 0.65;
}


/* Sale price */
body.woocommerce-shop ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins {

    text-decoration: none;

    font-weight: 600;

    color: var(--ln-burgundy-light);
}


/* ========================================
   ADD TO CART BUTTON
======================================== */

body.woocommerce-shop ul.products li.product .button,
body.tax-product_cat ul.products li.product .button {

    min-height: 44px;

    margin: 0;
    padding: 12px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--ln-white);
    background: var(--ln-burgundy-light);

    border: 1px solid var(--ln-burgundy-light);
    border-radius: var(--ln-radius);

    box-shadow: none;

    transition:
        color var(--ln-transition),
        background-color var(--ln-transition),
        border-color var(--ln-transition);
}


body.woocommerce-shop ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover {

    color: var(--ln-burgundy);
    background: var(--ln-gold);
    border-color: var(--ln-gold);
}


/* Remove default WooCommerce button pseudo-effects */
body.woocommerce-shop ul.products li.product .button::after,
body.tax-product_cat ul.products li.product .button::after {
    display: none;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 22px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 16px;

        margin-top: 28px;
    }


    body.woocommerce-shop ul.products li.product
    .woocommerce-loop-product__title,
    body.tax-product_cat ul.products li.product
    .woocommerce-loop-product__title {
        font-size: 19px;
    }


    body.woocommerce-shop ul.products li.product .button,
    body.tax-product_cat ul.products li.product .button {
        width: 100%;

        min-height: 48px;

        padding-left: 10px;
        padding-right: 10px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        gap: 26px 12px;
    }

    body.woocommerce-shop ul.products li.product
    .woocommerce-loop-product__title,
    body.tax-product_cat ul.products li.product
    .woocommerce-loop-product__title {
        font-size: 17px;
    }

}
/* ========================================
   05. REMOVE SHOPENGINE PRODUCT ACTIONS
======================================== */

/*
 * Remove ShopEngine wishlist,
 * quick view and compare controls
 * from WooCommerce archive cards.
 *
 * Does NOT affect the real WooCommerce
 * Add to Cart button.
 */

body.woocommerce-shop ul.products li.product a.se-btn,
body.tax-product_cat ul.products li.product a.se-btn {
    display: none !important;
}
/* ========================================
   06. LOVE NEST PRODUCT CARD
======================================== */


/* Product card */
body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
    color: var(--ln-text);
}


/* Product link */
body.woocommerce-shop ul.products li.product
.woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product
.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
}


/* Product image */
body.woocommerce-shop ul.products li.product a img,
body.tax-product_cat ul.products li.product a img {
    margin-bottom: 16px;

    border-radius: var(--ln-radius);

    background: var(--ln-cream);
}


/* Product title */
body.woocommerce-shop ul.products li.product
.woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product
.woocommerce-loop-product__title {

    margin: 0 0 8px;

    padding: 0;

    font-family: var(--ln-font-heading);
    font-size: 21px;
    font-weight: 500;

    line-height: 1.15;

    color: var(--ln-text);
}


/* Price */
body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {

    margin: 0 0 14px;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;

    color: var(--ln-burgundy-light);
}


/* Add to Cart */
body.woocommerce-shop ul.products li.product
a.button,
body.tax-product_cat ul.products li.product
a.button {

    min-width: 128px;
    min-height: 44px;

    margin: 0;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--ln-white);
    background: var(--ln-burgundy-light);

    border: 1px solid var(--ln-burgundy-light);
    border-radius: var(--ln-radius);

    box-shadow: none;
}


/* Button hover */
body.woocommerce-shop ul.products li.product
a.button:hover,
body.tax-product_cat ul.products li.product
a.button:hover {

    color: var(--ln-burgundy);
    background: var(--ln-gold);

    border-color: var(--ln-gold);
}


/* Added to cart state */
body.woocommerce-shop ul.products li.product
a.added_to_cart,
body.tax-product_cat ul.products li.product
a.added_to_cart {

    margin-left: 12px;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: var(--ln-burgundy-light);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-shop ul.products li.product
    .woocommerce-loop-product__title,
    body.tax-product_cat ul.products li.product
    .woocommerce-loop-product__title {
        font-size: 18px;
    }


    body.woocommerce-shop ul.products li.product
    a.button,
    body.tax-product_cat ul.products li.product
    a.button {

        width: 100%;
        min-width: 0;
        min-height: 48px;

        padding-left: 10px;
        padding-right: 10px;
    }

}
/* ========================================
   07. SHOP FILTER LAYOUT
======================================== */

.ln-shop-layout {
    width: min(
        calc(100% - 64px),
        var(--ln-container)
    );

    margin: 0 auto;

    padding-bottom: 100px;

    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 48px;
}


/* ========================================
   FILTER SIDEBAR
======================================== */

.ln-shop-filters {
    min-width: 0;
}


.ln-shop-filters .widget {
    margin: 0 0 34px;
}


.ln-shop-filters .widget-title {
    margin: 0 0 18px;

    font-family: var(--ln-font-heading);
    font-size: 20px;
    font-weight: 500;

    line-height: 1.2;

    color: var(--ln-text);
}


/* Category list */
.ln-shop-filters ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ln-shop-filters li {
    margin: 0;
    padding: 9px 0;

    border-bottom: 1px solid rgba(43, 0, 8, 0.07);
}


.ln-shop-filters li a {
    font-family: var(--ln-font-body);
    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    color: var(--ln-muted);

    transition: color var(--ln-transition);
}


.ln-shop-filters li a:hover,
.ln-shop-filters li.current-cat > a {
    color: var(--ln-burgundy-light);
}


/* ========================================
   PRICE FILTER
======================================== */

.ln-shop-filters .price_slider_wrapper {
    font-family: var(--ln-font-body);
}


.ln-shop-filters .price_slider {
    margin-bottom: 18px;
}


.ln-shop-filters .price_slider_amount {
    font-size: 12px;

    color: var(--ln-muted);
}


/* Price filter button */
.ln-shop-filters
.price_slider_amount
.button {

    min-height: 38px;

    padding: 0 16px;

    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-white);
    background: var(--ln-burgundy-light);

    border: none;
    border-radius: var(--ln-radius);

    box-shadow: none;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .ln-shop-layout {
        width: calc(100% - 48px);

        grid-template-columns: 190px minmax(0, 1fr);
        gap: 30px;

        padding-bottom: 80px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .ln-shop-layout {
        width: calc(100% - 32px);

        display: block;

        padding-bottom: 56px;
    }


    .ln-shop-filters {
        margin-bottom: 32px;
    }

}
/* ========================================
   08. LOVE NEST FILTER REFINEMENT
======================================== */


/* ----------------------------------------
   FILTER HEADINGS
---------------------------------------- */

.ln-shop-filters .widget-title {
    margin: 0 0 16px;

    font-family: var(--ln-font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;

    color: var(--ln-text);
}


/* Spacing between filter groups */

.ln-shop-filter-widget {
    margin-bottom: 34px;
}


/* ========================================
   PRODUCT CATEGORY
======================================== */

.ln-category-filter ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ln-category-filter li {
    position: relative;

    margin: 0;
    padding: 9px 0;

    border-bottom: 1px solid rgba(43, 0, 8, 0.07);
}


.ln-category-filter li a {
    display: block;

    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;

    color: var(--ln-muted);
    text-decoration: none;

    transition: color var(--ln-transition);
}


.ln-category-filter li a:hover,
.ln-category-filter li.current-cat > a {
    color: var(--ln-burgundy-light);
}


/* ========================================
   COLOR FILTER
======================================== */

.ln-color-filter
.woocommerce-widget-layered-nav-list {

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.ln-color-filter
.woocommerce-widget-layered-nav-list__item {

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/* Hide text visually but keep WooCommerce link functional */

.ln-color-filter
.woocommerce-widget-layered-nav-list__item a {

    position: relative;

    display: block;

    width: 24px;
    height: 24px;

    padding: 0;

    font-size: 0;
    line-height: 0;
}


/* Default swatch */

.ln-color-filter
.woocommerce-widget-layered-nav-list__item a::before {

    content: "";

    position: absolute;
    inset: 2px;

    display: block;

    border-radius: 50%;

    background: var(--ln-muted);

    border: 1px solid rgba(43, 0, 8, 0.12);

    transition:
        transform var(--ln-transition),
        box-shadow var(--ln-transition);
}


/* Hover */

.ln-color-filter
.woocommerce-widget-layered-nav-list__item a:hover::before {

    transform: scale(1.08);
}


/* Selected color */

.ln-color-filter
.woocommerce-widget-layered-nav-list__item.chosen a::before,
.ln-color-filter
.woocommerce-widget-layered-nav-list__item--chosen a::before {

    box-shadow:
        0 0 0 2px var(--ln-cream),
        0 0 0 3px var(--ln-burgundy);
}


/* ----------------------------------------
   COLOR MAPPING
---------------------------------------- */

/* Velvet Rouge */
.ln-color-filter a[href*="filter_color=velvet-rouge-red"]::before {
    background: #8F1830;
}


/* Champagne Gold */
.ln-color-filter a[href*="filter_color=champagne-gold"]::before {
    background: #D0A268;
}


/* Sage Romance */
.ln-color-filter a[href*="filter_color=sage-romance-green"]::before {
    background: #8E9B7A;
}


/* Petal Blush */
.ln-color-filter a[href*="filter_color=petal-blush-pink"]::before {
    background: #E6B4BE;
}


/* Pearl White */
.ln-color-filter a[href*="filter_color=pearl-white"]::before {
    background: #FFFDFC;
    border-color: #D9CFCC;
}


/* Midnight Onyx */
.ln-color-filter a[href*="filter_color=midnight-onyx-black"]::before {
    background: #171214;
}


/* Celestial Blue */
.ln-color-filter a[href*="filter_color=celestial-blue"]::before {
    background: #7D9BB3;
}


/* Amethyst Desire */
.ln-color-filter a[href*="filter_color=amethyst-desire-purple"]::before {
    background: #76556F;
}


/* Hide WooCommerce product count beside colors */

.ln-color-filter .count {
    display: none;
}


/* ========================================
   OCCASION FILTER
======================================== */

.ln-occasion-filter ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ln-occasion-filter li {

    position: relative;

    margin: 0;
    padding: 7px 0;

    border: 0;
}


.ln-occasion-filter li a {

    position: relative;

    display: block;

    padding-left: 24px;

    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    color: var(--ln-muted);

    transition: color var(--ln-transition);
}


/* Checkbox */

.ln-occasion-filter li a::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 13px;
    height: 13px;

    transform: translateY(-50%);

    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: 2px;

    transition:
        background-color var(--ln-transition),
        border-color var(--ln-transition);
}


/* Hover */

.ln-occasion-filter li a:hover {
    color: var(--ln-burgundy-light);
}


.ln-occasion-filter li a:hover::before {
    border-color: var(--ln-burgundy-light);
}


/* Selected occasion */

.ln-occasion-filter li.chosen a,
.ln-occasion-filter
.woocommerce-widget-layered-nav-list__item--chosen a {

    color: var(--ln-burgundy-light);
}


.ln-occasion-filter li.chosen a::before,
.ln-occasion-filter
.woocommerce-widget-layered-nav-list__item--chosen a::before {

    background: var(--ln-burgundy-light);
    border-color: var(--ln-burgundy-light);

    box-shadow:
        inset 0 0 0 3px var(--ln-cream);
}


/* Hide WooCommerce counts */

.ln-occasion-filter .count {
    display: none;
}
/* ========================================
   09. PRICE RANGE FILTER
======================================== */

.ln-price-filter .price_slider_wrapper {
    font-family: var(--ln-font-body);
}


/* Base slider track */
.ln-price-filter .price_slider_wrapper .ui-widget-content {
    height: 3px;

    margin: 20px 8px 22px 8px;

    background: #D9CFCC;

    border: 0;
    border-radius: 20px;
}


/* Selected price range */
.ln-price-filter .ui-slider .ui-slider-range {
    background: var(--ln-burgundy-light);

    border: 0;
}


/* Slider handles */
.ln-price-filter .ui-slider .ui-slider-handle {
    width: 15px;
    height: 15px;

    top: 50%;

    margin-top: -7.5px;

    background: var(--ln-cream);

    border: 2px solid var(--ln-burgundy-light);
    border-radius: 50%;

    cursor: pointer;

    box-shadow: none;

    transition:
        background-color var(--ln-transition),
        border-color var(--ln-transition),
        transform var(--ln-transition);
}


/* Handle hover */
.ln-price-filter .ui-slider .ui-slider-handle:hover {
    background: var(--ln-gold);
    border-color: var(--ln-gold);

    transform: scale(1.08);
}


/* Price information row */
.ln-price-filter .price_slider_amount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    font-family: var(--ln-font-body);
    font-size: 11px;

    color: var(--ln-muted);
}


/* Price label */
.ln-price-filter .price_label {
    order: 1;

    width: 100%;

    margin-bottom: 4px;

    font-size: 12px;
    line-height: 1.5;

    color: var(--ln-muted);
}


/* Filter button */
.ln-price-filter .price_slider_amount .button {
    order: 2;

    min-height: 40px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-white);
    background: var(--ln-burgundy-light);

    border: 1px solid var(--ln-burgundy-light);
    border-radius: var(--ln-radius);

    box-shadow: none;

    transition:
        background-color var(--ln-transition),
        border-color var(--ln-transition),
        color var(--ln-transition);
}


/* Filter button hover */
.ln-price-filter .price_slider_amount .button:hover {
    color: var(--ln-burgundy);
    background: var(--ln-gold);

    border-color: var(--ln-gold);
}


/* Clear WooCommerce floats */
.ln-price-filter .price_slider_amount::before,
.ln-price-filter .price_slider_amount::after {
    display: none;
}

/* ========================================
   10. LOVE NEST COLOR SWATCH MAPPING
======================================== */

/* Velvet Rouge */
.ln-color-filter a[data-color="velvet-rouge-red"]::before {
    background: #8F1830;
}


/* Champagne Gold */
.ln-color-filter a[data-color="champagne-gold"]::before {
    background: #D0A268;
}


/* Sage Romance */
.ln-color-filter a[data-color="sage-romance-green"]::before {
    background: #8E9B7A;
}


/* Petal Blush */
.ln-color-filter a[data-color="petal-blush-pink"]::before {
    background: #E6B4BE;
}


/* Pearl White */
.ln-color-filter a[data-color="pearl-white"]::before {
    background: #FFFDFC;
    border-color: #D9CFCC;
}


/* Midnight Onyx */
.ln-color-filter a[data-color="midnight-onyx-black"]::before {
    background: #171214;
}


/* Celestial Blue */
.ln-color-filter a[data-color="celestial-blue"]::before {
    background: #7D9BB3;
}


/* Amethyst Desire */
.ln-color-filter a[data-color="amethyst-desire-purple"]::before {
    background: #76556F;
}
/* ========================================
   11. OCCASION FILTER LABEL FIX
======================================== */

.ln-occasion-filter li a {
    display: flex !important;
    align-items: center;

    gap: 8px;

    padding-left: 0 !important;

    text-indent: 0 !important;
    overflow: visible !important;

    white-space: normal;
}


/* Checkbox */
.ln-occasion-filter li a::before {
    position: static;

    flex: 0 0 13px;

    width: 13px;
    height: 13px;

    transform: none;

    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: 2px;

    content: "";
}


/* Selected */
.ln-occasion-filter li.chosen a::before,
.ln-occasion-filter
.woocommerce-widget-layered-nav-list__item--chosen a::before {

    background: var(--ln-burgundy-light);
    border-color: var(--ln-burgundy-light);

    box-shadow:
        inset 0 0 0 3px var(--ln-cream);
}
/* ========================================
   12. RESPONSIVE SHOP FILTER DRAWER
======================================== */


/* Desktop */
.ln-shop-mobile-toolbar,
.ln-shop-filters__mobile-head,
.ln-shop-filter-backdrop {
    display: none;
}


/* ========================================
   TABLET + MOBILE
======================================== */

@media (max-width: 1024px) {

    /* Remove desktop sidebar grid */
    .ln-shop-layout {
        width: calc(100% - 48px);

        display: block;

        padding-bottom: 80px;
    }


    /* Main product area */
    .ln-shop-main {
        width: 100%;
        min-width: 0;
    }


    /* Mobile toolbar */
    .ln-shop-mobile-toolbar {
        display: flex;

        width: 100%;

        margin: 0 0 20px;
    }


    /* Filter trigger */
    .ln-filter-toggle {
        min-height: 48px;

        padding: 0 20px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        font-family: var(--ln-font-body);
        font-size: 11px;
        font-weight: 600;

        letter-spacing: 1.3px;
        text-transform: uppercase;

        color: var(--ln-burgundy);
        background: transparent;

        border: 1px solid rgba(43, 0, 8, 0.22);
        border-radius: var(--ln-radius);

        cursor: pointer;

        transition:
            color var(--ln-transition),
            border-color var(--ln-transition),
            background-color var(--ln-transition);
    }


    .ln-filter-toggle:hover {
        color: var(--ln-white);
        background: var(--ln-burgundy-light);

        border-color: var(--ln-burgundy-light);
    }


    /* Filter drawer */
    .ln-shop-filters {
        position: fixed;

        z-index: 100001;

        top: 0;
        left: 0;
        bottom: 0;

        width: min(88vw, 360px);
        height: 100dvh;

        margin: 0;
        padding: 0 24px 40px;

        overflow-x: hidden;
        overflow-y: auto;

        background: var(--ln-cream);

        transform: translateX(-105%);

        transition:
            transform var(--ln-transition);

        box-shadow:
            16px 0 40px rgba(43, 0, 8, 0.10);
    }


    /* Open drawer */
    body.ln-filters-open .ln-shop-filters {
        transform: translateX(0);
    }


    /* Prevent page scrolling */
    body.ln-filters-open {
        overflow: hidden;
    }


    /* Drawer header */
    .ln-shop-filters__mobile-head {
        position: sticky;

        z-index: 5;

        top: 0;

        min-height: 72px;

        margin: 0 -24px 28px;
        padding: 0 24px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: var(--ln-cream);

        border-bottom: 1px solid rgba(43, 0, 8, 0.08);
    }


    .ln-shop-filters__mobile-title {
        font-family: var(--ln-font-heading);
        font-size: 26px;
        font-weight: 500;

        color: var(--ln-text);
    }


    /* Close button */
    .ln-filter-close {
        width: 44px;
        height: 44px;

        padding: 0;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        color: var(--ln-burgundy);

        background: transparent;

        border: 0;

        cursor: pointer;
    }


    /* Backdrop */
    .ln-shop-filter-backdrop {
        position: fixed;

        z-index: 100000;

        inset: 0;

        display: block;

        background: rgba(37, 25, 27, 0.46);

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transition:
            opacity var(--ln-transition),
            visibility var(--ln-transition);
    }


    body.ln-filters-open
    .ln-shop-filter-backdrop {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .ln-shop-layout {
        width: calc(100% - 32px);

        padding-bottom: 56px;
    }


    .ln-shop-mobile-toolbar {
        margin-bottom: 16px;
    }


    .ln-filter-toggle {
        width: 100%;
    }


    .ln-shop-filters {
        width: min(92vw, 340px);
    }

}


/* ========================================
   RTL DRAWER
======================================== */

@media (max-width: 1024px) {

    html[dir="rtl"] .ln-shop-filters {
        left: auto;
        right: 0;

        transform: translateX(105%);

        box-shadow:
            -16px 0 40px rgba(43, 0, 8, 0.10);
    }


    html[dir="rtl"]
    body.ln-filters-open
    .ln-shop-filters {
        transform: translateX(0);
    }

}
/* ========================================
   13. SINGLE PRODUCT — INITIAL CLEANUP
======================================== */


/* Hide ShopEngine wishlist / quick actions */
body.single-product .se-btn,
body.single-product .shopengine_add_to_list_action,
body.single-product .shopengine-quickview-trigger {
    display: none !important;
}


/* Hide default product meta clutter:
   SKU, categories, tags, brand
*/
body.single-product .product_meta {
    display: none;
}


/* Main product page background */
body.single-product {
    background: var(--ln-ivory);
}


/* Main WooCommerce product area */
body.single-product main .woocommerce {
    color: var(--ln-text);
}


/* Product title */
body.single-product .product_title {
    font-family: var(--ln-font-heading);
    font-weight: 500;
    color: var(--ln-text);
}


/* Price */
body.single-product div.product p.price,
body.single-product div.product span.price {
    font-family: var(--ln-font-body);
    font-weight: 600;
    color: var(--ln-burgundy-light);
}


/* Product description */
body.single-product
.woocommerce-product-details__short-description {
    font-family: var(--ln-font-body);
    color: var(--ln-text);
    line-height: 1.65;
}


/* Quantity input */
body.single-product .quantity .qty {
    font-family: var(--ln-font-body);

    min-height: 48px;
    width: 64px;

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    background: var(--ln-cream);
    color: var(--ln-text);

    box-shadow: none;
}


/* Native Add To Cart */
body.single-product .single_add_to_cart_button {
    min-height: 48px;

    padding: 0 28px !important;

    font-family: var(--ln-font-body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;

    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;

    box-shadow: none !important;

    transition:
        background-color var(--ln-transition),
        border-color var(--ln-transition),
        color var(--ln-transition);
}


body.single-product .single_add_to_cart_button:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
}
/* ========================================
   14. SINGLE PRODUCT — PAGE LAYOUT
======================================== */


/* Main product content width */
body.single-product main .woocommerce {
    width: min(
        calc(100% - 64px),
        var(--ln-container)
    );

    margin: 0 auto;

    padding-top: 56px;
    padding-bottom: 100px;
}


/* Main product layout */
body.single-product div.product {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    column-gap: 64px;
    row-gap: 64px;

    align-items: start;
}


/* Remove WooCommerce default floats */
body.single-product div.product
.woocommerce-product-gallery,

body.single-product div.product
.summary {
    float: none !important;

    width: 100% !important;

    margin: 0 !important;
}


/* ========================================
   PRODUCT SUMMARY
======================================== */

body.single-product div.product .summary {
    min-width: 0;

    padding-top: 6px;
}


/* Product title */
body.single-product div.product
.summary .product_title {

    display: block !important;

    margin: 0 0 12px !important;

    font-family: var(--ln-font-heading);
    font-size: 46px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.5px;

    color: var(--ln-text);
}


/* Price */
body.single-product div.product
.summary p.price,

body.single-product div.product
.summary span.price {

    margin: 0 0 24px;

    font-family: var(--ln-font-body);
    font-size: 19px;
    font-weight: 600;

    line-height: 1.4;

    color: var(--ln-burgundy-light);
}


/* Short description */
body.single-product
.woocommerce-product-details__short-description {

    max-width: 560px;

    margin-bottom: 26px;

    font-family: var(--ln-font-body);
    font-size: 15px;

    line-height: 1.7;

    color: var(--ln-text);
}


body.single-product
.woocommerce-product-details__short-description p {

    margin-top: 0;
    margin-bottom: 16px;
}


/* ========================================
   PRODUCT GALLERY
======================================== */

body.single-product
.woocommerce-product-gallery {

    min-width: 0;
}


body.single-product
.woocommerce-product-gallery img {

    border-radius: var(--ln-radius);

    box-shadow: none;
}


/* Gallery thumbnails */
body.single-product
.flex-control-thumbs {

    margin-top: 12px !important;

    display: flex;

    gap: 10px;
}


body.single-product
.flex-control-thumbs li {

    width: 82px !important;

    margin: 0 !important;
}


body.single-product
.flex-control-thumbs img {

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border: 1px solid transparent;
    border-radius: var(--ln-radius);

    opacity: 0.55;

    cursor: pointer;

    transition:
        opacity var(--ln-transition),
        border-color var(--ln-transition);
}


body.single-product
.flex-control-thumbs img:hover,
body.single-product
.flex-control-thumbs img.flex-active {

    opacity: 1;

    border-color: var(--ln-gold);
}


/* ========================================
   ADD TO CART ROW
======================================== */

body.single-product
form.cart {

    margin-top: 26px;
    margin-bottom: 0 !important;

    display: flex;

    align-items: stretch;

    gap: 8px;
}


/* Quantity */
body.single-product
form.cart .quantity {

    margin: 0 !important;
}


/* Add To Cart */
body.single-product
form.cart .single_add_to_cart_button {

    flex: 1;

    min-height: 52px;
}


/* ========================================
   TABS / LOWER PRODUCT CONTENT
======================================== */

body.single-product
.woocommerce-tabs {

    grid-column: 1 / -1;

    width: 100%;

    margin-top: 12px;
}


/* Related / upsell products */
body.single-product
.related,

body.single-product
.upsells {

    grid-column: 1 / -1;

    width: 100%;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    body.single-product main .woocommerce {

        width: calc(100% - 48px);

        padding-top: 44px;
        padding-bottom: 80px;
    }


    body.single-product div.product {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 36px;
    }


    body.single-product div.product
    .summary .product_title {

        font-size: 38px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product main .woocommerce {

        width: calc(100% - 32px);

        padding-top: 28px;
        padding-bottom: 56px;
    }


    body.single-product div.product {

        display: block;
    }


    body.single-product
    .woocommerce-product-gallery {

        margin-bottom: 30px !important;
    }


    body.single-product div.product
    .summary {

        padding-top: 0;
    }


    body.single-product div.product
    .summary .product_title {

        margin-bottom: 10px !important;

        font-size: 36px;

        line-height: 1.05;
    }


    body.single-product div.product
    .summary p.price,

    body.single-product div.product
    .summary span.price {

        margin-bottom: 20px;

        font-size: 17px;
    }


    body.single-product
    .woocommerce-product-details__short-description {

        font-size: 14px;
    }


    body.single-product
    form.cart {

        width: 100%;
    }


    body.single-product
    form.cart .single_add_to_cart_button {

        min-height: 52px;
    }


    body.single-product
    .woocommerce-tabs {

        margin-top: 48px;
    }

}
/* ========================================
   15. MONEY BOUQUET CONFIGURATOR
======================================== */


/* Main configurator */
body.single-product .ln-money-options {
    width: 100%;
    margin: 24px 0 22px;
}


/* Individual option */
body.single-product .ln-product-option {
    width: 100%;
    margin-bottom: 22px;
}


/* Option titles */
body.single-product .ln-product-option__heading {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 10px;

    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-text);
}


/* Required star */
body.single-product .ln-required {
    color: var(--ln-burgundy-light);
}


/* Optional text */
body.single-product .ln-option-optional {
    margin-left: auto;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .5px;
    text-transform: none;

    color: var(--ln-muted);
}


/* ========================================
   OPTION BUTTONS
======================================== */

body.single-product .ln-option-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;

    width: 100%;
}


/* Note-count row has 3 choices */
body.single-product
.ln-note-count-option
.ln-option-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* Hide native radio */
body.single-product
.ln-option-buttons input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* Whole option */
body.single-product
.ln-option-buttons label {
    display: block;
    margin: 0;

    cursor: pointer;
}


/* Visible button */
body.single-product
.ln-option-buttons label span {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 12px;

    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;

    color: var(--ln-text);

    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    transition:
        color var(--ln-transition),
        background-color var(--ln-transition),
        border-color var(--ln-transition),
        box-shadow var(--ln-transition);
}


/* Hover */
body.single-product
.ln-option-buttons label:hover span {
    border-color: rgba(82, 13, 27, .55);
}


/* Selected */
body.single-product
.ln-option-buttons input[type="radio"]:checked + span {
    color: var(--ln-white);

    background: var(--ln-burgundy-light);

    border-color: var(--ln-burgundy-light);

    box-shadow:
        inset 0 0 0 1px
        var(--ln-burgundy-light);
}


/* Keyboard focus */
body.single-product
.ln-option-buttons input[type="radio"]:focus-visible + span {
    outline: 2px solid var(--ln-gold);
    outline-offset: 2px;
}


/* ========================================
   PERSONAL NOTE
======================================== */

body.single-product
.ln-personal-note-option {
    margin: 22px 0;
}


body.single-product
textarea.ln-personal-note {
    display: block;

    width: 100%;
    min-height: 112px;

    padding: 14px 16px;

    resize: vertical;

    font-family: var(--ln-font-body);
    font-size: 14px;
    line-height: 1.6;

    color: var(--ln-text);

    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    box-shadow: none;

    transition:
        border-color var(--ln-transition),
        box-shadow var(--ln-transition);
}


body.single-product
textarea.ln-personal-note::placeholder {
    color: var(--ln-muted);
    opacity: .75;
}


body.single-product
textarea.ln-personal-note:focus {
    outline: none;

    border-color: var(--ln-burgundy-light);

    box-shadow:
        0 0 0 2px
        rgba(82, 13, 27, .08);
}


/* Character hint */
body.single-product
.ln-personal-note__hint {
    margin-top: 6px;

    font-family: var(--ln-font-body);
    font-size: 11px;
    line-height: 1.4;

    color: var(--ln-muted);
}


/* ========================================
   PRICE BREAKDOWN
======================================== */

body.single-product
.ln-money-price-preview {
    margin-top: 24px;
    padding: 16px 18px;

    background: var(--ln-blush);

    border: 1px solid rgba(82, 13, 27, .08);
    border-radius: var(--ln-radius);
}


body.single-product
.ln-money-price-preview__row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-family: var(--ln-font-body);
}


/* Notes price */
body.single-product
.ln-money-price-preview__row:first-child {
    padding-bottom: 11px;

    font-size: 12px;

    color: var(--ln-muted);

    border-bottom:
        1px solid
        rgba(82, 13, 27, .09);
}


/* Total row */
body.single-product
.ln-money-price-preview__total {
    padding-top: 12px;
}


/* Price labels */
body.single-product
.ln-money-price-preview__label {
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .8px;
    text-transform: uppercase;
}


/* Total amount */
body.single-product
.ln-money-total-price {
    font-family: var(--ln-font-heading);
    font-size: 23px;
    font-weight: 600;

    color: var(--ln-burgundy-light);
}


/* Notes amount */
body.single-product
.ln-money-notes-price {
    font-weight: 600;

    color: var(--ln-text);
}


/* ========================================
   VARIABLE PRODUCT PURCHASE AREA
======================================== */

body.single-product
.woocommerce-variation-add-to-cart {
    width: 100%;
}


/* Keep custom options on full width */
body.single-product
.woocommerce-variation-add-to-cart
.ln-money-options,

body.single-product
.woocommerce-variation-add-to-cart
.ln-personal-note-option {
    width: 100%;
}


/* Quantity + button spacing */
body.single-product
.woocommerce-variation-add-to-cart
.quantity {
    margin-right: 8px !important;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product
    .ln-option-buttons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    body.single-product
    .ln-note-count-option
    .ln-option-buttons {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    body.single-product
    .ln-option-buttons label span {
        min-height: 50px;

        padding-left: 8px;
        padding-right: 8px;

        font-size: 11px;
    }


    body.single-product
    .ln-money-price-preview {
        padding: 15px 16px;
    }


    body.single-product
    .ln-money-total-price {
        font-size: 21px;
    }

}
/* ========================================
   16. PRODUCT COLOR VARIATION SWATCHES
======================================== */


/* ----------------------------------------
   VARIABLE PRODUCT FORM STRUCTURE
---------------------------------------- */

body.single-product
form.variations_form.cart {
    display: block;
    width: 100%;
}


/* Native variation table */
body.single-product
form.variations_form.cart
table.variations {
    width: 100%;
    margin: 0;
}


/*
 * Hide only the native Color dropdown row.
 * WooCommerce still uses the hidden select internally.
 */
body.single-product
form.variations_form.cart
.ln-native-color-row {
    display: none !important;
}


/* Immediate hide before JS adds the class */
body.single-product
form.variations_form.cart
table.variations
tr:has(select[name="attribute_pa_color"]) {
    display: none !important;
}


/* Variation content */
body.single-product
form.variations_form.cart
.single_variation_wrap {
    width: 100%;
}


/* ========================================
   COLOR PICKER
======================================== */

body.single-product
.ln-color-variation-picker {
    width: 100%;
    margin: 0 0 24px;
}


/* Heading */
body.single-product
.ln-color-variation-picker__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 13px;
}


/* COLOR label */
body.single-product
.ln-color-variation-picker__title {
    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-text);
}


/* Selected color name */
body.single-product
.ln-color-variation-picker__selected {
    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 500;

    color: var(--ln-muted);
}


/* Swatch group */
body.single-product
.ln-color-variation-picker__options {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 18px;
}


/* Individual swatch */
body.single-product
.ln-color-variation-swatch {
    appearance: none;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin: 0;
    padding: 3px;

    font-family: var(--ln-font-body);

    color: var(--ln-text);

    background: transparent;

    border: 0;

    cursor: pointer;

    box-shadow: none;

    transition:
        opacity var(--ln-transition),
        color var(--ln-transition);
}


/* Color circle */
body.single-product
.ln-color-variation-swatch__circle {
    position: relative;

    display: block;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    background: var(--ln-swatch-color);

    border: 1px solid rgba(43, 0, 8, .16);
    border-radius: 50%;

    transition:
        transform var(--ln-transition),
        box-shadow var(--ln-transition);
}


/* Color name */
body.single-product
.ln-color-variation-swatch__label {
    font-size: 12px;
    font-weight: 500;

    line-height: 1.3;

    white-space: nowrap;
}


/* Hover */
body.single-product
.ln-color-variation-swatch:hover
.ln-color-variation-swatch__circle {
    transform: scale(1.07);
}


/* Selected */
body.single-product
.ln-color-variation-swatch.is-selected {
    color: var(--ln-burgundy-light);
}


body.single-product
.ln-color-variation-swatch.is-selected
.ln-color-variation-swatch__circle {
    box-shadow:
        0 0 0 3px var(--ln-ivory),
        0 0 0 5px var(--ln-burgundy-light);
}


/* White/light colors */
body.single-product
.ln-color-variation-swatch--light
.ln-color-variation-swatch__circle {
    border-color: #CFC3BF;
}


/* Unavailable variation */
body.single-product
.ln-color-variation-swatch.is-disabled {
    opacity: .3;

    cursor: not-allowed;
}


/* Keyboard accessibility */
body.single-product
.ln-color-variation-swatch:focus-visible {
    outline: 2px solid var(--ln-gold);
    outline-offset: 4px;

    border-radius: 2px;
}


/* ========================================
   VARIABLE PRODUCT PURCHASE AREA
======================================== */

body.single-product
.woocommerce-variation-add-to-cart {
    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    gap: 8px;

    width: 100%;
}


/* Configurator stays full-width */
body.single-product
.woocommerce-variation-add-to-cart
.ln-money-options,

body.single-product
.woocommerce-variation-add-to-cart
.ln-personal-note-option {
    flex: 0 0 100%;
    width: 100%;
}


/* Quantity */
body.single-product
.woocommerce-variation-add-to-cart
.quantity {
    flex: 0 0 64px;

    margin: 0 !important;
}


/* Add to cart fills remaining space */
body.single-product
.woocommerce-variation-add-to-cart
.single_add_to_cart_button {
    flex: 1;

    margin: 0 !important;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product
    .ln-color-variation-picker__options {
        gap: 15px;
    }


    body.single-product
    .ln-color-variation-swatch {
        gap: 7px;
    }


    body.single-product
    .ln-color-variation-swatch__circle {
        width: 26px;
        height: 26px;

        flex-basis: 26px;
    }


    body.single-product
    .ln-color-variation-swatch__label {
        font-size: 11px;
    }

}
/* ========================================
   17. COLOR SWATCH POLISH
======================================== */

/* Hide WooCommerce's default reset-variation control */
body.single-product
form.variations_form.cart
.reset_variations {
    display: none !important;
}


/* Slightly improve spacing below color picker */
body.single-product
.ln-color-variation-picker {
    margin-bottom: 30px;
}


/* More refined selected swatch ring */
body.single-product
.ln-color-variation-swatch.is-selected
.ln-color-variation-swatch__circle {
    box-shadow:
        0 0 0 3px var(--ln-ivory),
        0 0 0 5px var(--ln-gold);
}


/* Selected name stronger */
body.single-product
.ln-color-variation-swatch.is-selected
.ln-color-variation-swatch__label {
    font-weight: 600;
    color: var(--ln-burgundy-light);
}


/* Selected color text in heading */
body.single-product
.ln-color-variation-picker__selected {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2px;

    color: var(--ln-muted);
}


/* Improve vertical rhythm between configurator sections */
body.single-product
.ln-denomination-option {
    margin-top: 0;
}

body.single-product
.ln-note-count-option {
    margin-top: 24px;
}

body.single-product
.ln-personal-note-option {
    margin-top: 32px;
}
/* ========================================
   18. SINGLE PRODUCT — PREMIUM GALLERY
   Final FlexSlider-safe layout
======================================== */

/* Give the product area breathing room below the header */
body.single-product div.product {
    margin-top: 52px;
}


/* ========================================
   DESKTOP
======================================== */

@media (min-width: 1025px) {

    /* Product columns */
    body.single-product div.product {
        grid-template-columns:
            minmax(0, 500px)
            minmax(0, 1fr);

        column-gap: 64px;
        align-items: start;
    }


    /* ----------------------------------------
       GALLERY SHELL
       Keep FlexSlider itself untouched.
       Space for thumbnails is created OUTSIDE
       the gallery width, not with padding/grid.
    ---------------------------------------- */

    body.single-product
    .woocommerce-product-gallery {
        position: relative;

        display: block !important;

        width: calc(100% - 82px) !important;
        max-width: none !important;

        margin: 0 0 0 82px !important;
        padding: 0 !important;

        overflow: visible !important;
    }


    /* Main FlexSlider viewport */
    body.single-product
    .woocommerce-product-gallery
    .flex-viewport {
        margin: 0 !important;

        overflow: hidden !important;

        border-radius: var(--ln-radius);
    }


    /* Let WooCommerce/FlexSlider control slide widths */
    body.single-product
    .woocommerce-product-gallery__wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery__image {
        margin: 0 !important;
    }


    /* Full product image — no crop */
    body.single-product
    .woocommerce-product-gallery__image img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: none !important;

        object-fit: contain !important;

        border-radius: var(--ln-radius);
    }


    /* ----------------------------------------
       VERTICAL THUMBNAILS
    ---------------------------------------- */

    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs {
        position: absolute !important;

        top: 0 !important;
        left: -82px !important;

        width: 68px !important;

        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;

        gap: 10px;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs li {
        float: none !important;

        width: 68px !important;
        height: 68px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs img {
        display: block !important;

        width: 68px !important;
        height: 68px !important;

        aspect-ratio: 1 / 1;
        object-fit: cover !important;

        border: 1px solid #D9CFCC;
        border-radius: var(--ln-radius);

        opacity: .55;

        cursor: pointer;

        transition:
            opacity var(--ln-transition),
            border-color var(--ln-transition);
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs img:hover,

    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs img.flex-active {
        opacity: 1;
        border-color: var(--ln-gold);
    }


    /* Zoom icon belongs to the main image */
    body.single-product
    .woocommerce-product-gallery__trigger {
        top: 12px !important;
        right: 12px !important;
        left: auto !important;

        z-index: 10;
    }
}


/* ========================================
   TABLET
======================================== */

@media (min-width: 768px) and (max-width: 1024px) {

    body.single-product div.product {
        margin-top: 40px;
        column-gap: 36px;
    }


    body.single-product
    .woocommerce-product-gallery {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery__image img {
        display: block;

        width: 100% !important;
        height: auto !important;

        max-width: 100%;
        max-height: none !important;

        object-fit: contain !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs {
        position: static !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;

        gap: 9px;

        width: 100% !important;

        margin: 10px 0 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs li {
        float: none !important;
        width: 68px !important;
        margin: 0 !important;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product div.product {
        margin-top: 28px;
    }


    body.single-product
    .woocommerce-product-gallery {
        position: relative;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 30px !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery__image img {
        display: block;

        width: 100% !important;
        height: auto !important;

        max-width: 100%;
        max-height: none !important;

        object-fit: contain !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs {
        position: static !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;

        gap: 9px;

        width: 100% !important;

        margin: 10px 0 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs li {
        float: none !important;

        width: 64px !important;
        height: 64px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    body.single-product
    .woocommerce-product-gallery
    .flex-control-thumbs img {
        width: 64px !important;
        height: 64px !important;

        object-fit: cover !important;
    }
}

/* ========================================
   20. PREMIUM PRODUCT DESCRIPTION
======================================== */


/* Remove WooCommerce's automatic Description heading */
body.single-product
.woocommerce-Tabs-panel--description
> h2:first-child {
    display: none;
}


/* Main description block */
body.single-product
.ln-product-description-block {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .75fr);

    gap: 48px;

    align-items: center;

    width: 100%;

    padding: 34px 0;
}


/* ========================================
   LEFT CONTENT
======================================== */

body.single-product
.ln-product-description-block__content {
    max-width: 650px;
}


body.single-product
.ln-product-description-block__content > p {
    margin: 0 0 24px;

    font-family: var(--ln-font-body);
    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;

    color: var(--ln-text);
}


/* Feature list */
body.single-product
.ln-product-description-features {
    display: grid;

    gap: 11px;

    margin: 0;
    padding: 0;

    list-style: none;
}


body.single-product
.ln-product-description-features li {
    position: relative;

    margin: 0;
    padding-left: 20px;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 400;

    line-height: 1.55;

    color: var(--ln-text);
}


/* Burgundy diamond bullet */
body.single-product
.ln-product-description-features li::before {
    content: "";

    position: absolute;

    top: .65em;
    left: 1px;

    width: 6px;
    height: 6px;

    background: var(--ln-burgundy-light);

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* ========================================
   RIGHT IMAGE
======================================== */

body.single-product
.ln-product-description-block__media {
    position: relative;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 4 / 3;

    background: var(--ln-burgundy);

    border-radius: var(--ln-radius);
}


body.single-product
.ln-product-description-block__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 0;
}


/* Subtle luxury overlay */
body.single-product
.ln-product-description-block__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(43, 0, 8, .05),
            rgba(43, 0, 8, .42)
        );

    pointer-events: none;
}


/* Image caption */
body.single-product
.ln-product-description-block__caption {
    position: absolute;

    z-index: 2;

    top: 50%;
    right: 24px;

    max-width: 180px;

    transform: translateY(-50%);

    font-family: var(--ln-font-heading);
    font-size: 25px;
    font-weight: 500;

    line-height: 1.05;

    text-align: right;

    color: var(--ln-white);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    body.single-product
    .ln-product-description-block {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, .8fr);

        gap: 32px;
    }


    body.single-product
    .ln-product-description-block__caption {
        font-size: 22px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product
    .ln-product-description-block {
        display: flex;
        flex-direction: column;

        gap: 28px;

        padding: 24px 0;
    }


    body.single-product
    .ln-product-description-block__content {
        max-width: none;
    }


    body.single-product
    .ln-product-description-block__content > p {
        font-size: 14px;
    }


    body.single-product
    .ln-product-description-features li {
        font-size: 13px;
    }


    body.single-product
    .ln-product-description-block__media {
        aspect-ratio: 4 / 3;
    }


    body.single-product
    .ln-product-description-block__caption {
        right: 20px;

        max-width: 160px;

        font-size: 22px;
    }

}
/* ========================================
   21. LOVE NEST — PREMIUM PRODUCT TABS
======================================== */


/* Main tabs area */
body.single-product
.woocommerce-tabs {
    margin-top: 72px;

    border: 0;
}


/* ========================================
   TAB NAVIGATION
======================================== */

body.single-product
.woocommerce-tabs
ul.tabs {

    display: flex;
    align-items: center;

    gap: 34px;

    margin: 0 !important;
    padding: 0 !important;

    border-bottom:
        1px solid
        rgba(43, 0, 8, .12);
}


/* Remove WooCommerce decorative elements */
body.single-product
.woocommerce-tabs
ul.tabs::before,

body.single-product
.woocommerce-tabs
ul.tabs::after,

body.single-product
.woocommerce-tabs
ul.tabs li::before,

body.single-product
.woocommerce-tabs
ul.tabs li::after {
    display: none !important;
}


/* Individual tab */
body.single-product
.woocommerce-tabs
ul.tabs li {

    position: relative;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
}


/* Tab link */
body.single-product
.woocommerce-tabs
ul.tabs li a {

    display: block;

    padding: 0 0 15px !important;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;

    line-height: 1.3;

    letter-spacing: 1.15px;
    text-transform: uppercase;

    text-decoration: none;

    color: var(--ln-muted) !important;

    transition:
        color var(--ln-transition);
}


/* Hover */
body.single-product
.woocommerce-tabs
ul.tabs li a:hover {
    color: var(--ln-burgundy-light) !important;
}


/* Active tab text */
body.single-product
.woocommerce-tabs
ul.tabs li.active a {
    color: var(--ln-burgundy-light) !important;
}


/* Active underline */
body.single-product
.woocommerce-tabs
ul.tabs li.active::after {

    content: "";

    display: block !important;

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: var(--ln-burgundy-light);
}


/* ========================================
   TAB CONTENT PANEL
======================================== */

body.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel {

    margin: 0 !important;

    padding: 38px 0 10px !important;

    background: transparent;

    border: 0;

    box-shadow: none;
}


/* Remove default headings */
body.single-product
.woocommerce-Tabs-panel
> h2:first-child {
    display: none;
}


/* Generic tab content */
body.single-product
.ln-tab-content {

    max-width: 820px;

    font-family: var(--ln-font-body);

    color: var(--ln-text);
}


/* Care / Delivery heading */
body.single-product
.ln-tab-content h2 {

    display: block !important;

    margin: 0 0 18px;

    font-family: var(--ln-font-heading);
    font-size: 30px;
    font-weight: 500;

    line-height: 1.1;

    color: var(--ln-text);
}


/* Paragraphs */
body.single-product
.ln-tab-content p,

body.single-product
.ln-tab-content__text p {

    margin: 0 0 14px;

    font-size: 14px;
    line-height: 1.8;

    color: var(--ln-text);
}


/* Lists */
body.single-product
.ln-tab-content ul {

    margin: 20px 0 0;
    padding: 0;

    list-style: none;
}


body.single-product
.ln-tab-content li {

    position: relative;

    margin: 0 0 10px;
    padding-left: 20px;

    font-size: 14px;
    line-height: 1.65;
}


/* Love Nest diamond bullet */
body.single-product
.ln-tab-content li::before {

    content: "";

    position: absolute;

    top: .7em;
    left: 2px;

    width: 6px;
    height: 6px;

    background: var(--ln-burgundy-light);

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* ========================================
   REVIEWS
======================================== */

body.single-product
#reviews {

    font-family: var(--ln-font-body);

    color: var(--ln-text);
}


body.single-product
#reviews
#comments h2 {

    margin-bottom: 24px;

    font-family: var(--ln-font-heading);
    font-size: 30px;
    font-weight: 500;

    color: var(--ln-text);
}


body.single-product
#review_form_wrapper {

    margin-top: 32px;
}


body.single-product
#review_form
textarea {

    width: 100%;

    min-height: 130px;

    padding: 14px 16px;

    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    box-shadow: none;
}


body.single-product
#review_form
textarea:focus {

    outline: none;

    border-color: var(--ln-burgundy-light);
}


/* Review submit */
body.single-product
#review_form
#submit {

    min-height: 48px;

    padding: 0 28px;

    font-family: var(--ln-font-body);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-white);

    background: var(--ln-burgundy-light);

    border: 0;
    border-radius: var(--ln-radius);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product
    .woocommerce-tabs {
        margin-top: 52px;
    }


    body.single-product
    .woocommerce-tabs
    ul.tabs {

        gap: 0;

        overflow-x: auto;

        scrollbar-width: none;
    }


    body.single-product
    .woocommerce-tabs
    ul.tabs::-webkit-scrollbar {
        display: none;
    }


    body.single-product
    .woocommerce-tabs
    ul.tabs li {

        flex: 0 0 auto;

        margin-right: 24px !important;
    }


    body.single-product
    .woocommerce-tabs
    ul.tabs li a {

        padding-bottom: 13px !important;

        font-size: 10px;

        white-space: nowrap;
    }


    body.single-product
    .woocommerce-tabs
    .woocommerce-Tabs-panel {

        padding-top: 28px !important;
    }


    body.single-product
    .ln-tab-content h2,

    body.single-product
    #reviews #comments h2 {

        font-size: 26px;
    }

}
/* ========================================
   22. PRODUCT TRUST BENEFITS
======================================== */

body.single-product
.ln-product-benefits {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    width: 100%;

    margin-top: 28px;
    padding-top: 24px;

    border-top:
        1px solid
        rgba(43, 0, 8, .10);
}


/* Individual benefit */
body.single-product
.ln-product-benefit {

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 0;
}


/* Icon */
body.single-product
.ln-product-benefit__icon {

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ln-gold);
}


body.single-product
.ln-product-benefit__icon svg {

    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Text */
body.single-product
.ln-product-benefit__text {

    font-family: var(--ln-font-body);

    font-size: 10px;
    font-weight: 500;

    line-height: 1.45;

    color: var(--ln-text);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    body.single-product
    .ln-product-benefits {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px 14px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    body.single-product
    .ln-product-benefits {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        margin-top: 24px;
        padding-top: 20px;

        gap: 18px;
    }


    body.single-product
    .ln-product-benefit__text {

        font-size: 10px;
    }

}
/* Hide every WooCommerce variation reset control */
body.single-product .reset_variations,
body.single-product a.reset_variations,
body.single-product form.cart .reset_variations {
    display: none !important;
    visibility: hidden !important;
}
/* ========================================
   23. BUY NOW BUTTON
======================================== */

body.single-product
.ln-buy-now-button {

    flex: 0 0 100%;

    width: 100%;
    min-height: 52px;

    margin: 2px 0 0 !important;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--ln-burgundy);

    background: var(--ln-gold);

    border: 1px solid var(--ln-gold);
    border-radius: var(--ln-radius);

    cursor: pointer;

    box-shadow: none;

    transition:
        color var(--ln-transition),
        background-color var(--ln-transition),
        border-color var(--ln-transition);
}


body.single-product
.ln-buy-now-button:hover {

    color: var(--ln-white);

    background: var(--ln-burgundy-light);

    border-color: var(--ln-burgundy-light);
}


/* Buy Now normal state */
body.single-product
.ln-buy-now-button {
    opacity: 1;
}

/* Disable only when WooCommerce marks the variation purchase area disabled */
body.single-product
.woocommerce-variation-add-to-cart-disabled
.ln-buy-now-button {
    opacity: .45;
    pointer-events: none;
    cursor: not-allowed;
}


/* Mobile remains full width */
@media (max-width: 767px) {

    body.single-product
    .ln-buy-now-button {

        min-height: 52px;
    }

}
/* ========================================
   24. SINGLE PRODUCT — MOBILE POLISH
======================================== */

/* Remove ShopEngine / comparison controls that can appear as a lone
   circular-arrows icon inside the purchase form. */
body.single-product form.cart [class*="compare"],
body.single-product form.cart [class*="comparison"],
body.single-product form.cart a[title*="Compare"],
body.single-product form.cart button[title*="Compare"] {
    display: none !important;
    visibility: hidden !important;
}

@media (max-width: 767px) {

    /* Avoid double top-spacing from both the WooCommerce container
       and the product grid. */
    body.single-product div.product {
        margin-top: 0;
    }

    body.single-product
    .woocommerce-product-gallery {
        margin-bottom: 24px !important;
    }

    /* Product heading: still premium, but less dominant on a phone. */
    body.single-product div.product
    .summary .product_title {
        font-size: 34px;
        line-height: 1.03;
        letter-spacing: -0.35px;
    }

    /* Keep swatches comfortable without wasting vertical space. */
    body.single-product
    .ln-color-variation-picker {
        margin-bottom: 26px;
    }

    body.single-product
    .ln-color-variation-picker__options {
        gap: 12px 14px;
    }

    body.single-product
    .ln-color-variation-swatch__label {
        font-size: 11px;
    }

    /* Purchase controls stay touch-friendly but compact. */
    body.single-product
    .ln-option-buttons label span {
        min-height: 48px;
    }

    body.single-product
    textarea.ln-personal-note {
        min-height: 104px;
    }

    /* Trust row */
    body.single-product
    .ln-product-benefits {
        gap: 20px 16px;
    }

    body.single-product
    .ln-product-benefit__text {
        font-size: 10.5px;
        line-height: 1.4;
    }

    /* Tabs remain one clean horizontal rail and can scroll on
       narrower devices instead of squeezing or wrapping. */
    body.single-product
    .woocommerce-tabs {
        margin-top: 46px;
    }

    body.single-product
    .woocommerce-tabs ul.tabs {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    body.single-product
    .woocommerce-tabs ul.tabs li {
        scroll-snap-align: start;
        margin-right: 20px !important;
    }

    body.single-product
    .woocommerce-tabs ul.tabs li:last-child {
        margin-right: 0 !important;
    }

    body.single-product
    .woocommerce-tabs ul.tabs li a {
        font-size: 10px;
        letter-spacing: .9px;
    }

    /* Editorial description */
    body.single-product
    .ln-product-description-block {
        gap: 22px;
        padding: 22px 0;
    }

    body.single-product
    .ln-product-description-block__content > p {
        line-height: 1.72;
    }

    body.single-product
    .ln-product-description-features {
        gap: 10px;
    }
}

@media (max-width: 480px) {

    body.single-product div.product
    .summary .product_title {
        font-size: 32px;
    }

    body.single-product
    .ln-color-variation-swatch__circle {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    body.single-product
    .ln-color-variation-picker__options {
        gap: 12px;
    }
}

/* ========================================
   24. LOVE NEST — PREMIUM CART PAGE
   Classic WooCommerce cart shortcode
======================================== */

body.woocommerce-cart {
    background: var(--ln-ivory);
}

body.woocommerce-cart main .woocommerce {
    width: min(calc(100% - 64px), var(--ln-container));
    margin: 0 auto;
    padding: 64px 0 100px;
    color: var(--ln-text);
}

/* Notices */
body.woocommerce-cart main .woocommerce
.woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

body.woocommerce-cart main .woocommerce
.woocommerce-message,
body.woocommerce-cart main .woocommerce
.woocommerce-error,
body.woocommerce-cart main .woocommerce
.woocommerce-info {
    margin: 0 0 18px;
    padding: 14px 18px;
    font-family: var(--ln-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ln-text);
    background: var(--ln-cream);
    border: 1px solid rgba(82, 13, 27, .12);
    border-left: 3px solid var(--ln-burgundy-light);
    border-radius: var(--ln-radius);
}

/* ----------------------------------------
   CART HEADER
---------------------------------------- */

body.woocommerce-cart .ln-cart-header {
    max-width: 660px;
    margin: 0 0 46px;
}

body.woocommerce-cart .ln-cart-header__eyebrow,
body.woocommerce-cart .ln-cart-summary__eyebrow {
    display: block;
    margin: 0 0 10px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ln-gold);
}

body.woocommerce-cart .ln-cart-header__title {
    margin: 0 0 10px;
    font-family: var(--ln-font-heading);
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.4px;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-header__text {
    max-width: 560px;
    margin: 0;
    font-family: var(--ln-font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--ln-muted);
}

/* ----------------------------------------
   TWO-COLUMN CART LAYOUT
---------------------------------------- */

body.woocommerce-cart .ln-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .72fr);
    gap: 64px;
    align-items: start;
}

body.woocommerce-cart .ln-cart-main,
body.woocommerce-cart .ln-cart-summary {
    min-width: 0;
}

body.woocommerce-cart .ln-cart-main__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(43, 0, 8, .12);
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

/* ----------------------------------------
   CART ITEM
---------------------------------------- */

body.woocommerce-cart .ln-cart-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-cart .ln-cart-item__media a,
body.woocommerce-cart .ln-cart-item__media img {
    display: block;
    width: 100%;
}

body.woocommerce-cart .ln-cart-item__media img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    background: var(--ln-cream);
    border-radius: var(--ln-radius);
}

body.woocommerce-cart .ln-cart-item__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

body.woocommerce-cart .ln-cart-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

body.woocommerce-cart .ln-cart-item__identity {
    min-width: 0;
}

body.woocommerce-cart .ln-cart-item__name {
    display: inline-block;
    max-width: 560px;
    margin: 0 0 7px;
    font-family: var(--ln-font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
    text-decoration: none;
    color: var(--ln-text);
    transition: color var(--ln-transition);
}

body.woocommerce-cart a.ln-cart-item__name:hover {
    color: var(--ln-burgundy-light);
}

body.woocommerce-cart .ln-cart-item__unit-price {
    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ln-burgundy-light);
}

body.woocommerce-cart .ln-cart-item__subtotal {
    flex: 0 0 auto;
    text-align: right;
}

body.woocommerce-cart .ln-cart-item__subtotal span {
    display: block;
    margin: 0 0 5px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-cart .ln-cart-item__subtotal strong {
    font-family: var(--ln-font-body);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--ln-text);
}

/* ----------------------------------------
   CONFIGURATION / ITEM META
---------------------------------------- */

body.woocommerce-cart .ln-cart-item__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    margin: 20px 0 24px;
    padding: 0;
}

body.woocommerce-cart .ln-cart-meta {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 7px;
    margin: 0;
    min-width: 0;
}

body.woocommerce-cart .ln-cart-meta dt,
body.woocommerce-cart .ln-cart-meta dd {
    margin: 0;
    padding: 0;
    font-family: var(--ln-font-body);
    font-size: 11px;
    line-height: 1.5;
}

body.woocommerce-cart .ln-cart-meta dt {
    font-weight: 600;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-meta dt::after {
    content: ":";
}

body.woocommerce-cart .ln-cart-meta dd {
    min-width: 0;
    color: var(--ln-muted);
    overflow-wrap: anywhere;
}

body.woocommerce-cart .ln-cart-meta dd .woocommerce-Price-amount {
    color: inherit;
}

body.woocommerce-cart .ln-cart-meta--note {
    grid-column: 1 / -1;
    padding: 11px 13px;
    background: rgba(242, 230, 226, .58);
    border-radius: var(--ln-radius);
}

/* ----------------------------------------
   QUANTITY + REMOVE
---------------------------------------- */

body.woocommerce-cart .ln-cart-item__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
}

body.woocommerce-cart .ln-cart-qty {
    display: inline-grid;
    grid-template-columns: 38px 50px 38px;
    align-items: stretch;
    min-height: 44px;
    overflow: hidden;
    background: var(--ln-cream);
    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);
}

body.woocommerce-cart .ln-cart-qty__button {
    min-width: 0;
    width: 38px;
    height: 44px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    color: var(--ln-muted);
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: color var(--ln-transition), background-color var(--ln-transition);
}

body.woocommerce-cart .ln-cart-qty__button:hover {
    color: var(--ln-burgundy-light);
    background: var(--ln-blush);
}

body.woocommerce-cart .ln-cart-qty .quantity {
    display: block;
    margin: 0 !important;
}

body.woocommerce-cart .ln-cart-qty input.qty {
    width: 50px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: var(--ln-text);
    background: transparent;
    border: 0 !important;
    border-left: 1px solid rgba(43, 0, 8, .08) !important;
    border-right: 1px solid rgba(43, 0, 8, .08) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    appearance: textfield;
    -moz-appearance: textfield;
}

body.woocommerce-cart .ln-cart-qty input.qty::-webkit-outer-spin-button,
body.woocommerce-cart .ln-cart-qty input.qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

body.woocommerce-cart .ln-cart-qty__single {
    grid-column: 1 / -1;
    min-width: 60px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 13px;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-remove {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    width: auto !important;
    height: auto !important;
    margin: 0;
    padding: 8px 0;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ln-muted) !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: color var(--ln-transition);
}

body.woocommerce-cart .ln-cart-remove:hover {
    color: var(--ln-burgundy-light) !important;
}

body.woocommerce-cart .ln-cart-remove svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------------
   BELOW ITEMS ACTIONS
---------------------------------------- */

body.woocommerce-cart .ln-cart-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
}

body.woocommerce-cart .ln-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ln-burgundy-light);
}

body.woocommerce-cart .ln-cart-continue span {
    font-size: 16px;
    line-height: 1;
}

body.woocommerce-cart .ln-cart-update {
    min-height: 42px;
    padding: 0 18px !important;
    font-family: var(--ln-font-body) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-burgundy-light) !important;
    background: transparent !important;
    border: 1px solid rgba(82, 13, 27, .24) !important;
    border-radius: var(--ln-radius) !important;
    box-shadow: none !important;
}

/* Kept in the form as a fallback; quantity changes auto-submit. */
body.woocommerce-cart .ln-cart-update:disabled {
    opacity: .45;
}

/* ----------------------------------------
   ORDER SUMMARY
---------------------------------------- */

body.woocommerce-cart .ln-cart-summary {
    position: sticky;
    top: 28px;
    padding: 30px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-cart .ln-cart-summary__eyebrow {
    color: var(--ln-gold);
}

body.woocommerce-cart .ln-cart-summary__title {
    margin: 0 0 24px;
    font-family: var(--ln-font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ln-text);
}

/* Coupon */
body.woocommerce-cart .ln-cart-coupon {
    margin: 0 0 26px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-cart .ln-cart-coupon > label {
    display: block;
    margin: 0 0 9px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-coupon__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

body.woocommerce-cart .ln-cart-coupon input {
    width: 100%;
    min-width: 0;
    height: 48px;
    margin: 0;
    padding: 0 14px;
    font-family: var(--ln-font-body);
    font-size: 12px;
    color: var(--ln-text);
    background: var(--ln-white);
    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);
    box-shadow: none;
}

body.woocommerce-cart .ln-cart-coupon input:focus {
    outline: none;
    border-color: var(--ln-burgundy-light);
}

body.woocommerce-cart .ln-cart-coupon button {
    min-height: 48px;
    padding: 0 18px !important;
    font-family: var(--ln-font-body) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;
    box-shadow: none !important;
}

/* ----------------------------------------
   NATIVE CART TOTALS INSIDE LOVE NEST CARD
---------------------------------------- */

body.woocommerce-cart .ln-cart-summary .cart_totals {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-cart .ln-cart-summary .cart_totals > h2 {
    display: none;
}

body.woocommerce-cart .ln-cart-summary .shop_table {
    width: 100%;
    margin: 0;
    border: 0 !important;
    border-collapse: collapse;
    background: transparent;
}

body.woocommerce-cart .ln-cart-summary .shop_table th,
body.woocommerce-cart .ln-cart-summary .shop_table td {
    padding: 13px 0 !important;
    font-family: var(--ln-font-body);
    font-size: 12px;
    line-height: 1.5;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(43, 0, 8, .08) !important;
}

body.woocommerce-cart .ln-cart-summary .shop_table th {
    width: 46%;
    font-weight: 500;
    text-align: left;
    color: var(--ln-muted);
}

body.woocommerce-cart .ln-cart-summary .shop_table td {
    font-weight: 600;
    text-align: right;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-summary .shop_table .order-total th,
body.woocommerce-cart .ln-cart-summary .shop_table .order-total td {
    padding-top: 20px !important;
    padding-bottom: 18px !important;
    border-bottom: 0 !important;
}

body.woocommerce-cart .ln-cart-summary .shop_table .order-total th {
    font-family: var(--ln-font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--ln-text);
}

body.woocommerce-cart .ln-cart-summary .shop_table .order-total td,
body.woocommerce-cart .ln-cart-summary .shop_table .order-total .woocommerce-Price-amount {
    font-family: var(--ln-font-heading);
    font-size: 25px;
    font-weight: 600;
    color: var(--ln-burgundy-light);
}

/* Shipping calculator / shipping methods */
body.woocommerce-cart .ln-cart-summary
.woocommerce-shipping-methods {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-cart .ln-cart-summary
.woocommerce-shipping-methods li {
    margin: 0 0 7px;
}

body.woocommerce-cart .ln-cart-summary
.woocommerce-shipping-destination,
body.woocommerce-cart .ln-cart-summary
.woocommerce-shipping-calculator {
    margin: 8px 0 0;
    font-family: var(--ln-font-body);
    font-size: 11px;
    line-height: 1.5;
    color: var(--ln-muted);
}

/* Checkout CTA */
body.woocommerce-cart .ln-cart-summary
.wc-proceed-to-checkout {
    padding: 8px 0 0 !important;
}

body.woocommerce-cart .ln-cart-summary
.checkout-button {
    width: 100%;
    min-height: 52px;
    margin: 0 !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;
    box-shadow: none !important;
    transition: color var(--ln-transition), background-color var(--ln-transition), border-color var(--ln-transition);
}

body.woocommerce-cart .ln-cart-summary
.checkout-button:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
}

/* ----------------------------------------
   SUMMARY REASSURANCE
---------------------------------------- */

body.woocommerce-cart .ln-cart-summary__reassurance {
    display: grid;
    gap: 11px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-cart .ln-cart-summary__reassurance > div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    line-height: 1.45;
    color: var(--ln-muted);
}

body.woocommerce-cart .ln-cart-summary__reassurance svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--ln-gold);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------------
   EMPTY CART
---------------------------------------- */

body.woocommerce-cart .cart-empty.woocommerce-info {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 28px;
    text-align: center;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-cart .return-to-shop {
    text-align: center;
}

body.woocommerce-cart .return-to-shop .button {
    min-height: 50px;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;
}

/* ========================================
   CART — TABLET
======================================== */

@media (max-width: 1024px) {

    body.woocommerce-cart main .woocommerce {
        width: calc(100% - 48px);
        padding-top: 52px;
        padding-bottom: 80px;
    }

    body.woocommerce-cart .ln-cart-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr);
        gap: 36px;
    }

    body.woocommerce-cart .ln-cart-item {
        grid-template-columns: 126px minmax(0, 1fr);
        gap: 20px;
    }

    body.woocommerce-cart .ln-cart-item__name {
        font-size: 21px;
    }

    body.woocommerce-cart .ln-cart-item__meta {
        grid-template-columns: 1fr;
    }

    body.woocommerce-cart .ln-cart-summary {
        padding: 24px;
    }
}

/* ========================================
   CART — MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-cart main .woocommerce {
        width: calc(100% - 32px);
        padding-top: 34px;
        padding-bottom: 56px;
    }

    body.woocommerce-cart .ln-cart-header {
        margin-bottom: 34px;
    }

    body.woocommerce-cart .ln-cart-header__title {
        font-size: 40px;
    }

    body.woocommerce-cart .ln-cart-header__text {
        font-size: 13px;
    }

    body.woocommerce-cart .ln-cart-layout {
        display: block;
    }

    body.woocommerce-cart .ln-cart-main__head {
        padding-bottom: 13px;
    }

    body.woocommerce-cart .ln-cart-item {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 15px;
        padding: 22px 0;
    }

    body.woocommerce-cart .ln-cart-item__top {
        display: block;
    }

    body.woocommerce-cart .ln-cart-item__name {
        margin-bottom: 6px;
        font-size: 20px;
    }

    body.woocommerce-cart .ln-cart-item__subtotal {
        margin-top: 12px;
        text-align: left;
    }

    body.woocommerce-cart .ln-cart-item__subtotal span {
        display: none;
    }

    body.woocommerce-cart .ln-cart-item__meta {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 17px 0 20px;
    }

    body.woocommerce-cart .ln-cart-meta {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    body.woocommerce-cart .ln-cart-item__actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        gap: 12px;
    }

    body.woocommerce-cart .ln-cart-footer-actions {
        gap: 12px;
        padding-top: 18px;
    }

    body.woocommerce-cart .ln-cart-update {
        min-height: 40px;
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    body.woocommerce-cart .ln-cart-summary {
        position: static;
        margin-top: 42px;
        padding: 24px 20px;
    }

    body.woocommerce-cart .ln-cart-summary__title {
        font-size: 30px;
    }

    body.woocommerce-cart .ln-cart-coupon__row {
        grid-template-columns: minmax(0, 1fr) 88px;
    }

    body.woocommerce-cart .ln-cart-summary .shop_table th,
    body.woocommerce-cart .ln-cart-summary .shop_table td {
        font-size: 11px;
    }

    body.woocommerce-cart .ln-cart-summary .shop_table .order-total th {
        font-size: 22px;
    }

    body.woocommerce-cart .ln-cart-summary .shop_table .order-total td,
    body.woocommerce-cart .ln-cart-summary .shop_table .order-total .woocommerce-Price-amount {
        font-size: 23px;
    }
}

/* ========================================
   CART — SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    body.woocommerce-cart .ln-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 13px;
    }

    body.woocommerce-cart .ln-cart-item__name {
        font-size: 18px;
    }

    body.woocommerce-cart .ln-cart-meta {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    body.woocommerce-cart .ln-cart-footer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    body.woocommerce-cart .ln-cart-continue,
    body.woocommerce-cart .ln-cart-update {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   25. LOVE NEST — CLASSIC CHECKOUT PAGE
======================================== */

body.woocommerce-checkout {
    background: var(--ln-ivory);
}

body.woocommerce-checkout .ln-checkout-page {
    width: min(
        calc(100% - 64px),
        var(--ln-container)
    );

    margin: 0 auto;
    padding: 72px 0 100px;

    font-family: var(--ln-font-body);
    color: var(--ln-text);
}

/* ========================================
   CHECKOUT HEADER
======================================== */

body.woocommerce-checkout .ln-checkout-header {
    max-width: 650px;
    margin: 0 0 52px;
}

body.woocommerce-checkout .ln-checkout-header__eyebrow,
body.woocommerce-checkout .ln-checkout-section-kicker,
body.woocommerce-checkout .ln-checkout-summary__eyebrow {
    display: block;

    margin: 0 0 10px;

    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--ln-gold);
}

body.woocommerce-checkout .ln-checkout-header__title {
    margin: 0 0 10px;

    font-family: var(--ln-font-heading);
    font-size: 50px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.5px;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-header__text {
    max-width: 560px;
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: var(--ln-muted);
}

/* ========================================
   LOGIN / COUPON / NOTICE AREA
======================================== */

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout form.checkout_coupon {
    max-width: 760px;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
    margin: 0 0 18px !important;
    padding: 14px 18px !important;

    font-family: var(--ln-font-body);
    font-size: 12px;
    line-height: 1.6;

    color: var(--ln-text);
    background: var(--ln-cream);

    border: 1px solid rgba(43, 0, 8, .10);
    border-top: 0;
    border-radius: var(--ln-radius);

    box-shadow: none;
}

body.woocommerce-checkout .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-error::before {
    display: none;
}

body.woocommerce-checkout .woocommerce-info a,
body.woocommerce-checkout .woocommerce-message a {
    font-weight: 600;
    color: var(--ln-burgundy-light);
}

body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout form.woocommerce-form-login {
    margin: 0 0 26px !important;
    padding: 18px !important;

    background: var(--ln-cream);

    border: 1px solid rgba(43, 0, 8, .10) !important;
    border-radius: var(--ln-radius);
}

body.woocommerce-checkout form.checkout_coupon p,
body.woocommerce-checkout form.woocommerce-form-login p {
    margin-top: 0;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
    margin-bottom: 0;
}

body.woocommerce-checkout form.checkout_coupon button,
body.woocommerce-checkout form.woocommerce-form-login button {
    min-height: 50px;
    padding: 0 22px !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;

    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;
}

/* ========================================
   CHECKOUT TWO-COLUMN LAYOUT
======================================== */

body.woocommerce-checkout .ln-checkout-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 420px);

    gap: 64px;
    align-items: start;
}

body.woocommerce-checkout .ln-checkout-main,
body.woocommerce-checkout .ln-checkout-summary {
    min-width: 0;
}

body.woocommerce-checkout .ln-checkout-main__intro {
    margin: 0 0 30px;
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-checkout .ln-checkout-main__intro h2 {
    margin: 0 0 8px;

    font-family: var(--ln-font-heading);
    font-size: 32px;
    font-weight: 500;

    line-height: 1.1;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-main__intro p {
    max-width: 620px;
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: var(--ln-muted);
}

/* ========================================
   CUSTOMER DETAILS
======================================== */

body.woocommerce-checkout .ln-checkout-customer-details {
    float: none !important;
    width: 100% !important;

    margin: 0 !important;
}

body.woocommerce-checkout .ln-checkout-customer-details::before,
body.woocommerce-checkout .ln-checkout-customer-details::after {
    display: none !important;
}

body.woocommerce-checkout .ln-checkout-customer-details .col-1,
body.woocommerce-checkout .ln-checkout-customer-details .col-2 {
    float: none !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
    margin: 0 0 34px;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout .woocommerce-shipping-fields > h3 {
    margin: 0 0 20px;

    font-family: var(--ln-font-heading);
    font-size: 27px;
    font-weight: 500;

    line-height: 1.15;

    color: var(--ln-text);
}

body.woocommerce-checkout #ship-to-different-address {
    margin: 0 0 20px;

    font-family: var(--ln-font-body);
    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;
}

body.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   CHECKOUT FIELDS
======================================== */

body.woocommerce-checkout .woocommerce-checkout .form-row {
    margin: 0 0 16px;
    padding: 0;
}

body.woocommerce-checkout .woocommerce-checkout .form-row-first,
body.woocommerce-checkout .woocommerce-checkout .form-row-last {
    width: calc(50% - 7px);
}

body.woocommerce-checkout .woocommerce-checkout .form-row-first {
    float: left;
}

body.woocommerce-checkout .woocommerce-checkout .form-row-last {
    float: right;
}

body.woocommerce-checkout .woocommerce-checkout .form-row-wide {
    clear: both;
}

body.woocommerce-checkout .woocommerce-checkout label {
    margin: 0 0 7px;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: .35px;

    color: var(--ln-text);
}

body.woocommerce-checkout .woocommerce-checkout abbr.required {
    color: var(--ln-burgundy-light);
    text-decoration: none;
}

body.woocommerce-checkout .woocommerce-checkout input.input-text,
body.woocommerce-checkout .woocommerce-checkout textarea,
body.woocommerce-checkout .woocommerce-checkout select,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;

    min-height: 52px;

    padding: 0 15px;

    font-family: var(--ln-font-body);
    font-size: 13px;

    color: var(--ln-text);
    background: var(--ln-cream);

    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);

    box-shadow: none;
    outline: none;

    transition:
        border-color var(--ln-transition),
        box-shadow var(--ln-transition);
}

body.woocommerce-checkout .woocommerce-checkout textarea {
    min-height: 116px;
    padding-top: 13px;
    padding-bottom: 13px;

    line-height: 1.6;
    resize: vertical;
}

body.woocommerce-checkout .woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout .woocommerce-checkout textarea:focus,
body.woocommerce-checkout .woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
body.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--ln-burgundy-light);
    box-shadow: 0 0 0 2px rgba(82, 13, 27, .06);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;

    padding-right: 40px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;

    line-height: 1.4;

    color: var(--ln-text);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 12px;

    transform: translateY(-50%);
}

body.woocommerce-checkout .woocommerce-invalid input.input-text,
body.woocommerce-checkout .woocommerce-invalid .select2-selection {
    border-color: #A6293E !important;
}

body.woocommerce-checkout .woocommerce-validated input.input-text,
body.woocommerce-checkout .woocommerce-validated .select2-selection {
    border-color: rgba(82, 13, 27, .35) !important;
}

/* Checkbox / radio controls */
body.woocommerce-checkout .woocommerce-checkout input[type="checkbox"],
body.woocommerce-checkout .woocommerce-checkout input[type="radio"] {
    accent-color: var(--ln-burgundy-light);
}

/* ========================================
   LEFT-SIDE ASSURANCE
======================================== */

body.woocommerce-checkout .ln-checkout-assurance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

    margin-top: 18px;
    padding-top: 24px;

    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-checkout .ln-checkout-assurance__item {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}

body.woocommerce-checkout .ln-checkout-assurance__icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ln-gold);
}

body.woocommerce-checkout .ln-checkout-assurance__icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-checkout .ln-checkout-assurance__item strong {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
    font-weight: 600;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-assurance__item small {
    display: block;

    font-size: 10px;
    line-height: 1.5;

    color: var(--ln-muted);
}

/* ========================================
   ORDER SUMMARY CARD
======================================== */

body.woocommerce-checkout .ln-checkout-summary {
    position: sticky;
    top: 28px;

    padding: 30px 28px;

    background: var(--ln-cream);

    border: 1px solid rgba(43, 0, 8, .12);
    border-radius: var(--ln-radius);

    box-shadow: none;
}

body.woocommerce-checkout .ln-checkout-summary__title {
    margin: 0 0 24px;

    font-family: var(--ln-font-heading);
    font-size: 34px;
    font-weight: 500;

    line-height: 1.05;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-review {
    width: 100%;
}

/* ========================================
   CHECKOUT PRODUCT SUMMARY
======================================== */

body.woocommerce-checkout .ln-checkout-order-table {
    width: 100%;

    margin: 0 !important;

    border: 0 !important;
    border-collapse: collapse;

    background: transparent;
}

body.woocommerce-checkout .ln-checkout-order-table > tbody > tr,
body.woocommerce-checkout .ln-checkout-order-table > tfoot > tr {
    border: 0;
}

body.woocommerce-checkout .ln-checkout-order-table th,
body.woocommerce-checkout .ln-checkout-order-table td {
    padding: 0;

    border: 0 !important;

    background: transparent !important;
}

body.woocommerce-checkout .ln-checkout-product__cell {
    padding: 0 0 22px !important;
}

body.woocommerce-checkout .ln-checkout-product__row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);

    gap: 14px;
}

body.woocommerce-checkout .ln-checkout-product__media {
    position: relative;
}

body.woocommerce-checkout .ln-checkout-product__media img {
    display: block;

    width: 74px;
    height: 74px;

    object-fit: cover;

    border-radius: var(--ln-radius);
}

body.woocommerce-checkout .ln-checkout-product__quantity {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 22px;
    height: 22px;

    padding: 0 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    font-weight: 600;

    color: var(--ln-white);
    background: var(--ln-burgundy-light);

    border-radius: 50%;
}

body.woocommerce-checkout .ln-checkout-product__content {
    min-width: 0;
}

body.woocommerce-checkout .ln-checkout-product__identity {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 9px;
}

body.woocommerce-checkout .ln-checkout-product__name {
    min-width: 0;

    font-family: var(--ln-font-heading);
    font-size: 17px;
    font-weight: 500;

    line-height: 1.15;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-product__line-price {
    flex: 0 0 auto;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    color: var(--ln-burgundy-light);
}

body.woocommerce-checkout .ln-checkout-product__meta {
    display: grid;
    gap: 4px;

    margin: 0;
}

body.woocommerce-checkout .ln-checkout-product-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);

    gap: 5px;

    margin: 0;
}

body.woocommerce-checkout .ln-checkout-product-meta dt,
body.woocommerce-checkout .ln-checkout-product-meta dd {
    margin: 0;

    font-size: 9px;
    line-height: 1.45;
}

body.woocommerce-checkout .ln-checkout-product-meta dt {
    font-weight: 600;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-product-meta dd {
    min-width: 0;

    color: var(--ln-muted);
}

body.woocommerce-checkout .ln-checkout-product-meta--note {
    grid-template-columns: 1fr;

    margin-top: 4px;
    padding: 7px 8px;

    background: var(--ln-blush);

    border-radius: 2px;
}

body.woocommerce-checkout .ln-checkout-product-meta--note dt {
    margin-bottom: 2px;
}

/* ========================================
   SUMMARY TOTALS
======================================== */

body.woocommerce-checkout .ln-checkout-order-table tfoot {
    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-checkout .ln-checkout-order-table tfoot tr th,
body.woocommerce-checkout .ln-checkout-order-table tfoot tr td {
    padding: 14px 0 !important;

    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 500;

    line-height: 1.5;

    color: var(--ln-muted);

    border-bottom: 1px solid rgba(43, 0, 8, .08) !important;
}

body.woocommerce-checkout .ln-checkout-order-table tfoot tr th {
    text-align: left;
}

body.woocommerce-checkout .ln-checkout-order-table tfoot tr td {
    text-align: right;
}

body.woocommerce-checkout .ln-checkout-order-table .order-total th,
body.woocommerce-checkout .ln-checkout-order-table .order-total td {
    padding-top: 20px !important;
    padding-bottom: 18px !important;

    border-bottom: 0 !important;
}

body.woocommerce-checkout .ln-checkout-order-table .order-total th {
    font-family: var(--ln-font-heading);
    font-size: 25px;
    font-weight: 500;

    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-order-table .order-total td,
body.woocommerce-checkout .ln-checkout-order-table .order-total .woocommerce-Price-amount {
    font-family: var(--ln-font-heading);
    font-size: 25px;
    font-weight: 600;

    color: var(--ln-burgundy-light);
}

/* Shipping methods */
body.woocommerce-checkout .ln-checkout-order-table ul#shipping_method {
    margin: 0;
    padding: 0;

    list-style: none;
}

body.woocommerce-checkout .ln-checkout-order-table ul#shipping_method li {
    margin: 0 0 6px;
}

body.woocommerce-checkout .ln-checkout-order-table ul#shipping_method li:last-child {
    margin-bottom: 0;
}

body.woocommerce-checkout .ln-checkout-order-table .woocommerce-shipping-destination {
    margin: 7px 0 0;

    font-size: 9px;
    line-height: 1.5;
}

/* ========================================
   PAYMENT METHODS
======================================== */

body.woocommerce-checkout #payment {
    margin-top: 12px;

    background: transparent !important;

    border-radius: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 !important;
    padding: 4px 0 0 !important;

    border: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods > li {
    margin: 0 0 9px !important;
    padding: 14px 14px !important;

    background: var(--ln-ivory);

    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-checkout #payment ul.payment_methods > li:last-child {
    margin-bottom: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
    margin: 0;

    font-size: 11px;
    font-weight: 600;

    color: var(--ln-text);
}

body.woocommerce-checkout #payment div.payment_box {
    margin: 12px 0 0 !important;
    padding: 12px !important;

    font-size: 10px;
    line-height: 1.6;

    color: var(--ln-muted);
    background: var(--ln-cream) !important;

    border: 1px solid rgba(43, 0, 8, .08);
    border-radius: 2px;
}

body.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

body.woocommerce-checkout #payment div.payment_box p:last-child {
    margin-bottom: 0;
}

/* ========================================
   TERMS + PLACE ORDER
======================================== */

body.woocommerce-checkout #payment .place-order {
    margin: 20px 0 0 !important;
    padding: 20px 0 0 !important;

    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p,
body.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    font-size: 9px;
    line-height: 1.6;

    color: var(--ln-muted);
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a,
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
    color: var(--ln-burgundy-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.woocommerce-checkout #place_order {
    float: none !important;

    width: 100%;
    min-height: 54px;

    margin: 0 !important;
    padding: 0 22px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--ln-font-body) !important;
    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;

    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;

    box-shadow: none !important;

    transition:
        color var(--ln-transition),
        background-color var(--ln-transition),
        border-color var(--ln-transition);
}

body.woocommerce-checkout #place_order:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
}

/* Processing state */
body.woocommerce-checkout .blockUI.blockOverlay {
    background: rgba(248, 241, 236, .75) !important;
}

/* ========================================
   CHECKOUT — TABLET
======================================== */

@media (max-width: 1024px) {

    body.woocommerce-checkout .ln-checkout-page {
        width: calc(100% - 48px);
        padding-top: 52px;
        padding-bottom: 80px;
    }

    body.woocommerce-checkout .ln-checkout-header {
        margin-bottom: 42px;
    }

    body.woocommerce-checkout .ln-checkout-header__title {
        font-size: 44px;
    }

    body.woocommerce-checkout .ln-checkout-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 370px);

        gap: 36px;
    }

    body.woocommerce-checkout .ln-checkout-summary {
        padding: 25px 22px;
    }

    body.woocommerce-checkout .ln-checkout-product__row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    body.woocommerce-checkout .ln-checkout-product__media img {
        width: 64px;
        height: 64px;
    }

    body.woocommerce-checkout .ln-checkout-product__identity {
        display: block;
    }

    body.woocommerce-checkout .ln-checkout-product__line-price {
        display: block;
        margin-top: 5px;
    }
}

/* ========================================
   CHECKOUT — MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-checkout .ln-checkout-page {
        width: calc(100% - 30px);
        padding-top: 34px;
        padding-bottom: 58px;
    }

    body.woocommerce-checkout .ln-checkout-header {
        margin-bottom: 32px;
    }

    body.woocommerce-checkout .ln-checkout-header__eyebrow,
    body.woocommerce-checkout .ln-checkout-section-kicker,
    body.woocommerce-checkout .ln-checkout-summary__eyebrow {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    body.woocommerce-checkout .ln-checkout-header__title {
        font-size: 40px;
    }

    body.woocommerce-checkout .ln-checkout-header__text {
        font-size: 13px;
    }

    body.woocommerce-checkout .ln-checkout-layout {
        display: flex;
        flex-direction: column;

        gap: 42px;
    }

    body.woocommerce-checkout .ln-checkout-main__intro h2 {
        font-size: 28px;
    }

    body.woocommerce-checkout .woocommerce-billing-fields > h3,
    body.woocommerce-checkout .woocommerce-additional-fields > h3,
    body.woocommerce-checkout .woocommerce-shipping-fields > h3 {
        font-size: 25px;
    }

    body.woocommerce-checkout .woocommerce-checkout .form-row-first,
    body.woocommerce-checkout .woocommerce-checkout .form-row-last {
        float: none;
        width: 100%;
    }

    body.woocommerce-checkout .woocommerce-checkout input.input-text,
    body.woocommerce-checkout .woocommerce-checkout textarea,
    body.woocommerce-checkout .woocommerce-checkout select,
    body.woocommerce-checkout .select2-container--default .select2-selection--single {
        min-height: 52px;
        font-size: 14px;
    }

    body.woocommerce-checkout .ln-checkout-assurance {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.woocommerce-checkout .ln-checkout-summary {
        position: static;

        width: 100%;
        padding: 24px 18px;
    }

    body.woocommerce-checkout .ln-checkout-summary__title {
        font-size: 31px;
    }

    body.woocommerce-checkout .ln-checkout-product__row {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 13px;
    }

    body.woocommerce-checkout .ln-checkout-product__media img {
        width: 66px;
        height: 66px;
    }

    body.woocommerce-checkout .ln-checkout-product__name {
        font-size: 16px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    body.woocommerce-checkout .ln-checkout-product-meta dt,
    body.woocommerce-checkout .ln-checkout-product-meta dd {
        font-size: 9px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta--note {
        grid-template-columns: 1fr;
    }

    body.woocommerce-checkout .ln-checkout-order-table .order-total th,
    body.woocommerce-checkout .ln-checkout-order-table .order-total td,
    body.woocommerce-checkout .ln-checkout-order-table .order-total .woocommerce-Price-amount {
        font-size: 23px;
    }

    body.woocommerce-checkout #payment ul.payment_methods > li {
        padding: 13px !important;
    }

    body.woocommerce-checkout #place_order {
        min-height: 54px;
    }
}

/* ========================================
   CHECKOUT — SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    body.woocommerce-checkout .ln-checkout-page {
        width: calc(100% - 28px);
    }

    body.woocommerce-checkout .ln-checkout-product__row {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    body.woocommerce-checkout .ln-checkout-product__media img {
        width: 60px;
        height: 60px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    body.woocommerce-checkout .ln-checkout-summary {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ========================================
   26. CHECKOUT MOBILE REFINEMENT
   Final responsive polish for Love Nest
======================================== */

@media (max-width: 767px) {

    /* Page rhythm */
    body.woocommerce-checkout .ln-checkout-page {
        width: calc(100% - 28px);
        padding-top: 30px;
        padding-bottom: 54px;
    }

    body.woocommerce-checkout .ln-checkout-header {
        margin-bottom: 26px;
    }

    body.woocommerce-checkout .ln-checkout-header__title {
        font-size: 38px;
        line-height: 1.02;
    }

    body.woocommerce-checkout .ln-checkout-header__text {
        max-width: 340px;
        font-size: 13px;
        line-height: 1.6;
    }

    /* Coupon / notices */
    body.woocommerce-checkout .woocommerce-notices-wrapper,
    body.woocommerce-checkout .woocommerce-form-login-toggle,
    body.woocommerce-checkout .woocommerce-form-coupon-toggle,
    body.woocommerce-checkout form.woocommerce-form-login,
    body.woocommerce-checkout form.checkout_coupon {
        width: 100%;
        max-width: none;
    }

    body.woocommerce-checkout .woocommerce-info,
    body.woocommerce-checkout .woocommerce-message,
    body.woocommerce-checkout .woocommerce-error {
        margin-bottom: 22px !important;
        padding: 13px 14px !important;
        font-size: 11px;
        line-height: 1.55;
    }

    body.woocommerce-checkout form.checkout_coupon,
    body.woocommerce-checkout form.woocommerce-form-login {
        padding: 14px !important;
    }

    /* Customer details */
    body.woocommerce-checkout .ln-checkout-main__intro {
        margin-bottom: 26px;
        padding-bottom: 20px;
    }

    body.woocommerce-checkout .ln-checkout-main__intro h2 {
        font-size: 29px;
    }

    body.woocommerce-checkout .ln-checkout-main__intro p {
        font-size: 12px;
        line-height: 1.65;
    }

    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields {
        margin-bottom: 30px;
    }

    body.woocommerce-checkout .woocommerce-billing-fields > h3,
    body.woocommerce-checkout .woocommerce-additional-fields > h3,
    body.woocommerce-checkout .woocommerce-shipping-fields > h3 {
        margin-bottom: 18px;
        font-size: 26px;
    }

    body.woocommerce-checkout .woocommerce-checkout .form-row {
        margin-bottom: 14px;
    }

    body.woocommerce-checkout .woocommerce-checkout label {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: .25px;
    }

    body.woocommerce-checkout .woocommerce-checkout input.input-text,
    body.woocommerce-checkout .woocommerce-checkout select,
    body.woocommerce-checkout .select2-container--default .select2-selection--single {
        min-height: 50px;
        padding-left: 13px;
        padding-right: 13px;
        font-size: 13px;
    }

    body.woocommerce-checkout .woocommerce-checkout textarea {
        min-height: 104px;
        padding: 12px 13px;
        font-size: 13px;
    }

    /* Assurance stays compact but readable */
    body.woocommerce-checkout .ln-checkout-assurance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        margin-top: 14px;
        padding-top: 20px;
    }

    body.woocommerce-checkout .ln-checkout-assurance__item {
        gap: 8px;
    }

    body.woocommerce-checkout .ln-checkout-assurance__icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    body.woocommerce-checkout .ln-checkout-assurance__icon svg {
        width: 20px;
        height: 20px;
    }

    body.woocommerce-checkout .ln-checkout-assurance__item strong {
        font-size: 10px;
        line-height: 1.35;
    }

    body.woocommerce-checkout .ln-checkout-assurance__item small {
        margin-top: 2px;
        font-size: 8px;
        line-height: 1.45;
    }

    /* More breathing room before the order card */
    body.woocommerce-checkout .ln-checkout-layout {
        gap: 34px;
    }

    /* Order summary card */
    body.woocommerce-checkout .ln-checkout-summary {
        position: static;
        width: 100%;
        padding: 22px 16px;
    }

    body.woocommerce-checkout .ln-checkout-summary__title {
        margin-bottom: 22px;
        font-size: 31px;
    }

    /* Product header: image + title/price */
    body.woocommerce-checkout .ln-checkout-product__row {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 13px;
        align-items: start;
    }

    body.woocommerce-checkout .ln-checkout-product__media img {
        width: 68px;
        height: 68px;
    }

    /* Let configuration use the full width beneath product identity. */
    body.woocommerce-checkout .ln-checkout-product__content {
        display: contents;
    }

    body.woocommerce-checkout .ln-checkout-product__identity {
        grid-column: 2;
        display: block;
        margin: 0;
    }

    body.woocommerce-checkout .ln-checkout-product__name {
        display: block;
        font-size: 17px;
        line-height: 1.18;
    }

    body.woocommerce-checkout .ln-checkout-product__line-price {
        display: block;
        margin-top: 7px;
        font-size: 11px;
        line-height: 1.4;
    }

    body.woocommerce-checkout .ln-checkout-product__meta {
        grid-column: 1 / -1;
        width: 100%;
        gap: 7px;
        margin-top: 14px;
        padding-top: 13px;
        border-top: 1px solid rgba(43, 0, 8, .08);
    }

    body.woocommerce-checkout .ln-checkout-product-meta {
        grid-template-columns: minmax(104px, 38%) minmax(0, 1fr);
        gap: 8px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta dt,
    body.woocommerce-checkout .ln-checkout-product-meta dd {
        font-size: 10px;
        line-height: 1.5;
    }

    body.woocommerce-checkout .ln-checkout-product-meta--note {
        grid-template-columns: 1fr;
        margin-top: 3px;
        padding: 10px 11px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta--note dt,
    body.woocommerce-checkout .ln-checkout-product-meta--note dd {
        font-size: 10px;
    }

    body.woocommerce-checkout .ln-checkout-product__cell {
        padding-bottom: 20px !important;
    }

    /* Totals */
    body.woocommerce-checkout .ln-checkout-order-table tfoot tr th,
    body.woocommerce-checkout .ln-checkout-order-table tfoot tr td {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
        font-size: 10px;
    }

    body.woocommerce-checkout .ln-checkout-order-table .order-total th,
    body.woocommerce-checkout .ln-checkout-order-table .order-total td,
    body.woocommerce-checkout .ln-checkout-order-table .order-total .woocommerce-Price-amount {
        font-size: 24px;
    }

    /* Payment */
    body.woocommerce-checkout #payment {
        margin-top: 8px;
    }

    body.woocommerce-checkout #payment ul.payment_methods > li {
        margin-bottom: 8px !important;
        padding: 14px !important;
    }

    body.woocommerce-checkout #payment ul.payment_methods li > label {
        font-size: 11px;
        line-height: 1.45;
    }

    body.woocommerce-checkout #payment div.payment_box {
        margin-top: 10px !important;
        padding: 11px !important;
        font-size: 9px;
        line-height: 1.55;
    }

    body.woocommerce-checkout #payment .place-order {
        margin-top: 18px !important;
        padding-top: 18px !important;
    }

    body.woocommerce-checkout .woocommerce-privacy-policy-text,
    body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p,
    body.woocommerce-checkout .woocommerce-form__label-for-checkbox {
        font-size: 8px;
        line-height: 1.55;
    }

    body.woocommerce-checkout #place_order {
        min-height: 52px;
        font-size: 10px !important;
    }
}

@media (max-width: 390px) {

    body.woocommerce-checkout .ln-checkout-page {
        width: calc(100% - 24px);
    }

    body.woocommerce-checkout .ln-checkout-header__title {
        font-size: 36px;
    }

    body.woocommerce-checkout .ln-checkout-assurance {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.woocommerce-checkout .ln-checkout-assurance__item small {
        font-size: 8px;
    }

    body.woocommerce-checkout .ln-checkout-summary {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.woocommerce-checkout .ln-checkout-product__row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    body.woocommerce-checkout .ln-checkout-product__media img {
        width: 64px;
        height: 64px;
    }

    body.woocommerce-checkout .ln-checkout-product__name {
        font-size: 16px;
    }

    body.woocommerce-checkout .ln-checkout-product-meta {
        grid-template-columns: minmax(96px, 40%) minmax(0, 1fr);
    }
}

/* ========================================
   30. LOVE NEST — MY ACCOUNT / AUTH
======================================== */

body.woocommerce-account {
    background: var(--ln-ivory);
}

body.woocommerce-account main .woocommerce {
    width: min(var(--ln-container), calc(100% - 64px));
    margin: 0 auto;
    color: var(--ln-text);
}

/* Notices */
body.woocommerce-account .woocommerce-notices-wrapper {
    width: min(var(--ln-container), calc(100% - 64px));
    margin: 28px auto 0;
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
    margin: 0 0 18px !important;
    padding: 16px 18px !important;
    font-family: var(--ln-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ln-text);
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .12);
    border-top: 2px solid var(--ln-gold);
    border-radius: var(--ln-radius);
    box-shadow: none;
}

body.woocommerce-account .woocommerce-error {
    border-top-color: var(--ln-burgundy-light);
}

/* ========================================
   LOGGED OUT — AUTH PAGE
======================================== */

body.woocommerce-account .ln-auth-page {
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: 72px 0 96px;
}

body.woocommerce-account .ln-auth-header {
    max-width: 650px;
    margin: 0 auto 34px;
    text-align: center;
}

body.woocommerce-account .ln-auth-eyebrow,
body.woocommerce-account .ln-auth-card__eyebrow,
body.woocommerce-account .ln-account-header__eyebrow,
body.woocommerce-account .ln-dashboard-welcome__eyebrow {
    display: block;
    margin-bottom: 9px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-auth-title,
body.woocommerce-account .ln-account-header__title {
    margin: 0;
    font-family: var(--ln-font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.02;
    color: var(--ln-text);
}

body.woocommerce-account .ln-auth-intro,
body.woocommerce-account .ln-account-header__intro {
    margin: 14px auto 0;
    max-width: 600px;
    font-family: var(--ln-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ln-muted);
}

/* Google */
body.woocommerce-account .ln-account-social {
    width: min(440px, 100%);
    margin: 0 auto;
}

body.woocommerce-account .ln-account-social .nsl-container,
body.woocommerce-account .ln-account-social .nsl-container-buttons {
    width: 100% !important;
    max-width: none !important;
}

body.woocommerce-account .ln-account-social a[data-provider="google"] {
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-account .ln-account-social .nsl-button,
body.woocommerce-account .ln-account-social .nsl-button-default {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--ln-font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--ln-text) !important;
    background: var(--ln-white) !important;
    border: 1px solid #D9CFCC !important;
    border-radius: var(--ln-radius) !important;
    box-shadow: none !important;
}

body.woocommerce-account .ln-account-social .nsl-button:hover {
    border-color: var(--ln-gold) !important;
}

body.woocommerce-account .ln-auth-divider {
    position: relative;
    width: min(440px, 100%);
    margin: 24px auto 30px;
    text-align: center;
}

body.woocommerce-account .ln-auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(43, 0, 8, .10);
}

body.woocommerce-account .ln-auth-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 14px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
    background: var(--ln-ivory);
}

body.woocommerce-account .ln-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

body.woocommerce-account .ln-auth-grid--single {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}

body.woocommerce-account .ln-auth-card {
    padding: 34px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .11);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-auth-card--register {
    background: var(--ln-blush);
}

body.woocommerce-account .ln-auth-card__head {
    margin-bottom: 28px;
}

body.woocommerce-account .ln-auth-card__head h2 {
    margin: 0 0 9px;
    font-family: var(--ln-font-heading);
    font-size: 31px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--ln-text);
}

body.woocommerce-account .ln-auth-card__head p {
    margin: 0;
    font-family: var(--ln-font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-auth-form {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.woocommerce-account .ln-auth-form .form-row {
    margin: 0 0 18px !important;
    padding: 0 !important;
}

body.woocommerce-account .ln-auth-form label,
body.woocommerce-account .woocommerce-MyAccount-content label {
    display: block;
    margin: 0 0 7px;
    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .3px;
    color: var(--ln-text);
}

body.woocommerce-account .ln-auth-form input[type="text"],
body.woocommerce-account .ln-auth-form input[type="email"],
body.woocommerce-account .ln-auth-form input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    font-family: var(--ln-font-body);
    font-size: 13px;
    color: var(--ln-text);
    background: var(--ln-white);
    border: 1px solid #D9CFCC;
    border-radius: var(--ln-radius);
    box-shadow: none;
}

body.woocommerce-account .woocommerce-MyAccount-content textarea {
    min-height: 120px;
    padding-top: 13px;
    padding-bottom: 13px;
    resize: vertical;
}

body.woocommerce-account .ln-auth-form input:focus,
body.woocommerce-account .woocommerce-MyAccount-content input:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-auth-form__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -2px 0 20px;
}

body.woocommerce-account .ln-auth-form__meta .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 11px;
    font-weight: 400;
}

body.woocommerce-account .ln-auth-form__meta input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-auth-forgot {
    font-family: var(--ln-font-body);
    font-size: 11px;
    color: var(--ln-burgundy-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(82, 13, 27, .25);
}

body.woocommerce-account .ln-auth-submit,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content button.button {
    min-height: 50px;
    padding: 0 26px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
    border: 1px solid var(--ln-burgundy-light) !important;
    border-radius: var(--ln-radius) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer;
}

body.woocommerce-account .ln-auth-submit {
    width: 100%;
}

body.woocommerce-account .ln-auth-submit:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
}

body.woocommerce-account .ln-auth-submit--outline {
    color: var(--ln-burgundy-light) !important;
    background: transparent !important;
}

body.woocommerce-account .ln-auth-submit--outline:hover {
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
}

body.woocommerce-account .ln-auth-password-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 2px 0 20px;
    padding: 13px 14px;
    font-family: var(--ln-font-body);
    font-size: 11px;
    line-height: 1.55;
    color: var(--ln-muted);
    background: rgba(255, 253, 252, .7);
    border: 1px solid rgba(43, 0, 8, .08);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-auth-password-note__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-auth-password-note__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-account .ln-auth-privacy,
body.woocommerce-account .ln-auth-privacy p,
body.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text,
body.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text p {
    margin: 0 0 18px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    line-height: 1.65;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-auth-privacy a,
body.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text a {
    color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-auth-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 24px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-auth-assurance span {
    position: relative;
    padding-left: 12px;
}

body.woocommerce-account .ln-auth-assurance span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--ln-gold);
    transform: translateY(-50%) rotate(45deg);
}

/* ========================================
   LOGGED IN — ACCOUNT SHELL
======================================== */

body.woocommerce-account .ln-account-page {
    padding: 64px 0 96px;
}

body.woocommerce-account .ln-account-header {
    margin-bottom: 34px;
}

body.woocommerce-account .ln-account-header__intro {
    margin-left: 0;
    margin-right: 0;
}

body.woocommerce-account .ln-account-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

/* Navigation */
body.woocommerce-account .ln-account-nav {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 18px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-account-nav__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 4px 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-account-nav__avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--ln-gold);
    background: var(--ln-burgundy);
    border-radius: 50%;
}

body.woocommerce-account .ln-account-nav__profile-copy {
    min-width: 0;
    display: block;
}

body.woocommerce-account .ln-account-nav__profile-copy strong,
body.woocommerce-account .ln-account-nav__profile-copy small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.woocommerce-account .ln-account-nav__profile-copy strong {
    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ln-text);
}

body.woocommerce-account .ln-account-nav__profile-copy small {
    margin-top: 3px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-account-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-account .ln-account-nav li {
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .ln-account-nav li a {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 2px 0;
    padding: 0 12px;
    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ln-text);
    background: transparent;
    border-radius: var(--ln-radius);
    transition: color var(--ln-transition), background-color var(--ln-transition);
}

body.woocommerce-account .ln-account-nav li a:hover,
body.woocommerce-account .ln-account-nav li.is-active a {
    color: var(--ln-white);
    background: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-account-nav__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-account-nav li.is-active .ln-account-nav__icon,
body.woocommerce-account .ln-account-nav li a:hover .ln-account-nav__icon {
    color: var(--ln-gold);
}

body.woocommerce-account .ln-account-nav__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-account .ln-account-nav__help {
    margin-top: 14px;
    padding: 16px 12px 3px;
    border-top: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-account-nav__help span,
body.woocommerce-account .ln-account-nav__help a {
    display: block;
    font-family: var(--ln-font-body);
}

body.woocommerce-account .ln-account-nav__help span {
    margin-bottom: 5px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-account-nav__help a {
    font-size: 11px;
    color: var(--ln-burgundy-light);
    text-decoration: none;
}

/* Content */
body.woocommerce-account .ln-account-content {
    float: none !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 30px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-account-content > p:first-child {
    margin-top: 0;
}

body.woocommerce-account .ln-account-content p,
body.woocommerce-account .ln-account-content address {
    font-family: var(--ln-font-body);
    font-size: 13px;
    line-height: 1.75;
    color: var(--ln-text);
}

body.woocommerce-account .ln-account-content h2,
body.woocommerce-account .ln-account-content h3,
body.woocommerce-account .ln-account-content legend {
    font-family: var(--ln-font-heading);
    font-weight: 500;
    color: var(--ln-text);
}

body.woocommerce-account .ln-account-content h2 {
    font-size: 30px;
}

body.woocommerce-account .ln-account-content h3,
body.woocommerce-account .ln-account-content legend {
    font-size: 24px;
}

body.woocommerce-account .ln-account-content a:not(.button) {
    color: var(--ln-burgundy-light);
}

/* ========================================
   DASHBOARD
======================================== */

body.woocommerce-account .ln-dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-dashboard-welcome h2 {
    margin: 0 0 9px;
    font-size: 34px;
    line-height: 1.05;
}

body.woocommerce-account .ln-dashboard-welcome p {
    max-width: 620px;
    margin: 0;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-dashboard-welcome__shop {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ln-burgundy-light) !important;
    border: 1px solid rgba(82, 13, 27, .22);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-dashboard-welcome__shop:hover {
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light);
    border-color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.woocommerce-account .ln-dashboard-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: var(--ln-text) !important;
    background: var(--ln-white);
    border: 1px solid rgba(43, 0, 8, .09);
    border-radius: var(--ln-radius);
    transition: transform var(--ln-transition), border-color var(--ln-transition), box-shadow var(--ln-transition);
}

body.woocommerce-account .ln-dashboard-card:hover {
    transform: translateY(-2px);
    border-color: rgba(208, 162, 104, .65);
    box-shadow: 0 12px 30px rgba(43, 0, 8, .05);
}

body.woocommerce-account .ln-dashboard-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-dashboard-card__icon svg,
body.woocommerce-account .ln-dashboard-service__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-account .ln-dashboard-card__copy {
    display: block;
}

body.woocommerce-account .ln-dashboard-card__copy small,
body.woocommerce-account .ln-dashboard-card__copy strong,
body.woocommerce-account .ln-dashboard-card__copy span {
    display: block;
}

body.woocommerce-account .ln-dashboard-card__copy small {
    margin-bottom: 5px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-dashboard-card__copy strong {
    margin-bottom: 7px;
    font-family: var(--ln-font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ln-text);
}

body.woocommerce-account .ln-dashboard-card__copy span {
    font-family: var(--ln-font-body);
    font-size: 10px;
    line-height: 1.5;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-dashboard-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-dashboard-service {
    margin-top: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ln-blush);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-dashboard-service__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-dashboard-service span {
    display: block;
    margin-bottom: 3px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-dashboard-service p {
    margin: 0;
    font-size: 11px;
    color: var(--ln-muted);
}

/* ========================================
   CORE ACCOUNT ENDPOINTS
======================================== */

body.woocommerce-account .woocommerce-MyAccount-content table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-family: var(--ln-font-body);
    background: transparent;
    border: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content table th,
body.woocommerce-account .woocommerce-MyAccount-content table td {
    padding: 15px 12px;
    font-size: 11px;
    text-align: left;
    vertical-align: middle;
    border: 0;
    border-bottom: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .woocommerce-MyAccount-content table th {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a {
    font-weight: 600;
    color: var(--ln-burgundy-light);
}

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

body.woocommerce-account .woocommerce-Address {
    float: none !important;
    width: 100% !important;
    padding: 22px;
    background: var(--ln-white);
    border: 1px solid rgba(43, 0, 8, .09);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

body.woocommerce-account .woocommerce-Address-title h2,
body.woocommerce-account .woocommerce-Address-title h3 {
    margin: 0;
    font-size: 24px;
}

body.woocommerce-account .woocommerce-Address-title .edit {
    float: none !important;
    font-family: var(--ln-font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset {
    margin: 28px 0 0;
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-account .woocommerce-EditAccountForm legend {
    margin-bottom: 18px;
    padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
body.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
    width: calc(50% - 7px);
}

body.woocommerce-account .woocommerce-MyAccount-content .form-row {
    margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
    margin-top: 24px;
}

/* ========================================
   ACCOUNT RESPONSIVE
======================================== */

@media (max-width: 1024px) {

    body.woocommerce-account main .woocommerce,
    body.woocommerce-account .woocommerce-notices-wrapper {
        width: calc(100% - 48px);
    }

    body.woocommerce-account .ln-account-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }

    body.woocommerce-account .ln-dashboard-cards {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .ln-dashboard-card {
        min-height: 150px;
    }

    body.woocommerce-account .ln-dashboard-card__icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    body.woocommerce-account main .woocommerce,
    body.woocommerce-account .woocommerce-notices-wrapper {
        width: calc(100% - 28px);
    }

    body.woocommerce-account .ln-auth-page,
    body.woocommerce-account .ln-account-page {
        padding: 38px 0 58px;
    }

    body.woocommerce-account .ln-auth-header {
        margin-bottom: 26px;
        text-align: left;
    }

    body.woocommerce-account .ln-auth-title,
    body.woocommerce-account .ln-account-header__title {
        font-size: 38px;
    }

    body.woocommerce-account .ln-auth-intro,
    body.woocommerce-account .ln-account-header__intro {
        margin-top: 10px;
        font-size: 13px;
    }

    body.woocommerce-account .ln-account-social,
    body.woocommerce-account .ln-auth-divider {
        width: 100%;
    }

    body.woocommerce-account .ln-auth-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.woocommerce-account .ln-auth-card {
        padding: 24px 20px;
    }

    body.woocommerce-account .ln-auth-card__head h2 {
        font-size: 28px;
    }

    body.woocommerce-account .ln-auth-form__meta {
        align-items: flex-start;
    }

    body.woocommerce-account .ln-auth-assurance {
        justify-content: flex-start;
        gap: 9px 18px;
    }

    body.woocommerce-account .ln-account-header {
        margin-bottom: 24px;
    }

    body.woocommerce-account .ln-account-layout {
        display: block;
    }

    body.woocommerce-account .ln-account-nav {
        margin-bottom: 16px !important;
        padding: 12px;
    }

    body.woocommerce-account .ln-account-nav__profile {
        padding: 2px 3px 13px;
        margin-bottom: 8px;
    }

    body.woocommerce-account .ln-account-nav ul {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    body.woocommerce-account .ln-account-nav ul::-webkit-scrollbar {
        display: none;
    }

    body.woocommerce-account .ln-account-nav li {
        flex: 0 0 auto;
    }

    body.woocommerce-account .ln-account-nav li a {
        min-height: 42px;
        padding: 0 12px;
        white-space: nowrap;
    }

    body.woocommerce-account .ln-account-nav__icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    body.woocommerce-account .ln-account-nav__help {
        display: none;
    }

    body.woocommerce-account .ln-account-content {
        padding: 22px 18px;
    }

    body.woocommerce-account .ln-dashboard-welcome {
        display: block;
    }

    body.woocommerce-account .ln-dashboard-welcome h2 {
        font-size: 30px;
    }

    body.woocommerce-account .ln-dashboard-welcome__shop {
        width: 100%;
        margin-top: 18px;
    }

    body.woocommerce-account .ln-dashboard-card {
        min-height: 145px;
        padding: 19px;
    }

    body.woocommerce-account .ln-dashboard-service {
        align-items: flex-start;
    }

    body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
    body.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
        float: none;
        width: 100%;
    }

    body.woocommerce-account .woocommerce-MyAccount-content table,
    body.woocommerce-account .woocommerce-MyAccount-content tbody,
    body.woocommerce-account .woocommerce-MyAccount-content tr,
    body.woocommerce-account .woocommerce-MyAccount-content td {
        display: block;
        width: 100%;
    }

    body.woocommerce-account .woocommerce-MyAccount-content table thead {
        display: none;
    }

    body.woocommerce-account .woocommerce-MyAccount-content table tr {
        margin-bottom: 12px;
        padding: 10px 12px;
        background: var(--ln-white);
        border: 1px solid rgba(43, 0, 8, .08);
        border-radius: var(--ln-radius);
    }

    body.woocommerce-account .woocommerce-MyAccount-content table td {
        padding: 8px 0;
        border-bottom: 1px solid rgba(43, 0, 8, .06);
    }

    body.woocommerce-account .woocommerce-MyAccount-content table td:last-child {
        border-bottom: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-content table td::before {
        font-family: var(--ln-font-body);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .7px;
        text-transform: uppercase;
        color: var(--ln-muted);
    }
}

@media (max-width: 390px) {

    body.woocommerce-account .ln-auth-title,
    body.woocommerce-account .ln-account-header__title {
        font-size: 34px;
    }

    body.woocommerce-account .ln-auth-card {
        padding: 22px 17px;
    }

    body.woocommerce-account .ln-auth-form__meta {
        gap: 10px;
    }

    body.woocommerce-account .ln-account-content {
        padding: 20px 15px;
    }
}

/* ========================================
   31. LOVE NEST — ACCOUNT ORDERS
======================================== */

/* WooCommerce account notices: keep them premium and remove the legacy icon. */
body.woocommerce-account .ln-account-content > .woocommerce-info,
body.woocommerce-account .ln-account-content > .woocommerce-message,
body.woocommerce-account .ln-account-content > .woocommerce-error {
    position: relative;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px !important;
    padding: 14px 16px !important;
}

body.woocommerce-account .ln-account-content > .woocommerce-info::before,
body.woocommerce-account .ln-account-content > .woocommerce-message::before,
body.woocommerce-account .ln-account-content > .woocommerce-error::before {
    display: none !important;
    content: none !important;
}

body.woocommerce-account .ln-account-content > .woocommerce-info .button,
body.woocommerce-account .ln-account-content > .woocommerce-message .button,
body.woocommerce-account .ln-account-content > .woocommerce-error .button {
    flex: 0 0 auto;
    min-height: 44px;
    margin: 0 !important;
}

/* Empty orders state */
body.woocommerce-account .ln-orders-empty {
    min-height: 360px;
    padding: 54px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ln-white);
    border: 1px solid rgba(43, 0, 8, .09);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-orders-empty__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-orders-empty__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-account .ln-orders-empty__eyebrow {
    margin-bottom: 8px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-orders-empty h2 {
    margin: 0 0 10px;
    font-family: var(--ln-font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--ln-text);
}

body.woocommerce-account .ln-orders-empty p {
    width: min(480px, 100%);
    margin: 0 auto 24px;
    font-family: var(--ln-font-body);
    font-size: 12px;
    line-height: 1.7;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-orders-empty__button {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light);
    border: 1px solid var(--ln-burgundy-light);
    border-radius: var(--ln-radius);
    transition: background-color var(--ln-transition), border-color var(--ln-transition), color var(--ln-transition);
}

body.woocommerce-account .ln-orders-empty__button:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold);
    border-color: var(--ln-gold);
}

/* Real order history */
body.woocommerce-account .ln-orders-list {
    display: grid;
    gap: 14px;
}

body.woocommerce-account .ln-order-card {
    padding: 22px;
    background: var(--ln-white);
    border: 1px solid rgba(43, 0, 8, .09);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-order-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-order-card__identity {
    min-width: 0;
}

body.woocommerce-account .ln-order-card__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-order-card__number {
    font-family: var(--ln-font-heading);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    color: var(--ln-text) !important;
}

body.woocommerce-account .ln-order-status {
    min-height: 30px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-family: var(--ln-font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .85px;
    text-transform: uppercase;
    color: var(--ln-burgundy-light);
    background: var(--ln-blush);
    border: 1px solid rgba(82, 13, 27, .10);
    border-radius: 999px;
}

body.woocommerce-account .ln-order-status--completed {
    color: #35624A;
    background: #EDF5EF;
    border-color: rgba(53, 98, 74, .14);
}

body.woocommerce-account .ln-order-status--cancelled,
body.woocommerce-account .ln-order-status--failed,
body.woocommerce-account .ln-order-status--refunded {
    color: #7A4B4B;
    background: #F7EEEE;
    border-color: rgba(122, 75, 75, .14);
}

body.woocommerce-account .ln-order-card__meta {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(90px, .6fr) minmax(130px, .8fr);
    gap: 18px;
    padding: 20px 0;
}

body.woocommerce-account .ln-order-card__meta-item span,
body.woocommerce-account .ln-order-card__meta-item strong {
    display: block;
}

body.woocommerce-account .ln-order-card__meta-item span {
    margin-bottom: 5px;
    font-family: var(--ln-font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-order-card__meta-item strong {
    font-family: var(--ln-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ln-text);
}

body.woocommerce-account .ln-order-card__meta-item--total strong {
    font-family: var(--ln-font-heading);
    font-size: 18px;
}

body.woocommerce-account .ln-order-card__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 18px;
    border-top: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-order-card__actions .ln-order-action {
    min-height: 42px !important;
    padding: 0 18px !important;
}

body.woocommerce-account .ln-order-card__actions .ln-order-action--view {
    color: var(--ln-burgundy-light) !important;
    background: transparent !important;
    border-color: rgba(82, 13, 27, .25) !important;
}

body.woocommerce-account .ln-order-card__actions .ln-order-action--view:hover {
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light) !important;
    border-color: var(--ln-burgundy-light) !important;
}

body.woocommerce-account .ln-orders-pagination {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

@media (max-width: 767px) {

    body.woocommerce-account .ln-account-content > .woocommerce-info,
    body.woocommerce-account .ln-account-content > .woocommerce-message,
    body.woocommerce-account .ln-account-content > .woocommerce-error {
        min-height: 0;
        display: block;
        padding: 14px !important;
        font-size: 10px;
    }

    body.woocommerce-account .ln-account-content > .woocommerce-info .button,
    body.woocommerce-account .ln-account-content > .woocommerce-message .button,
    body.woocommerce-account .ln-account-content > .woocommerce-error .button {
        width: 100%;
        min-height: 44px;
        margin-top: 12px !important;
    }

    body.woocommerce-account .ln-orders-empty {
        min-height: 300px;
        padding: 38px 20px;
    }

    body.woocommerce-account .ln-orders-empty__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    body.woocommerce-account .ln-orders-empty h2 {
        font-size: 27px;
    }

    body.woocommerce-account .ln-orders-empty p {
        font-size: 10px;
        line-height: 1.65;
    }

    body.woocommerce-account .ln-orders-empty__button {
        width: 100%;
    }

    body.woocommerce-account .ln-order-card {
        padding: 17px;
    }

    body.woocommerce-account .ln-order-card__number {
        font-size: 24px;
    }

    body.woocommerce-account .ln-order-card__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    body.woocommerce-account .ln-order-card__meta-item--total {
        grid-column: 1 / -1;
        padding-top: 12px;
        border-top: 1px solid rgba(43, 0, 8, .07);
    }

    body.woocommerce-account .ln-order-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .ln-order-card__actions .ln-order-action {
        width: 100%;
    }
}

/* ========================================
   LOVE NEST — ADDRESS OVERVIEW
======================================== */

body.woocommerce-account .ln-address-overview {
    width: 100%;
}

body.woocommerce-account .ln-address-overview__intro {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(43, 0, 8, .08);
}

body.woocommerce-account .ln-address-overview__eyebrow,
body.woocommerce-account .ln-address-card__eyebrow {
    display: block;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-address-overview__intro h2 {
    margin: 7px 0 8px;
    font-family: var(--ln-font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ln-text);
}

body.woocommerce-account .ln-address-overview__intro p {
    max-width: 660px;
    margin: 0;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.woocommerce-account .ln-address-card {
    min-height: 330px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: var(--ln-white);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
    transition: border-color var(--ln-transition), box-shadow var(--ln-transition), transform var(--ln-transition);
}

body.woocommerce-account .ln-address-card:hover {
    transform: translateY(-2px);
    border-color: rgba(208, 162, 104, .60);
    box-shadow: 0 12px 28px rgba(43, 0, 8, .045);
}

body.woocommerce-account .ln-address-card__top {
    min-height: 34px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

body.woocommerce-account .ln-address-card__icon {
    width: 32px;
    height: 32px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-address-card__icon svg,
body.woocommerce-account .ln-address-note__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-account .ln-address-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    font-family: var(--ln-font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .9px;
    text-transform: uppercase;
    border-radius: 999px;
}

body.woocommerce-account .ln-address-card__status.is-saved {
    color: var(--ln-burgundy-light);
    background: var(--ln-blush);
}

body.woocommerce-account .ln-address-card__status.is-empty {
    color: var(--ln-muted);
    background: var(--ln-ivory);
}

body.woocommerce-account .ln-address-card__head {
    margin-bottom: 18px;
}

body.woocommerce-account .ln-address-card__head h3 {
    margin: 6px 0 8px;
    font-family: var(--ln-font-heading);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ln-text);
}

body.woocommerce-account .ln-address-card__head p {
    margin: 0;
    font-size: 11px;
    line-height: 1.6;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-address-card__details {
    flex: 1 1 auto;
    margin-top: 2px;
    padding: 18px 0;
    border-top: 1px solid rgba(43, 0, 8, .07);
    border-bottom: 1px solid rgba(43, 0, 8, .07);
}

body.woocommerce-account .ln-address-card__details address {
    margin: 0;
    font-style: normal;
    font-size: 12px;
    line-height: 1.75;
    color: var(--ln-text);
}

body.woocommerce-account .ln-address-card__empty {
    font-family: var(--ln-font-body);
    font-size: 11px;
    line-height: 1.65;
    color: var(--ln-muted);
}

body.woocommerce-account .ln-address-card__action {
    min-height: 44px;
    margin-top: 16px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--ln-burgundy-light) !important;
}

body.woocommerce-account .ln-address-card__action span:last-child {
    font-size: 18px;
    font-weight: 400;
    transition: transform var(--ln-transition);
}

body.woocommerce-account .ln-address-card__action:hover span:last-child {
    transform: translateX(4px);
}

body.woocommerce-account .ln-address-note {
    margin-top: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ln-blush);
    border-radius: var(--ln-radius);
}

body.woocommerce-account .ln-address-note__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--ln-gold);
}

body.woocommerce-account .ln-address-note strong {
    display: block;
    margin-bottom: 3px;
    font-family: var(--ln-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-burgundy-light);
}

body.woocommerce-account .ln-address-note p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: var(--ln-muted);
}

/* Address edit forms — keep current structure but tighten hierarchy. */
body.woocommerce-account form.woocommerce-address-fields h2,
body.woocommerce-account .woocommerce-address-fields h2 {
    margin: 0 0 24px;
    font-family: var(--ln-font-heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ln-text);
}

body.woocommerce-account .woocommerce-address-fields__field-wrapper {
    display: flow-root;
}

body.woocommerce-account .woocommerce-address-fields .button {
    min-height: 48px;
    padding: 0 24px;
}

@media (max-width: 767px) {
    body.woocommerce-account .ln-address-overview__intro {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    body.woocommerce-account .ln-address-overview__intro h2 {
        font-size: 29px;
    }

    body.woocommerce-account .ln-address-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.woocommerce-account .ln-address-card {
        min-height: 0;
        padding: 20px 18px;
    }

    body.woocommerce-account .ln-address-card__top {
        margin-bottom: 18px;
    }

    body.woocommerce-account .ln-address-card__head h3 {
        font-size: 25px;
    }

    body.woocommerce-account .ln-address-note {
        align-items: flex-start;
        padding: 17px 18px;
    }

    body.woocommerce-account form.woocommerce-address-fields h2,
    body.woocommerce-account .woocommerce-address-fields h2 {
        font-size: 28px;
    }
}

/* ========================================
   39. LOVE NEST CREATIONS — GIFT CHECKOUT DELIVERY
   Buyer + recipient workflow refinements
======================================== */

/* Separate the recipient block from buyer/billing information. */
body.woocommerce-checkout .ln-checkout-delivery-intro {
    margin: 10px 0 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-checkout .ln-checkout-delivery-intro h2 {
    margin: 0 0 8px;
    font-family: var(--ln-font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-delivery-intro p {
    max-width: 620px;
    margin: 0;
    font-family: var(--ln-font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--ln-muted);
}

/* The gifting checkout always uses a separate recipient address. Keep the
   native WooCommerce checkbox for processing compatibility, but do not ask
   the customer an irrelevant question. */
body.woocommerce-checkout .ln-checkout-shipping #ship-to-different-address {
    display: none !important;
}

body.woocommerce-checkout .ln-checkout-shipping .shipping_address {
    display: block !important;
}

body.woocommerce-checkout .ln-checkout-shipping .ln-checkout-hidden-field {
    display: none !important;
}

/* Recipient phone and delivery address use the full available width. */
body.woocommerce-checkout #shipping_phone_field,
body.woocommerce-checkout #shipping_address_1_field,
body.woocommerce-checkout #shipping_address_2_field,
body.woocommerce-checkout #shipping_city_field {
    clear: both;
    width: 100%;
}

/* Complimentary Bahrain delivery row in the custom order summary. */
body.woocommerce-checkout .ln-checkout-order-table
.ln-checkout-free-delivery th,
body.woocommerce-checkout .ln-checkout-order-table
.ln-checkout-free-delivery td {
    color: var(--ln-text);
}

body.woocommerce-checkout .ln-checkout-order-table
.ln-checkout-free-delivery td {
    font-weight: 600;
    color: var(--ln-burgundy-light);
}

@media (max-width: 767px) {

    body.woocommerce-checkout .ln-checkout-delivery-intro {
        margin-top: 6px;
        margin-bottom: 22px;
        padding-top: 26px;
    }

    body.woocommerce-checkout .ln-checkout-delivery-intro h2 {
        font-size: 29px;
    }

    body.woocommerce-checkout .ln-checkout-delivery-intro p {
        font-size: 12px;
        line-height: 1.65;
    }
}

/* ========================================
   35. LOVE NEST — PREMIUM THANK YOU PAGE
   Order Received / Post-Purchase Experience
======================================== */

body.woocommerce-order-received {
    background: var(--ln-ivory);
}

body.woocommerce-order-received main .woocommerce {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-page {
    width: min(calc(100% - 64px), var(--ln-container));
    margin: 0 auto;
    padding: 72px 0 100px;
    font-family: var(--ln-font-body);
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-page .woocommerce-order {
    width: 100%;
}

/* ----------------------------------------
   HERO
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-hero {
    padding: 54px 56px 48px;
    text-align: center;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .11);
    border-radius: var(--ln-radius);
}

body.woocommerce-order-received .ln-thankyou-hero__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ln-gold);
}

body.woocommerce-order-received .ln-thankyou-hero__icon svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.woocommerce-order-received .ln-thankyou-eyebrow,
body.woocommerce-order-received .ln-thankyou-section-kicker {
    display: block;
    margin: 0 0 10px;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ln-gold);
}

body.woocommerce-order-received .ln-thankyou-hero h1,
body.woocommerce-order-received .ln-thankyou-failed h1 {
    margin: 0;
    font-family: var(--ln-font-heading);
    font-size: 52px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.5px;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-hero__intro {
    max-width: 680px;
    margin: 18px auto 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--ln-muted);
}

/* ----------------------------------------
   ORDER OVERVIEW
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 980px;
    margin: 38px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 0, 8, .10);
}

body.woocommerce-order-received .ln-thankyou-overview__item {
    min-width: 0;
    padding: 0 20px;
    border-right: 1px solid rgba(43, 0, 8, .09);
}

body.woocommerce-order-received .ln-thankyou-overview__item:last-child {
    border-right: 0;
}

body.woocommerce-order-received .ln-thankyou-overview__item span {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: var(--ln-muted);
}

body.woocommerce-order-received .ln-thankyou-overview__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ln-text);
    overflow-wrap: anywhere;
}

body.woocommerce-order-received .ln-thankyou-overview__item .woocommerce-Price-amount {
    color: var(--ln-burgundy-light);
}

/* ----------------------------------------
   NEXT STEPS + SUPPORT
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
    gap: 24px;
    margin-top: 24px;
}

body.woocommerce-order-received .ln-thankyou-main-card,
body.woocommerce-order-received .ln-thankyou-help-card {
    padding: 36px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-order-received .ln-thankyou-main-card > h2,
body.woocommerce-order-received .ln-thankyou-help-card > h2,
body.woocommerce-order-received .ln-thankyou-order-section__head h2 {
    margin: 0;
    font-family: var(--ln-font-heading);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
}

body.woocommerce-order-received .ln-thankyou-step {
    min-width: 0;
    padding: 4px 24px;
    border-right: 1px solid rgba(43, 0, 8, .09);
}

body.woocommerce-order-received .ln-thankyou-step:first-child {
    padding-left: 0;
}

body.woocommerce-order-received .ln-thankyou-step:last-child {
    padding-right: 0;
    border-right: 0;
}

body.woocommerce-order-received .ln-thankyou-step__number {
    display: block;
    margin-bottom: 18px;
    font-family: var(--ln-font-heading);
    font-size: 28px;
    line-height: 1;
    color: var(--ln-gold);
}

body.woocommerce-order-received .ln-thankyou-step h3 {
    margin: 0 0 8px;
    font-family: var(--ln-font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-step p,
body.woocommerce-order-received .ln-thankyou-help-card p,
body.woocommerce-order-received .ln-thankyou-order-section__head p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--ln-muted);
}

body.woocommerce-order-received .ln-thankyou-help-card {
    background: var(--ln-blush);
}

body.woocommerce-order-received .ln-thankyou-help-card p {
    margin-top: 16px;
}

body.woocommerce-order-received .ln-thankyou-help-card__email {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ln-burgundy-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.woocommerce-order-received .ln-thankyou-actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

body.woocommerce-order-received .ln-thankyou-actions--center {
    grid-template-columns: repeat(2, minmax(0, 220px));
    justify-content: center;
}

body.woocommerce-order-received .ln-thankyou-button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: var(--ln-radius);
    transition:
        color var(--ln-transition),
        background-color var(--ln-transition),
        border-color var(--ln-transition);
}

body.woocommerce-order-received .ln-thankyou-button--primary {
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light);
    border: 1px solid var(--ln-burgundy-light);
}

body.woocommerce-order-received .ln-thankyou-button--primary:hover {
    color: var(--ln-burgundy) !important;
    background: var(--ln-gold);
    border-color: var(--ln-gold);
}

body.woocommerce-order-received .ln-thankyou-button--secondary {
    color: var(--ln-burgundy-light) !important;
    background: transparent;
    border: 1px solid rgba(82, 13, 27, .34);
}

body.woocommerce-order-received .ln-thankyou-button--secondary:hover {
    color: var(--ln-white) !important;
    background: var(--ln-burgundy-light);
    border-color: var(--ln-burgundy-light);
}

/* ----------------------------------------
   PAYMENT GATEWAY INSTRUCTIONS
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-payment-instructions {
    margin-top: 24px;
    padding: 22px 26px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--ln-text);
    background: rgba(208, 162, 104, .10);
    border-left: 3px solid var(--ln-gold);
    border-radius: var(--ln-radius);
}

body.woocommerce-order-received .ln-thankyou-payment-instructions > *:first-child {
    margin-top: 0;
}

body.woocommerce-order-received .ln-thankyou-payment-instructions > *:last-child {
    margin-bottom: 0;
}

body.woocommerce-order-received .ln-thankyou-payment-instructions h2,
body.woocommerce-order-received .ln-thankyou-payment-instructions h3 {
    font-family: var(--ln-font-heading);
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-payment-instructions table {
    width: 100%;
}

/* ----------------------------------------
   ORDER + DELIVERY SECTION
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-order-section {
    margin-top: 52px;
}

body.woocommerce-order-received .ln-thankyou-order-section__head {
    max-width: 720px;
    margin-bottom: 24px;
}

body.woocommerce-order-received .ln-thankyou-order-section__head p {
    margin-top: 10px;
}

body.woocommerce-order-received .ln-thankyou-order-content {
    padding: 38px 40px;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

/* Hide the duplicated native Order details heading — our section has one. */
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-order-details__title {
    display: none;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-order-details {
    margin: 0 0 42px;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details {
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse;
    background: transparent;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details thead th {
    padding: 0 14px 14px !important;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ln-muted);
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(43, 0, 8, .12) !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details thead th:first-child,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tbody td:first-child,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot th {
    padding-left: 0 !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details thead th:last-child,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tbody td:last-child,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot td {
    padding-right: 0 !important;
    text-align: right;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tbody td {
    padding: 20px 14px !important;
    font-size: 12px;
    line-height: 1.55;
    vertical-align: top;
    color: var(--ln-text);
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(43, 0, 8, .08) !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details .product-name a {
    font-family: var(--ln-font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ln-burgundy-light);
    text-decoration: none;
}

body.woocommerce-order-received .ln-thankyou-order-content
.wc-item-meta {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-order-received .ln-thankyou-order-content
.wc-item-meta li {
    margin: 3px 0;
    font-size: 10px;
    line-height: 1.5;
    color: var(--ln-muted);
}

body.woocommerce-order-received .ln-thankyou-order-content
.wc-item-meta li strong,
body.woocommerce-order-received .ln-thankyou-order-content
.wc-item-meta li p {
    display: inline;
    margin: 0;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot th,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot td {
    padding: 13px 14px !important;
    font-size: 11px;
    font-weight: 500;
    color: var(--ln-muted);
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(43, 0, 8, .08) !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot tr:last-child th,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot tr:last-child td {
    padding-top: 18px !important;
    padding-bottom: 0 !important;
    font-family: var(--ln-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--ln-text);
    border-bottom: 0 !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot tr:last-child td,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-table--order-details tfoot tr:last-child .woocommerce-Price-amount {
    color: var(--ln-burgundy-light);
}

/* Buyer + recipient cards */
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details {
    margin: 0;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details > h2 {
    display: none;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-column--billing-address,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-column--shipping-address {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    background: var(--ln-ivory);
    border: 1px solid rgba(43, 0, 8, .09);
    border-radius: var(--ln-radius);
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-column__title {
    margin: 0 0 15px;
    font-family: var(--ln-font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-order-content address {
    margin: 0;
    font-size: 12px;
    font-style: normal;
    line-height: 1.75;
    color: var(--ln-text);
}

body.woocommerce-order-received .ln-thankyou-order-content address p {
    margin: 8px 0 0;
}

body.woocommerce-order-received .ln-thankyou-order-content address a {
    color: var(--ln-burgundy-light);
}

/* ----------------------------------------
   FAILED / FALLBACK
---------------------------------------- */

body.woocommerce-order-received .ln-thankyou-failed,
body.woocommerce-order-received .ln-thankyou-fallback {
    max-width: 820px;
    margin: 0 auto;
    padding: 54px;
    text-align: center;
    background: var(--ln-cream);
    border: 1px solid rgba(43, 0, 8, .10);
    border-radius: var(--ln-radius);
}

body.woocommerce-order-received .ln-thankyou-failed > p,
body.woocommerce-order-received .ln-thankyou-fallback > p {
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--ln-muted);
}

/* ========================================
   THANK YOU — TABLET
======================================== */

@media (max-width: 1024px) {

    body.woocommerce-order-received .ln-thankyou-page {
        width: calc(100% - 48px);
        padding-top: 52px;
        padding-bottom: 80px;
    }

    body.woocommerce-order-received .ln-thankyou-hero {
        padding: 46px 36px 40px;
    }

    body.woocommerce-order-received .ln-thankyou-hero h1,
    body.woocommerce-order-received .ln-thankyou-failed h1 {
        font-size: 46px;
    }

    body.woocommerce-order-received .ln-thankyou-overview__item {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.woocommerce-order-received .ln-thankyou-main-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
    }

    body.woocommerce-order-received .ln-thankyou-main-card,
    body.woocommerce-order-received .ln-thankyou-help-card {
        padding: 30px;
    }

    body.woocommerce-order-received .ln-thankyou-steps {
        grid-template-columns: 1fr;
    }

    body.woocommerce-order-received .ln-thankyou-step,
    body.woocommerce-order-received .ln-thankyou-step:first-child,
    body.woocommerce-order-received .ln-thankyou-step:last-child {
        padding: 18px 0;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(43, 0, 8, .08);
    }

    body.woocommerce-order-received .ln-thankyou-step:last-child {
        border-bottom: 0;
    }

    body.woocommerce-order-received .ln-thankyou-step__number {
        margin: 0;
    }
}

/* ========================================
   THANK YOU — MOBILE
======================================== */

@media (max-width: 767px) {

    body.woocommerce-order-received .ln-thankyou-page {
        width: calc(100% - 28px);
        padding-top: 30px;
        padding-bottom: 58px;
    }

    body.woocommerce-order-received .ln-thankyou-hero {
        padding: 34px 18px 24px;
    }

    body.woocommerce-order-received .ln-thankyou-hero__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    body.woocommerce-order-received .ln-thankyou-hero__icon svg {
        width: 44px;
        height: 44px;
    }

    body.woocommerce-order-received .ln-thankyou-eyebrow,
    body.woocommerce-order-received .ln-thankyou-section-kicker {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    body.woocommerce-order-received .ln-thankyou-hero h1,
    body.woocommerce-order-received .ln-thankyou-failed h1 {
        font-size: 38px;
    }

    body.woocommerce-order-received .ln-thankyou-hero__intro {
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.65;
    }

    body.woocommerce-order-received .ln-thankyou-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 26px;
        padding-top: 8px;
    }

    body.woocommerce-order-received .ln-thankyou-overview__item {
        padding: 16px 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(43, 0, 8, .08);
    }

    body.woocommerce-order-received .ln-thankyou-overview__item:nth-child(odd) {
        border-right: 1px solid rgba(43, 0, 8, .08);
    }

    body.woocommerce-order-received .ln-thankyou-overview__item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    body.woocommerce-order-received .ln-thankyou-overview__item span {
        font-size: 8px;
    }

    body.woocommerce-order-received .ln-thankyou-overview__item strong {
        font-size: 12px;
    }

    body.woocommerce-order-received .ln-thankyou-main-grid {
        display: block;
        margin-top: 14px;
    }

    body.woocommerce-order-received .ln-thankyou-main-card,
    body.woocommerce-order-received .ln-thankyou-help-card {
        padding: 24px 18px;
    }

    body.woocommerce-order-received .ln-thankyou-help-card {
        margin-top: 14px;
    }

    body.woocommerce-order-received .ln-thankyou-main-card > h2,
    body.woocommerce-order-received .ln-thankyou-help-card > h2,
    body.woocommerce-order-received .ln-thankyou-order-section__head h2 {
        font-size: 29px;
    }

    body.woocommerce-order-received .ln-thankyou-steps {
        margin-top: 18px;
    }

    body.woocommerce-order-received .ln-thankyou-step,
    body.woocommerce-order-received .ln-thankyou-step:first-child,
    body.woocommerce-order-received .ln-thankyou-step:last-child {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
        padding: 16px 0;
    }

    body.woocommerce-order-received .ln-thankyou-step__number {
        font-size: 22px;
    }

    body.woocommerce-order-received .ln-thankyou-step h3 {
        font-size: 19px;
    }

    body.woocommerce-order-received .ln-thankyou-step p,
    body.woocommerce-order-received .ln-thankyou-help-card p,
    body.woocommerce-order-received .ln-thankyou-order-section__head p {
        font-size: 11px;
    }

    body.woocommerce-order-received .ln-thankyou-payment-instructions {
        margin-top: 14px;
        padding: 18px;
        font-size: 11px;
    }

    body.woocommerce-order-received .ln-thankyou-order-section {
        margin-top: 40px;
    }

    body.woocommerce-order-received .ln-thankyou-order-section__head {
        margin-bottom: 18px;
    }

    body.woocommerce-order-received .ln-thankyou-order-content {
        padding: 22px 16px;
        overflow: hidden;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details {
        table-layout: fixed;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details thead th,
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details tbody td,
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details tfoot th,
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details tfoot td {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details .product-name {
        width: 68%;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details .product-total {
        width: 32%;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-table--order-details .product-name a {
        font-size: 16px;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-column--billing-address,
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-column--shipping-address {
        padding: 20px !important;
    }

    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-column__title {
        font-size: 22px;
    }

    body.woocommerce-order-received .ln-thankyou-failed,
    body.woocommerce-order-received .ln-thankyou-fallback {
        padding: 36px 18px;
    }

    body.woocommerce-order-received .ln-thankyou-actions--center {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {

    body.woocommerce-order-received .ln-thankyou-page {
        width: calc(100% - 24px);
    }

    body.woocommerce-order-received .ln-thankyou-hero h1,
    body.woocommerce-order-received .ln-thankyou-failed h1 {
        font-size: 35px;
    }

    body.woocommerce-order-received .ln-thankyou-overview__item {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ========================================
   37. THANK YOU — ADDRESS CARDS FINAL ALIGNMENT
   Keeps buyer + recipient details aligned cleanly
======================================== */

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    clear: both !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details .woocommerce-columns--addresses,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details .woocommerce-columns.addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details .woocommerce-columns--addresses > .woocommerce-column,
body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-customer-details .woocommerce-columns.addresses > .woocommerce-column {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    clear: none !important;
    grid-column: auto !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-column--billing-address {
    order: 1 !important;
}

body.woocommerce-order-received .ln-thankyou-order-content
.woocommerce-column--shipping-address {
    order: 2 !important;
}

@media (max-width: 767px) {
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-customer-details .woocommerce-columns--addresses,
    body.woocommerce-order-received .ln-thankyou-order-content
    .woocommerce-customer-details .woocommerce-columns.addresses {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ========================================
   38. BENEFITPAY — PAYMENT PROOF UPLOAD
   Secure screenshot uploader on Order Received page
======================================== */

body.woocommerce-order-received .ln-payment-proof {
    margin-top: 22px;
    padding: 28px;
    border: 1px solid rgba(82, 13, 27, 0.12);
    border-radius: 2px;
    background: #FFFDFC;
    box-shadow: 0 14px 36px rgba(43, 0, 8, 0.05);
}

body.woocommerce-order-received .ln-payment-proof__head {
    max-width: 760px;
}

body.woocommerce-order-received .ln-payment-proof__head h2 {
    margin: 6px 0 9px;
    color: #2B0008;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.12;
}

body.woocommerce-order-received .ln-payment-proof__head p {
    margin: 0;
    color: #806E70;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

body.woocommerce-order-received .ln-payment-proof__message {
    display: grid;
    gap: 4px;
    margin-top: 20px;
    padding: 15px 17px;
    border: 1px solid rgba(82, 13, 27, 0.12);
    background: #F8F1EC;
    color: #25191B;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.65;
}

body.woocommerce-order-received .ln-payment-proof__message strong {
    color: #520D1B;
    font-weight: 700;
}

body.woocommerce-order-received .ln-payment-proof__message--error {
    border-color: rgba(143, 25, 45, 0.24);
    background: #FFF6F6;
}

body.woocommerce-order-received .ln-payment-proof__message--verified {
    background: #F6F8F3;
}

body.woocommerce-order-received .ln-payment-proof__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin-top: 22px;
}

body.woocommerce-order-received .ln-payment-proof__file-field {
    min-width: 0;
}

body.woocommerce-order-received .ln-payment-proof__file-field label {
    display: block;
    margin-bottom: 8px;
    color: #25191B;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.woocommerce-order-received .ln-payment-proof__file-field input[type="file"] {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 7px 9px;
    border: 1px solid rgba(82, 13, 27, 0.18);
    border-radius: 0;
    background: #FFFFFF;
    color: #25191B;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
}

body.woocommerce-order-received .ln-payment-proof__file-field input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 13px;
    border: 0;
    background: #F2E6E2;
    color: #520D1B;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

body.woocommerce-order-received .ln-payment-proof__file-field small {
    display: block;
    margin-top: 7px;
    color: #806E70;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

body.woocommerce-order-received .ln-payment-proof__submit {
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #520D1B;
    border-radius: 0;
    background: #520D1B;
    color: #FFFFFF;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-order-received .ln-payment-proof__submit:hover,
body.woocommerce-order-received .ln-payment-proof__submit:focus {
    border-color: #2B0008;
    background: #2B0008;
    color: #FFFFFF;
}

body.woocommerce-order-received .ln-payment-proof__privacy {
    grid-column: 1 / -1;
    margin: -4px 0 0;
    color: #806E70;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 767px) {

    body.woocommerce-order-received .ln-payment-proof {
        margin-top: 16px;
        padding: 21px 18px;
    }

    body.woocommerce-order-received .ln-payment-proof__head h2 {
        font-size: 27px;
    }

    body.woocommerce-order-received .ln-payment-proof__form {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 18px;
    }

    body.woocommerce-order-received .ln-payment-proof__submit {
        width: 100%;
    }

    body.woocommerce-order-received .ln-payment-proof__privacy {
        grid-column: auto;
        margin-top: -2px;
    }
}
