/*
Theme Name: Flezzora New Theme
Author: Flezzora
Description: Custom WordPress theme for Flezzora.
Version: 1.0.3
Text Domain: flezzora-new-theme
*/

/* =========================================================
   1. DESIGN TOKENS (REF: EXACT DESIGN MATCH)
   ========================================================= */

:root {

    /* Brand Colors */
    --flezzora-bg: #F9F7F3;
    --flezzora-surface: #FFFFFF;
    --flezzora-text: #2E2B29;
    --flezzora-muted: #77716B;

    --flezzora-lavender: #B8AEDC;
    --flezzora-lavender-soft: #EEEAF8;

    --flezzora-sage: #DCE3D5;
    --flezzora-blush: #F2E7E0;
    --flezzora-beige: #E8DED3;

    --flezzora-border: #E5DED6;

    /* Legacy Mappings */
    --color-primary: #8A7765;
    --color-secondary: #DCCFC0;
    --color-background: #F9F7F3;
    --color-text: #2E2B29;
    --color-button: #B8AEDC;
    --color-button-hover: #9F93C9;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Layout */
    --flezzora-container: 1180px;
    --container-width: 1180px;

    /* Radius */
    --flezzora-radius-sm: 6px;
    --flezzora-radius-md: 10px;
    --flezzora-radius-lg: 14px;
    --radius-small: 6px;
    --radius-medium: 10px;

    /* Typography */
    --flezzora-heading-font: 'Cormorant Garamond', Georgia, serif;
    --flezzora-body-font: 'Plus Jakarta Sans', Arial, sans-serif;
    --font-body: 'Plus Jakarta Sans', Arial, sans-serif;

    /* Motion */
    --flezzora-transition: 220ms ease;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}


/* =========================================================
   2. GLOBAL RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--flezzora-body-font);
    background-color: var(--flezzora-bg);
    color: var(--flezzora-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--flezzora-transition);
}

a:hover {
    color: var(--flezzora-lavender);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--flezzora-heading-font);
    color: var(--flezzora-text);
    font-weight: 400;
    margin-top: 0;
}

.flezzora-container,
.container {
    width: 100% !important;
    max-width: var(--flezzora-container) !important;
    margin-inline: auto !important;
    padding-inline: 20px !important;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.site-main,
.flezzora-home {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: clip !important;
}

.flezzora-container > *,
.container > * {
    min-width: 0 !important;
}

img,
svg,
iframe,
video {
    max-width: 100% !important;
}

input,
select,
textarea,
button {
    max-width: 100% !important;
}


/* =========================================================
   3. BUTTONS & UTILITIES
   ========================================================= */

.flezzora-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 12px 28px !important;
    border-radius: var(--flezzora-radius-sm) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all var(--flezzora-transition) !important;
    border: none !important;
}

.flezzora-btn--primary {
    background-color: var(--flezzora-lavender) !important;
    color: #FFFFFF !important;
}

.flezzora-btn--primary:hover {
    background-color: #9F93C9 !important;
    color: #FFFFFF !important;
    transform: translateY(-1px) !important;
}

.flezzora-btn--dark {
    background-color: var(--flezzora-text) !important;
    color: #FFFFFF !important;
}

.flezzora-btn--dark:hover {
    background-color: #45403D !important;
    color: #FFFFFF !important;
    transform: translateY(-1px) !important;
}

.flezzora-btn--outline {
    border: 1px solid var(--flezzora-text) !important;
    background: transparent !important;
    color: var(--flezzora-text) !important;
}

.flezzora-btn--outline:hover {
    background: var(--flezzora-text) !important;
    color: #FFFFFF !important;
}


/* =========================================================
   11.2 ANNOUNCEMENT BAR
   ========================================================= */

.flezzora-announcement {
    background-color: var(--flezzora-lavender-soft) !important;
    color: var(--flezzora-text) !important;
    text-align: center !important;
    padding: 7px 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.flezzora-announcement__text {
    margin: 0 !important;
}

.flezzora-announcement__text span {
    font-size: 11px !important;
    margin-left: 4px !important;
    color: #8C7DBE !important;
}


/* =========================================================
   11.3 HEADER & LOGO SIZE FIX
   ========================================================= */

.flezzora-site-header {
    background: var(--flezzora-bg) !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
    padding: 18px 0 !important;
}

.flezzora-header__row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 20px !important;
    min-width: 0 !important;
}

.flezzora-nav,
.flezzora-header__utilities,
.flezzora-branding {
    min-width: 0 !important;
}

.flezzora-branding {
    display: flex !important;
    align-items: center !important;
}

/* FIX LOGO SIZE DISPLAY */
.site-header .custom-logo-link img,
.site-header .custom-logo,
.site-header .site-branding img,
.site-branding img {
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.flezzora-logo-text {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--flezzora-text) !important;
}

.flezzora-nav__list {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(10px, 1.4vw, 22px) !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    flex-wrap: wrap !important;
}

.flezzora-nav__list a {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: var(--flezzora-text) !important;
}

.flezzora-nav__list a:hover {
    color: var(--flezzora-lavender) !important;
}

.flezzora-header__utilities {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.flezzora-header__search-form {
    display: flex !important;
    align-items: center !important;
    background: var(--flezzora-surface) !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
    width: 210px !important;
}

.flezzora-header__search-input {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 13px !important;
    outline: none !important;
    width: 100% !important;
    color: var(--flezzora-text) !important;
}

.flezzora-header__search-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    color: var(--flezzora-muted) !important;
    display: flex !important;
    align-items: center !important;
}

.flezzora-header__icon-link {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--flezzora-text) !important;
}

.flezzora-header__icon-link .badge {
    position: absolute !important;
    top: -6px !important;
    right: -8px !important;
    background: var(--flezzora-lavender) !important;
    color: #FFFFFF !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* =========================================================
   11.4 HERO SECTION
   ========================================================= */

.flezzora-hero {
    padding: 60px 0 80px !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-hero__grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 50px !important;
    align-items: center !important;
}

.flezzora-hero__eyebrow {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--flezzora-muted) !important;
    margin-bottom: 14px !important;
    display: block !important;
}

.flezzora-hero__title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 56px !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
    margin: 0 0 20px !important;
}

.flezzora-hero__title-italic {
    font-style: italic !important;
    color: #9587C5 !important;
    font-weight: 400 !important;
}

.flezzora-hero__subtitle {
    font-size: 16px !important;
    color: var(--flezzora-muted) !important;
    max-width: 440px !important;
    margin: 0 0 30px !important;
    line-height: 1.6 !important;
}

.flezzora-hero__actions {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.flezzora-hero__link {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: var(--flezzora-text) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.flezzora-hero__visual {
    position: relative !important;
}

.flezzora-hero__mockup-card {
    position: relative !important;
    background: #FAF7F2 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
    min-height: 380px !important;
    overflow: hidden !important;
}

.flezzora-hero__tablet {
    width: 280px !important;
    height: 360px !important;
    background: #111111 !important;
    border-radius: 24px !important;
    padding: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transform: rotate(12deg) translateY(-10px) !important;
    position: relative !important;
}

.flezzora-hero__tablet-screen {
    width: 100% !important;
    height: 100% !important;
    background: #FFFFFF !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    padding: 20px !important;
}

.flezzora-hero__planner-header {
    border-bottom: 2px solid var(--flezzora-border) !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

.flezzora-hero__planner-title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 26px !important;
    display: block !important;
    color: var(--flezzora-text) !important;
}

.flezzora-hero__planner-sub {
    font-size: 9px !important;
    letter-spacing: 0.1em !important;
    color: var(--flezzora-muted) !important;
}

.flezzora-hero__planner-body {
    display: flex !important;
    gap: 15px !important;
}

.flezzora-hero__planner-col {
    flex: 1 !important;
}

.flezzora-hero__planner-line {
    height: 8px !important;
    background: #F0EAE1 !important;
    border-radius: 4px !important;
    margin-bottom: 8px !important;
}

.flezzora-hero__planner-box {
    height: 60px !important;
    background: var(--flezzora-lavender-soft) !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
}

.flezzora-hero__stylus {
    position: absolute !important;
    bottom: -15px !important;
    right: -20px !important;
    width: 8px !important;
    height: 220px !important;
    background: #E8E5DF !important;
    border-radius: 4px !important;
    transform: rotate(-35deg) !important;
}

.flezzora-hero__brand-tag {
    position: absolute !important;
    top: 20px !important;
    right: 25px !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    color: #D3C9BC !important;
}


/* =========================================================
   11.5 CATEGORY STRIP (FORCED HORIZONTAL 9-GRID & ROUNDED SQUARES)
   ========================================================= */

.flezzora-categories {
    padding: 35px 0 !important;
    border-top: 1px solid var(--flezzora-border) !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-categories__grid {
    display: grid !important;
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
    gap: 14px !important;
    text-align: center !important;
    align-items: flex-start !important;
}

.flezzora-category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.flezzora-category-card__icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    color: var(--flezzora-text) !important;
    margin: 0 auto !important;
}

.flezzora-category-card:hover .flezzora-category-card__icon {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06) !important;
}

.flezzora-category-card__icon--lavender { background-color: #EEEAF8 !important; }
.flezzora-category-card__icon--sage     { background-color: #EAF0E6 !important; }
.flezzora-category-card__icon--blush    { background-color: #F7EFE9 !important; }
.flezzora-category-card__icon--mint     { background-color: #E5F2EE !important; }
.flezzora-category-card__icon--peach    { background-color: #F9ECE6 !important; }
.flezzora-category-card__icon--gold     { background-color: #F6F0E4 !important; }

.flezzora-category-card__name {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: var(--flezzora-text) !important;
    line-height: 1.3 !important;
}


/* =========================================================
   11.6 COLLECTIONS SECTION
   ========================================================= */

.flezzora-collections {
    padding: 80px 0 !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-collections__layout {
    display: grid !important;
    grid-template-columns: 240px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

.flezzora-collections__eyebrow {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--flezzora-muted) !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.flezzora-collections__title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
    margin: 0 0 24px !important;
}

.flezzora-collections__link {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: var(--flezzora-text) !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.flezzora-collections__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.flezzora-collection-card__image {
    aspect-ratio: 4/5 !important;
    background: #EFECE6 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    overflow: hidden !important;
    border: 1px solid var(--flezzora-border) !important;
}

.flezzora-collection-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.flezzora-collection-card__title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
    margin: 14px 0 4px !important;
}

.flezzora-collection-card__subtitle {
    font-size: 12px !important;
    color: var(--flezzora-muted) !important;
    margin: 0 !important;
}

.flezzora-mockup-planner,
.flezzora-mockup-journal,
.flezzora-mockup-phone,
.flezzora-mockup-template {
    width: 80% !important;
    height: 80% !important;
    background: #FFFFFF !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flezzora-mockup-journal {
    background: #EAE4DC !important;
    border: 1px solid #D5CBBF !important;
}

.flezzora-mockup-cover {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 13px !important;
    color: #6E6255 !important;
    text-align: center !important;
}

.flezzora-mockup-phone {
    width: 55% !important;
    height: 90% !important;
    border-radius: 18px !important;
    background: #111111 !important;
    padding: 5px !important;
}

.flezzora-mockup-screen-floral {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #F5EAE4 0%, #E8D5CE 100%) !important;
    border-radius: 14px !important;
}


/* =========================================================
   11.7 PRODUCTS SECTION (6-COLUMN GRID & CARDS)
   ========================================================= */

.flezzora-products {
    padding: 60px 0 80px !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-products__tabs {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
    padding-bottom: 12px !important;
}

.flezzora-products__tab {
    background: none !important;
    border: none !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: var(--flezzora-muted) !important;
    cursor: pointer !important;
    padding-bottom: 10px !important;
    position: relative !important;
}

.flezzora-products__tab--active {
    color: var(--flezzora-text) !important;
}

.flezzora-products__tab--active::after {
    content: "" !important;
    position: absolute !important;
    bottom: -13px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: var(--flezzora-text) !important;
}

.flezzora-products__grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
}

.flezzora-product-card {
    background: var(--flezzora-bg) !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.flezzora-product-card__image {
    position: relative !important;
    aspect-ratio: 1/1 !important;
    background: #EFECE6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.flezzora-product-card__badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: var(--flezzora-lavender) !important;
    color: #FFFFFF !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    z-index: 2 !important;
}

.flezzora-product-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.flezzora-mockup-mini-screen {
    width: 65% !important;
    height: 75% !important;
    background: #FFFFFF !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.flezzora-product-card__content {
    padding: 14px !important;
}

.flezzora-product-card__title {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 6px !important;
    line-height: 1.35 !important;
}

.flezzora-product-card__price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--flezzora-text) !important;
    margin-bottom: 6px !important;
}

.flezzora-product-card__rating {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11px !important;
}

.flezzora-product-card__rating .stars {
    color: #E2B855 !important;
}

.flezzora-product-card__rating .count {
    color: var(--flezzora-muted) !important;
}

.flezzora-products__cta {
    text-align: center !important;
}


/* =========================================================
   11.8 PROMO BANNER SECTION
   ========================================================= */

.flezzora-promo {
    padding: 40px 0 !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-promo__card {
    background: #DCE3D5 !important;
    border-radius: 16px !important;
    padding: 50px 60px !important;
    display: grid !important;
    grid-template-columns: 1fr 120px 1fr !important;
    gap: 30px !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.flezzora-promo__eyebrow {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: #5C6855 !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.flezzora-promo__title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
    margin: 0 0 10px !important;
}

.flezzora-promo__subtitle {
    font-size: 15px !important;
    color: #4A5444 !important;
    margin: 0 0 24px !important;
}

.flezzora-promo__badge-circle {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    background: #BAC7B2 !important;
    border: 2px dashed #9AA992 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--flezzora-text) !important;
    text-align: center !important;
    transform: rotate(-8deg) !important;
    margin: 0 auto !important;
}

.flezzora-promo__badge-circle span {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    font-weight: 700 !important;
}

.flezzora-promo__badge-circle strong {
    font-size: 20px !important;
    line-height: 1 !important;
}

.flezzora-promo__bundle-mockup {
    position: relative !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flezzora-promo__mockup-tablet {
    width: 140px !important;
    height: 180px !important;
    background: #FFFFFF !important;
    border-radius: 10px !important;
    padding: 15px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.flezzora-promo__tablet-title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 18px !important;
    letter-spacing: 1px !important;
}

.flezzora-promo__tablet-sub {
    font-size: 9px !important;
    color: var(--flezzora-muted) !important;
}


/* =========================================================
   11.9 BENEFITS STRIP
   ========================================================= */

.flezzora-benefits {
    padding: 45px 0 !important;
    background: #FAF8F5 !important;
    border-top: 1px solid var(--flezzora-border) !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

.flezzora-benefits__grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.flezzora-benefit-item {
    text-align: center !important;
    padding: 0 15px !important;
    border-right: 1px solid var(--flezzora-border) !important;
}

.flezzora-benefit-item:last-child {
    border-right: none !important;
}

.flezzora-benefit-item__icon {
    color: var(--flezzora-text) !important;
}

.flezzora-benefit-item__title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--flezzora-text) !important;
    margin: 12px 0 6px !important;
}

.flezzora-benefit-item__desc {
    font-size: 12px !important;
    color: var(--flezzora-muted) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}


/* =========================================================
   11.10 NEWSLETTER SECTION
   ========================================================= */

.flezzora-newsletter {
    padding: 60px 0 !important;
    background: var(--flezzora-bg) !important;
}

.flezzora-newsletter__card {
    background: #F4EFEA !important;
    border-radius: 16px !important;
    padding: 50px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 180px !important;
    gap: 40px !important;
    align-items: center !important;
}

.flezzora-newsletter__eyebrow {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--flezzora-muted) !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.flezzora-newsletter__title {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 34px !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
    margin: 0 0 12px !important;
    line-height: 1.2 !important;
}

.flezzora-newsletter__title span {
    color: var(--flezzora-lavender) !important;
}

.flezzora-newsletter__subtitle {
    font-size: 13px !important;
    color: var(--flezzora-muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.flezzora-newsletter__input-group {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.flezzora-newsletter__input {
    flex: 1 !important;
    padding: 14px 18px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    background: #FFFFFF !important;
    outline: none !important;
}

.flezzora-newsletter__checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: var(--flezzora-muted) !important;
}

.flezzora-newsletter__vase {
    width: 120px !important;
    height: 150px !important;
    margin: 0 auto !important;
    position: relative !important;
}

.flezzora-newsletter__ceramic-pot {
    width: 90px !important;
    height: 90px !important;
    background: #EAE1D7 !important;
    border-radius: 50% !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 15px !important;
}

.flezzora-newsletter__flowers {
    width: 60px !important;
    height: 90px !important;
    background: radial-gradient(circle, #C2B6E3 0%, transparent 70%) !important;
    position: absolute !important;
    top: 0 !important;
    left: 30px !important;
}


/* =========================================================
   11.11 INSTAGRAM GALLERY
   ========================================================= */

.flezzora-instagram {
    padding: 70px 0 !important;
    background: var(--flezzora-bg) !important;
    text-align: center !important;
}

.flezzora-instagram__handle {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--flezzora-text) !important;
    display: block !important;
    margin-bottom: 30px !important;
}

.flezzora-instagram__grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 35px !important;
}

.flezzora-insta-tile {
    aspect-ratio: 1/1 !important;
    background: #ECE7E0 !important;
    border-radius: 10px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--flezzora-border) !important;
}

.flezzora-insta-tile__quote {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 15px !important;
    color: #6B6055 !important;
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
}

.flezzora-insta-tile__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(184, 174, 220, 0.4) !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
}

.flezzora-insta-tile:hover .flezzora-insta-tile__overlay {
    opacity: 1 !important;
}


/* =========================================================
   11.12 FOOTER
   ========================================================= */

.flezzora-footer {
    background: #F4EFEA !important;
    padding: 70px 0 30px !important;
    border-top: 1px solid var(--flezzora-border) !important;
    color: var(--flezzora-text) !important;
}

.flezzora-footer__grid {
    display: grid !important;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.8fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
}

.flezzora-footer__logo {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--flezzora-text) !important;
    display: block !important;
    margin-bottom: 16px !important;
}

.flezzora-footer__bio {
    font-size: 13px !important;
    color: var(--flezzora-muted) !important;
    line-height: 1.6 !important;
    margin: 0 0 20px !important;
}

.flezzora-footer__socials {
    display: flex !important;
    gap: 14px !important;
    color: var(--flezzora-text) !important;
}

.flezzora-footer__heading {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin: 0 0 18px !important;
    color: var(--flezzora-text) !important;
}

.flezzora-footer__menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.flezzora-footer__menu li {
    margin-bottom: 10px !important;
}

.flezzora-footer__menu a {
    font-size: 13px !important;
    color: var(--flezzora-muted) !important;
    text-decoration: none !important;
}

.flezzora-footer__menu a:hover {
    color: var(--flezzora-text) !important;
}

.flezzora-footer__payment-badges {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
}

.pay-card {
    background: #FFFFFF !important;
    border: 1px solid var(--flezzora-border) !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    color: var(--flezzora-text) !important;
}

.flezzora-footer__security-note {
    display: flex !important;
    gap: 8px !important;
    align-items: flex-start !important;
    font-size: 11px !important;
    color: var(--flezzora-muted) !important;
    line-height: 1.4 !important;
}

.flezzora-footer__bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 25px !important;
    border-top: 1px solid var(--flezzora-border) !important;
    font-size: 12px !important;
    color: var(--flezzora-muted) !important;
}

.flezzora-footer__copyright,
.flezzora-footer__tagline {
    margin: 0 !important;
}

.flezzora-footer__tagline .heart {
    color: var(--flezzora-lavender) !important;
}


/* =========================================================
   RESPONSIVE INFRASTRUCTURE / MOBILE NAVIGATION
   ========================================================= */

.flezzora-mobile-menu-toggle {
    display: none !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 8px !important;
    background: var(--flezzora-surface) !important;
    color: var(--flezzora-text) !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex: 0 0 auto !important;
}

.flezzora-mobile-menu {
    display: none !important;
    width: 100% !important;
    border-top: 1px solid var(--flezzora-border) !important;
    background: var(--flezzora-bg) !important;
    padding: 14px 0 18px !important;
}

.flezzora-mobile-menu.is-open {
    display: block !important;
}

.flezzora-mobile-menu .flezzora-nav__list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
}

.flezzora-mobile-menu .flezzora-nav__list li {
    min-width: 0 !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

.flezzora-mobile-menu .flezzora-nav__list a {
    display: block !important;
    padding: 12px 4px !important;
    font-size: 12px !important;
}

/* Prevent grid/flex children from imposing an intrinsic minimum width. */
.flezzora-hero__grid,
.flezzora-collections__layout,
.flezzora-promo__card,
.flezzora-newsletter__card,
.flezzora-footer__grid,
.flezzora-products__grid,
.flezzora-categories__grid,
.flezzora-benefits__grid,
.flezzora-instagram__grid {
    min-width: 0 !important;
}

.flezzora-hero__content,
.flezzora-hero__visual,
.flezzora-collections__header,
.flezzora-collections__grid,
.flezzora-promo__content,
.flezzora-promo__visual,
.flezzora-newsletter__content,
.flezzora-newsletter__form-wrap,
.flezzora-newsletter__visual {
    min-width: 0 !important;
}

.flezzora-hero__actions {
    flex-wrap: wrap !important;
}

.flezzora-newsletter__input-group {
    min-width: 0 !important;
    flex-wrap: wrap !important;
}

.flezzora-newsletter__input {
    min-width: 0 !important;
}

.flezzora-promo__bundle-mockup,
.flezzora-hero__mockup-card {
    min-width: 0 !important;
}

/* =========================================================
   LANGUAGE SWITCHER
   TranslatePress powers the translation; these styles control
   the Flezzora presentation and placement.
   ========================================================= */

.flezzora-language-control {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.flezzora-language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 50px;
    padding: 0 10px;
    border: 1px solid var(--flezzora-border);
    border-radius: 999px;
    background: #F5F0FB;
    color: var(--flezzora-text);
    cursor: pointer;
    font: inherit;
    line-height: 1;
    transition: background-color var(--flezzora-transition), border-color var(--flezzora-transition), transform var(--flezzora-transition);
}

.flezzora-language-button:hover,
.flezzora-language-button:focus-visible {
    background: var(--flezzora-lavender-soft);
    border-color: var(--flezzora-lavender);
    outline: none;
}

.flezzora-language-icon,
.flezzora-language-chevron {
    flex: 0 0 auto;
}

.flezzora-language-control.is-open .flezzora-language-chevron {
    transform: rotate(180deg);
}

.flezzora-language-chevron {
    transition: transform var(--flezzora-transition);
}

.flezzora-language-dropdown {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 8px);
    right: 0;
    width: 190px;
    padding: 6px;
    border: 1px solid var(--flezzora-border);
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(46, 43, 41, 0.12);
}

.flezzora-language-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flezzora-language-item {
    margin: 0;
    padding: 0;
}

.flezzora-language-item a {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    box-sizing: border-box;
    border-radius: 8px;
    color: var(--flezzora-text);
    text-decoration: none;
    line-height: 1.2;
}

.flezzora-language-item a:hover,
.flezzora-language-item a:focus-visible {
    background: var(--flezzora-lavender-soft);
    outline: none;
}

.flezzora-language-item.is-current a {
    font-weight: 700;
}

.flezzora-language-flag {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
}

.flezzora-language-name {
    min-width: 0;
    flex: 1 1 auto;
}

.flezzora-language-code {
    flex: 0 0 auto;
    font-size: 11px;
    opacity: 0.55;
    text-transform: uppercase;
}

.flezzora-language-control--mobile {
    display: none;
    width: 100%;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--flezzora-border);
}

.flezzora-language-control--mobile .flezzora-language-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
    padding-inline: 12px;
    border-radius: 10px;
}

.flezzora-language-control--mobile .flezzora-language-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
}

/* =========================================================
   11.13 RESPONSIVE BREAKPOINTS
   ========================================================= */

@media (max-width: 1100px) {

    .flezzora-header__row {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 14px !important;
    }

    .flezzora-nav__list {
        gap: 10px !important;
    }

    .flezzora-nav__list a {
        font-size: 10px !important;
    }

    .flezzora-header__utilities {
        gap: 10px !important;
        min-width: 0 !important;
    }

    .flezzora-header__search-form {
        width: clamp(150px, 18vw, 210px) !important;
        max-width: 210px !important;
    }

    .flezzora-hero__grid {
        gap: 32px !important;
    }

    .flezzora-hero__title {
        font-size: clamp(44px, 5vw, 56px) !important;
    }

    .flezzora-categories__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .flezzora-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .flezzora-promo__card {
        grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr) !important;
        padding: 40px !important;
    }

    .flezzora-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* =========================================================
   TABLET + MOBILE HEADER
   The search stays between the logo and hamburger and
   automatically uses the remaining available width.
   ========================================================= */

@media (max-width: 820px) {

    .flezzora-container,
    .container {
        padding-inline: 16px !important;
    }

    .flezzora-site-header {
        padding: 12px 0 !important;
    }

    .flezzora-header__row {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .flezzora-nav {
        display: none !important;
    }

    .flezzora-branding {
        grid-column: 1 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .flezzora-branding .custom-logo-link,
    .flezzora-branding .custom-logo {
        max-width: 100% !important;
    }

    .flezzora-mobile-menu-toggle {
        display: inline-flex !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        width: 38px !important;
        height: 38px !important;
    }

    .flezzora-header__utilities {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: stretch !important;
        min-width: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: clamp(4px, 1.4vw, 10px) !important;
    }

    /* Move language selection into the mobile menu so the header
       never becomes overcrowded on small screens. */
    .flezzora-language-control--desktop {
        display: none !important;
    }

    .flezzora-language-control--mobile {
        display: block !important;
    }

    /* Search: flexible center element. */
    .flezzora-header__search-form {
        display: flex !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 210px !important;
        height: 36px !important;
        padding: 5px 10px !important;
        box-sizing: border-box !important;
    }

    .flezzora-header__search-input {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        font-size: 11px !important;
        line-height: 1 !important;
        padding: 0 !important;
    }

    .flezzora-header__search-btn {
        flex: 0 0 auto !important;
        width: 22px !important;
        height: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .flezzora-header__search-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Account / wishlist / cart stay visible beside search. */
    .flezzora-header__icon-link {
        flex: 0 0 auto !important;
        width: 20px !important;
        height: 30px !important;
    }

    .flezzora-header__icon-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .flezzora-header__icon-link .badge {
        width: 14px !important;
        height: 14px !important;
        top: -3px !important;
        right: -5px !important;
        font-size: 8px !important;
    }

    .flezzora-mobile-menu {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        min-width: 0 !important;
    }

    .flezzora-hero {
        padding: 44px 0 56px !important;
    }

    .flezzora-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .flezzora-hero__content {
        max-width: 720px !important;
    }

    .flezzora-hero__title {
        font-size: clamp(38px, 7.2vw, 52px) !important;
    }

    .flezzora-hero__visual {
        width: 100% !important;
    }

    .flezzora-hero__mockup-card {
        width: 100% !important;
        min-height: 340px !important;
        padding: 24px !important;
    }

    .flezzora-hero__tablet {
        width: min(280px, 70vw) !important;
        height: min(360px, 90vw) !important;
    }

    .flezzora-collections__layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .flezzora-collections__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .flezzora-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .flezzora-products__tabs {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        scrollbar-width: none !important;
        white-space: nowrap !important;
    }

    .flezzora-products__tabs::-webkit-scrollbar {
        display: none !important;
    }

    .flezzora-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .flezzora-promo__card {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 32px 24px !important;
    }

    .flezzora-promo__badge {
        justify-self: start !important;
    }

    .flezzora-promo__visual {
        min-height: 170px !important;
    }

    .flezzora-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .flezzora-benefit-item {
        border-right: none !important;
        border-bottom: 1px solid var(--flezzora-border) !important;
        padding: 0 10px 18px !important;
    }

    .flezzora-benefit-item:nth-last-child(-n+1) {
        grid-column: 1 / -1 !important;
    }

    .flezzora-newsletter__card {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 30px !important;
    }

    .flezzora-newsletter__input-group {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .flezzora-newsletter__input,
    .flezzora-newsletter__input-group .flezzora-btn {
        width: 100% !important;
    }

    .flezzora-instagram__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .flezzora-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }
}

/* =========================================================
   11.13A SMALL TABLET / LARGE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .flezzora-container,
    .container {
        padding-inline: 14px !important;
    }

    .flezzora-announcement {
        padding: 7px 12px !important;
        font-size: 11px !important;
    }

    .flezzora-branding .custom-logo,
    .site-header .custom-logo,
    .site-branding img {
        max-height: 32px !important;
    }

    .flezzora-logo-text {
        font-size: 22px !important;
    }

    .flezzora-header__utilities {
        gap: 5px !important;
    }

    /* Search grows/shrinks with the remaining width. */
    .flezzora-header__search-form {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 190px !important;
        height: 34px !important;
        padding: 5px 9px !important;
    }

    .flezzora-header__search-input {
        font-size: 10px !important;
    }

    .flezzora-header__search-btn {
        width: 20px !important;
        height: 20px !important;
    }

    .flezzora-header__icon-link {
        width: 19px !important;
        height: 28px !important;
    }

    .flezzora-header__icon-link svg {
        width: 17px !important;
        height: 17px !important;
    }

    .flezzora-mobile-menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    .flezzora-mobile-menu .flezzora-nav__list {
        grid-template-columns: 1fr !important;
    }

    .flezzora-hero__actions {
        align-items: stretch !important;
        gap: 14px !important;
    }

    .flezzora-hero__actions .flezzora-btn,
    .flezzora-hero__actions .flezzora-hero__link {
        width: 100% !important;
        justify-content: center !important;
    }

    .flezzora-hero__title {
        font-size: clamp(32px, 10vw, 42px) !important;
    }

    .flezzora-hero__subtitle {
        font-size: 14px !important;
    }

    .flezzora-hero__mockup-card {
        min-height: 290px !important;
        padding: 18px !important;
    }

    .flezzora-hero__tablet {
        width: 210px !important;
        height: 270px !important;
        padding: 9px !important;
        border-radius: 20px !important;
    }

    .flezzora-hero__tablet-screen {
        padding: 14px !important;
    }

    .flezzora-categories {
        padding: 26px 0 !important;
    }

    .flezzora-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px 10px !important;
    }

    .flezzora-category-card__icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }

    .flezzora-category-card__name {
        font-size: 9px !important;
    }

    .flezzora-collections,
    .flezzora-products,
    .flezzora-instagram {
        padding-top: 50px !important;
        padding-bottom: 55px !important;
    }

    .flezzora-collections__grid {
        grid-template-columns: 1fr !important;
    }

    .flezzora-products__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .flezzora-product-card__content {
        padding: 14px !important;
    }

    .flezzora-products__tab {
        font-size: 10px !important;
    }

    .flezzora-products__tabs {
        gap: 22px !important;
    }

    .flezzora-promo__title {
        font-size: 32px !important;
    }

    .flezzora-promo__badge-circle {
        width: 74px !important;
        height: 74px !important;
    }

    .flezzora-promo__mockup-tablet {
        width: 110px !important;
        height: 145px !important;
    }

    .flezzora-benefits__grid {
        grid-template-columns: 1fr !important;
    }

    .flezzora-benefit-item:nth-last-child(-n+1) {
        grid-column: auto !important;
    }

    .flezzora-instagram__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .flezzora-footer {
        padding-top: 50px !important;
    }

    .flezzora-footer__grid {
        grid-template-columns: 1fr !important;
    }

    .flezzora-footer__bottom {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* =========================================================
   11.13B SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .flezzora-container,
    .container {
        padding-inline: 10px !important;
    }

    .flezzora-header__row {
        gap: 4px !important;
    }

    .flezzora-branding .custom-logo,
    .site-header .custom-logo,
    .site-branding img {
        max-height: 28px !important;
    }

    .flezzora-header__utilities {
        gap: 4px !important;
        min-width: 0 !important;
    }

    /* Search always stays visible and consumes remaining space. */
    .flezzora-header__search-form {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 32px !important;
        padding: 4px 8px !important;
    }

    .flezzora-header__search-input {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        font-size: 9px !important;
    }

    .flezzora-header__search-btn {
        width: 18px !important;
        height: 18px !important;
    }

    .flezzora-header__search-btn svg {
        width: 12px !important;
        height: 12px !important;
    }

    .flezzora-header__icon-link {
        width: 17px !important;
        height: 26px !important;
    }

    .flezzora-header__icon-link svg {
        width: 16px !important;
        height: 16px !important;
    }

    .flezzora-header__icon-link .badge {
        width: 12px !important;
        height: 12px !important;
        font-size: 7px !important;
        top: -3px !important;
        right: -4px !important;
    }

    .flezzora-mobile-menu-toggle {
        width: 34px !important;
        height: 34px !important;
        border-radius: 7px !important;
    }
}

/* =========================================================
   11.13C VERY SMALL PHONES
   ========================================================= */

@media (max-width: 350px) {

    .flezzora-container,
    .container {
        padding-inline: 7px !important;
    }

    .flezzora-header__row {
        gap: 3px !important;
    }

    .flezzora-branding .custom-logo,
    .site-header .custom-logo,
    .site-branding img {
        max-height: 26px !important;
    }

    .flezzora-header__utilities {
        gap: 3px !important;
    }

    .flezzora-header__search-form {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 30px !important;
        padding: 3px 6px !important;
    }

    .flezzora-header__search-input {
        font-size: 8px !important;
    }

    .flezzora-header__search-btn {
        width: 16px !important;
        height: 16px !important;
    }

    .flezzora-header__search-btn svg {
        width: 11px !important;
        height: 11px !important;
    }

    .flezzora-header__icon-link {
        width: 16px !important;
        height: 24px !important;
    }

    .flezzora-header__icon-link svg {
        width: 15px !important;
        height: 15px !important;
    }

    .flezzora-mobile-menu-toggle {
        width: 32px !important;
        height: 32px !important;
    }

    .flezzora-mobile-menu-toggle svg {
        width: 16px !important;
        height: 16px !important;
    }

    .flezzora-hero__title {
        font-size: 30px !important;
    }
}


/* =========================================================
   12. SINGLE PRODUCT PAGE — FLEZZORA REFINEMENT
   ========================================================= */

.single-product .flezzora-woocommerce > .container {
    width: 100% !important;
    max-width: var(--flezzora-container) !important;
    margin-inline: auto !important;
    padding-inline: 20px !important;
}

/*
 * Etsy-inspired product layout:
 * left = vertical media rail + main image
 * right = purchase summary + description/reviews
 * related products continue below both columns
 */
.single-product div.product {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 46px !important;
    row-gap: 34px !important;
    align-items: start !important;
}

.single-product div.product::before,
.single-product div.product::after {
    display: none !important;
}

.single-product div.product > .woocommerce-product-gallery,
.single-product div.product > .summary,
.single-product div.product > .woocommerce-tabs {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    min-width: 0 !important;
}

.single-product div.product > .woocommerce-product-gallery {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
}

.single-product div.product > .summary {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
}

.single-product div.product > .woocommerce-tabs {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    clear: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.single-product div.product > section.related.products,
.single-product div.product > .related.products,
.single-product div.product > section.upsells.products,
.single-product div.product > .upsells.products {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    width: 100% !important;
}

/* Breadcrumb */
.single-product .woocommerce-breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 0 28px !important;
    padding: 7px 12px !important;
    color: var(--flezzora-muted) !important;
    background: var(--flezzora-lavender-soft) !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 999px !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.035em !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 14px rgba(70, 57, 45, 0.035) !important;
}

.single-product .woocommerce-breadcrumb a {
    color: var(--flezzora-text) !important;
    text-decoration: none !important;
    transition: color var(--flezzora-transition) !important;
}

.single-product .woocommerce-breadcrumb a:hover {
    color: var(--flezzora-lavender) !important;
}

.single-product .woocommerce-breadcrumb .flezzora-breadcrumb-separator {
    display: inline-block !important;
    margin: 0 8px !important;
    color: var(--flezzora-lavender) !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.single-product .woocommerce-breadcrumb .flezzora-breadcrumb-current {
    color: var(--flezzora-text) !important;
    font-weight: 600 !important;
}

@media (max-width: 820px) {
    .single-product .woocommerce-breadcrumb {
        max-width: 100% !important;
        margin-bottom: 22px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 430px) {
    .single-product .woocommerce-breadcrumb {
        padding: 6px 10px !important;
        margin-bottom: 18px !important;
        font-size: 9px !important;
    }

    .single-product .woocommerce-breadcrumb .flezzora-breadcrumb-separator {
        margin: 0 6px !important;
    }
}

/* Summary */
.single-product .summary .product_title {
    margin: 0 0 18px !important;
    color: var(--flezzora-text) !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(34px, 3.2vw, 46px) !important;
    font-weight: 400 !important;
    line-height: 1.08 !important;
}

.single-product .summary .price {
    margin: 0 0 22px !important;
    color: var(--flezzora-text) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.single-product .summary .price del {
    color: var(--flezzora-muted) !important;
    opacity: 0.7 !important;
    margin-right: 8px !important;
}

.single-product .summary .price ins {
    color: var(--flezzora-text) !important;
    text-decoration: none !important;
}

.single-product .summary .woocommerce-product-details__short-description {
    margin: 0 0 24px !important;
    color: var(--flezzora-text) !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

/* Purchase controls */
.single-product form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 22px 0 20px !important;
}

.single-product form.cart .quantity {
    float: none !important;
    margin: 0 !important;
}

.single-product form.cart .quantity .qty {
    width: 72px !important;
    min-width: 72px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 8px !important;
    background: var(--flezzora-surface) !important;
    color: var(--flezzora-text) !important;
    text-align: center !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.single-product form.cart .single_add_to_cart_button {
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 24px !important;
    background: var(--color-button) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    transition: background-color var(--flezzora-transition), transform var(--flezzora-transition) !important;
}

.single-product form.cart .single_add_to_cart_button:hover {
    background: var(--color-button-hover) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px) !important;
}

/* Hide express PayPal only on single-product pages. */
.single-product .ppc-button-wrapper,
.single-product #ppc-button-ppcp-gateway,
.single-product .ppc-button-container,
.single-product .paypal-buttons,
.single-product .paypal-buttons-container,
.single-product .wc-ppcp-product-button,
.single-product .wc-ppcp-express-button {
    display: none !important;
}

/* Sale pill */
.single-product div.product .onsale {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    right: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 7px 11px !important;
    border-radius: 999px !important;
    background: var(--flezzora-lavender) !important;
    color: #FFFFFF !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
    z-index: 12 !important;
}

/* Category meta */
.single-product .product_meta,
.single-product .flezzora-product-meta {
    margin: 20px 0 0 !important;
    padding-top: 16px !important;
    border-top: 1px solid var(--flezzora-border) !important;
    color: var(--flezzora-muted) !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
}

.single-product .product_meta > span,
.single-product .flezzora-product-meta > span {
    display: block !important;
    margin: 0 0 6px !important;
}

.single-product .flezzora-product-meta__label {
    display: inline-block !important;
    margin: 0 6px 0 0 !important;
    color: var(--flezzora-muted) !important;
    font-weight: 600 !important;
}

.single-product .product_meta .posted_in a,
.single-product .flezzora-product-meta a {
    display: inline-block !important;
    margin: 3px 5px 0 0 !important;
    padding: 4px 9px !important;
    border-radius: 999px !important;
    background: var(--flezzora-lavender-soft) !important;
    color: var(--flezzora-text) !important;
    font-weight: 600 !important;
}

.single-product .product_meta .posted_in a:hover,
.single-product .flezzora-product-meta a:hover {
    background: var(--flezzora-lavender) !important;
    color: #FFFFFF !important;
}

/* Tabs beside the product summary */
.single-product .woocommerce-tabs ul.tabs {
    display: flex !important;
    align-items: flex-end !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

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

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid transparent !important;
    border-bottom: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    background: transparent !important;
    color: var(--flezzora-muted) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--flezzora-text) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    background: var(--flezzora-surface) !important;
    border-color: var(--flezzora-border) !important;
    color: var(--flezzora-text) !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-top: 0 !important;
    border-radius: 0 0 12px 12px !important;
    background: var(--flezzora-surface) !important;
    color: var(--flezzora-text) !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child {
    margin: 0 0 18px !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: 28px !important;
    font-weight: 400 !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
    margin-bottom: 0 !important;
}

/* Reviews */
.single-product #reviews .commentlist {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product #reviews .commentlist li {
    margin: 0 0 16px !important;
    padding: 18px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    background: var(--flezzora-bg) !important;
}

.single-product #review_form_wrapper {
    margin-top: 24px !important;
    padding-top: 24px !important;
    border-top: 1px solid var(--flezzora-border) !important;
}

/* Stable custom gallery */
.single-product .flezzora-product-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: start;
}

.single-product .flezzora-product-gallery__thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-height: min(70vh, 560px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 2px 2px 0;
    margin: 0;
    scrollbar-width: thin;
}

.single-product .flezzora-product-gallery__thumb {
    flex: 0 0 auto;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    border: 1px solid var(--flezzora-border);
    border-radius: 9px;
    background: var(--flezzora-surface);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--flezzora-transition), opacity var(--flezzora-transition), transform var(--flezzora-transition);
}

.single-product .flezzora-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    opacity: .72;
}

.single-product .flezzora-product-gallery__thumb:hover {
    border-color: var(--flezzora-lavender);
    transform: translateY(-1px);
}

.single-product .flezzora-product-gallery__thumb.is-active {
    border: 2px solid var(--flezzora-lavender);
}

.single-product .flezzora-product-gallery__thumb.is-active img,
.single-product .flezzora-product-gallery__thumb:hover img {
    opacity: 1;
}

.single-product .flezzora-product-gallery__main-wrap {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 14px !important;
    background: var(--flezzora-bg);
    clip-path: inset(0 round 14px);
}

.single-product .flezzora-product-gallery__main-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 72vh !important;
    margin: 0 !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    clip-path: inset(0 round 14px) !important;
}

.single-product .flezzora-product-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: var(--flezzora-text);
    box-shadow: 0 7px 20px rgba(46,43,41,.08);
    text-decoration: none;
}

.single-product .flezzora-product-gallery__zoom:hover {
    color: var(--flezzora-text);
    transform: translateY(-1px);
}

.single-product .flezzora-product-gallery--empty {
    grid-template-columns: 1fr;
}

.single-product .flezzora-product-gallery--empty .flezzora-product-gallery__main-wrap {
    grid-column: 1;
}

/* Prevent WooCommerce's original FlexSlider presentation from leaking through. */
.single-product .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery .flex-control-thumbs,
.single-product .woocommerce-product-gallery > .flex-control-thumbs {
    display: none !important;
}

@media (min-width: 821px) {
    .single-product .woocommerce-product-gallery {
        padding-top: 2px !important;
    }
}

@media (max-width: 820px) {
    .single-product div.product {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 30px !important;
    }

    .single-product div.product > .woocommerce-product-gallery,
    .single-product div.product > .summary,
    .single-product div.product > .woocommerce-tabs,
    .single-product div.product > section.related.products,
    .single-product div.product > .related.products,
    .single-product div.product > section.upsells.products,
    .single-product div.product > .upsells.products {
        grid-column: 1 !important;
    }

    .single-product div.product > .woocommerce-product-gallery {
        grid-row: 1 !important;
    }

    .single-product div.product > .summary {
        grid-row: 2 !important;
    }

    .single-product div.product > .woocommerce-tabs {
        grid-row: 3 !important;
    }

    .single-product div.product > section.related.products,
    .single-product div.product > .related.products,
    .single-product div.product > section.upsells.products,
    .single-product div.product > .upsells.products {
        grid-row: 4 !important;
    }

    .single-product .flezzora-product-gallery {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 12px;
    }

    .single-product .flezzora-product-gallery__thumbs {
        max-height: 68vh;
        gap: 8px;
    }

    .single-product .woocommerce-tabs {
        margin-top: 0 !important;
    }
}

@media (max-width: 600px) {
    .single-product .summary .product_title {
        font-size: 34px !important;
    }

    .single-product .summary .price {
        font-size: 22px !important;
    }

    .single-product .flezzora-product-gallery {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .single-product .flezzora-product-gallery__main-wrap {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .single-product .flezzora-product-gallery__thumbs {
        grid-column: 1 !important;
        grid-row: 2 !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        max-height: none !important;
        padding: 2px 0 4px !important;
    }

    .single-product .flezzora-product-gallery__thumb {
        flex: 0 0 68px !important;
        width: 68px !important;
        height: 68px !important;
    }

    .single-product .woocommerce-tabs ul.tabs {
        gap: 5px !important;
        flex-wrap: wrap !important;
    }

    .single-product .woocommerce-tabs ul.tabs li a {
        min-height: 42px !important;
        padding-inline: 14px !important;
        font-size: 12px !important;
    }

    .single-product .woocommerce-tabs .woocommerce-Tabs-panel {
        padding: 22px !important;
    }
}

/* =========================================================
   FINAL PRODUCT IMAGE CORNER FIX
   Ensure all four corners of the Flezzora main product image
   are clipped consistently across browsers.
   ========================================================= */
.single-product .flezzora-product-gallery__main-wrap {
    border-radius: 14px !important;
    overflow: hidden !important;
    clip-path: inset(0 round 14px) !important;
}

.single-product .flezzora-product-gallery__main-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    clip-path: inset(0 round 14px) !important;
}

/* =========================================================
   MY ACCOUNT — BALANCED FULL-HEIGHT DASHBOARD
   ========================================================= */

.woocommerce-account .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) !important;
    gap: 48px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: var(--flezzora-container) !important;
    margin-inline: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    box-sizing: border-box !important;
    min-width: 0 !important;
}

/* Keep both dashboard panels visually aligned from top to bottom. */
.woocommerce-account .woocommerce-MyAccount-navigation {
    display: flex !important;
    align-self: stretch !important;
    height: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    min-height: 438px !important;
    align-self: stretch !important;
    padding: 42px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Give the dashboard a little more visual substance without inventing
   business content that is not present in WooCommerce. */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.woocommerce-account .woocommerce-MyAccount-content > p:last-child {
    margin-bottom: 0 !important;
}

/* Make the account area occupy the available visual height before footer. */
.woocommerce-account .flezzora-woocommerce > .container {
    min-height: 540px !important;
    display: flex !important;
    flex-direction: column !important;
}

.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-breadcrumb,
.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-products-header {
    flex: 0 0 auto !important;
}

/* The account content grid stretches to the available section height. */
.woocommerce-account .flezzora-woocommerce > .container > .woocommerce {
    flex: 1 1 auto !important;
}

@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 250px minmax(0, 1fr) !important;
        gap: 28px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        min-height: 420px !important;
        padding: 34px !important;
    }
}

@media (max-width: 820px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        height: auto !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        height: auto !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        min-height: 320px !important;
        padding: 28px !important;
    }

    .woocommerce-account .flezzora-woocommerce > .container {
        min-height: 0 !important;
    }
}

@media (max-width: 600px) {
    .woocommerce-account .woocommerce {
        gap: 16px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        padding: 14px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        min-height: 260px !important;
        padding: 22px !important;
    }
}

/* =========================================================
   MY ACCOUNT — ROBUST FINAL LAYOUT
   This section uses dedicated Flezzora account classes so the
   design is not dependent on the exact WooCommerce wrapper HTML.
   ========================================================= */

body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce,
body.woocommerce-account .woocommerce {
    width: min(var(--flezzora-container, 1180px), calc(100% - 56px)) !important;
    max-width: var(--flezzora-container, 1180px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 36px !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .flezzora-woocommerce > .container {
    width: min(var(--flezzora-container, 1180px), calc(100% - 56px)) !important;
    max-width: var(--flezzora-container, 1180px) !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding: 56px 0 72px !important;
    min-height: 0 !important;
}

body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-breadcrumb {
    display: none !important;
}

body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-products-header {
    display: block !important;
    margin: 0 0 30px !important;
    padding: 0 !important;
}

body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-products-header h1,
body.woocommerce-account .woocommerce-products-header h1 {
    margin: 0 !important;
    font-family: var(--font-heading, var(--flezzora-heading-font, Georgia, serif)) !important;
    font-size: clamp(40px, 4vw, 56px) !important;
    line-height: 1.05 !important;
    font-weight: 400 !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-account .flezzora-account-nav,
body.woocommerce-account .woocommerce-MyAccount-navigation {
    grid-column: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    align-self: stretch !important;
    background: var(--flezzora-surface, #ffffff) !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 24px !important;
    box-shadow: var(--flezzora-shadow-soft, 0 8px 25px rgba(45,40,35,.06)) !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .flezzora-account-nav__list,
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 6px !important;
    width: 100% !important;
    height: auto !important;
    gap: 4px !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .flezzora-account-nav__list li,
body.woocommerce-account .woocommerce-MyAccount-navigation li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    float: none !important;
    width: 100% !important;
}

body.woocommerce-account .flezzora-account-nav__list li a,
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    color: var(--flezzora-text, #2e2b29) !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    transition: background-color .2s ease, color .2s ease, transform .2s ease !important;
}

body.woocommerce-account .flezzora-account-nav__list li a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    transform: translateX(2px) !important;
}

body.woocommerce-account .flezzora-account-nav__list li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:focus {
    background: var(--flezzora-lavender, #b8aedc) !important;
    color: #ffffff !important;
}

body.woocommerce-account .flezzora-account-nav__list li:last-child,
body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid var(--flezzora-border, #e5ded6) !important;
}

body.woocommerce-account .flezzora-account-nav__list li:last-child a,
body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a {
    color: #9a6274 !important;
}

body.woocommerce-account .flezzora-account-dashboard,
body.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 42px !important;
    background: var(--flezzora-surface, #ffffff) !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 24px !important;
    box-shadow: var(--flezzora-shadow-soft, 0 8px 25px rgba(45,40,35,.06)) !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .flezzora-account-dashboard__eyebrow {
    margin-bottom: 12px !important;
    color: var(--flezzora-lavender, #8f84c4) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
}

body.woocommerce-account .flezzora-account-dashboard__title {
    margin: 0 0 20px !important;
    font-family: var(--font-heading, var(--flezzora-heading-font, Georgia, serif)) !important;
    font-size: clamp(34px, 3.6vw, 48px) !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-account .flezzora-account-dashboard__title span {
    color: var(--flezzora-lavender, #8f84c4) !important;
}

body.woocommerce-account .flezzora-account-dashboard__intro {
    max-width: 760px !important;
    margin: 0 !important;
    color: var(--flezzora-muted, #77716b) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
}

body.woocommerce-account .flezzora-account-dashboard__intro strong {
    color: var(--flezzora-text, #2e2b29) !important;
    font-weight: 600 !important;
}

body.woocommerce-account .flezzora-account-dashboard__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 38px !important;
}

body.woocommerce-account .flezzora-account-dashboard__action {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 82px !important;
    padding: 18px 20px !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 16px !important;
    background: var(--flezzora-bg, #f9f7f3) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease !important;
}

body.woocommerce-account .flezzora-account-dashboard__action:hover {
    transform: translateY(-2px) !important;
    border-color: var(--flezzora-lavender, #b8aedc) !important;
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-account .flezzora-account-dashboard__action-title {
    font-size: 14px !important;
    font-weight: 700 !important;
}

body.woocommerce-account .flezzora-account-dashboard__action-arrow {
    color: var(--flezzora-lavender, #8f84c4) !important;
    font-size: 20px !important;
}

/* Ensure every non-dashboard account endpoint still uses the same content panel. */
body.woocommerce-account .woocommerce-MyAccount-content > form,
body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-table,
body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-info {
    width: 100% !important;
}

@media (max-width: 900px) {
    body.woocommerce-account .flezzora-woocommerce > .container,
    body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce,
    body.woocommerce-account .woocommerce {
        width: calc(100% - 40px) !important;
    }

    body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce,
    body.woocommerce-account .woocommerce {
        grid-template-columns: 240px minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    body.woocommerce-account .flezzora-account-dashboard,
    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 30px !important;
    }
}

@media (max-width: 820px) {
    body.woocommerce-account .flezzora-woocommerce > .container {
        width: calc(100% - 32px) !important;
        padding: 40px 0 56px !important;
    }

    body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce,
    body.woocommerce-account .woocommerce {
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    body.woocommerce-account .flezzora-account-nav,
    body.woocommerce-account .woocommerce-MyAccount-navigation,
    body.woocommerce-account .flezzora-account-dashboard,
    body.woocommerce-account .woocommerce-MyAccount-content {
        grid-column: 1 !important;
    }

    body.woocommerce-account .flezzora-account-dashboard__actions {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 560px) {
    body.woocommerce-account .flezzora-woocommerce > .container {
        width: calc(100% - 24px) !important;
        padding: 28px 0 44px !important;
    }

    body.woocommerce-account .flezzora-woocommerce > .container > .woocommerce-products-header h1,
    body.woocommerce-account .woocommerce-products-header h1 {
        font-size: 38px !important;
    }

    body.woocommerce-account .flezzora-account-nav,
    body.woocommerce-account .woocommerce-MyAccount-navigation,
    body.woocommerce-account .flezzora-account-dashboard,
    body.woocommerce-account .woocommerce-MyAccount-content {
        border-radius: 18px !important;
    }

    body.woocommerce-account .flezzora-account-dashboard,
    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 24px !important;
    }

    body.woocommerce-account .flezzora-account-dashboard__intro {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

/* =========================================================
   MY ACCOUNT — FLEZZORA POLISH
   Remove WooCommerce default blue/gray accents and align the
   account navigation slightly to the right on larger screens.
   ========================================================= */

body.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-left: 20px !important;
    width: calc(100% - 20px) !important;
}

/* WooCommerce notices / information panels */
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error {
    position: relative !important;
    margin: 0 0 22px !important;
    padding: 18px 20px !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-top: 2px solid var(--flezzora-lavender, #b8aedc) !important;
    border-radius: 14px !important;
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    box-shadow: none !important;
    line-height: 1.6 !important;
}

body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-error::before {
    color: var(--flezzora-lavender, #8f84c4) !important;
}

/* Buttons inside account content */
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content a.button,
body.woocommerce-account .woocommerce-MyAccount-content button,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    background: var(--flezzora-lavender, #b8aedc) !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button:hover,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover {
    background: var(--flezzora-text, #2e2b29) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Orders table */
body.woocommerce-account .woocommerce-orders-table,
body.woocommerce-account .woocommerce-table--order-downloads {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: var(--flezzora-surface, #ffffff) !important;
}

body.woocommerce-account .woocommerce-orders-table th,
body.woocommerce-account .woocommerce-orders-table td,
body.woocommerce-account .woocommerce-table--order-downloads th,
body.woocommerce-account .woocommerce-table--order-downloads td {
    padding: 14px 16px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--flezzora-border, #e5ded6) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    vertical-align: middle !important;
}

body.woocommerce-account .woocommerce-orders-table thead th,
body.woocommerce-account .woocommerce-table--order-downloads thead th {
    background: var(--flezzora-bg, #f9f7f3) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-account .woocommerce-orders-table tbody tr:last-child td,
body.woocommerce-account .woocommerce-table--order-downloads tbody tr:last-child td {
    border-bottom: 0 !important;
}

body.woocommerce-account .woocommerce-orders-table a:not(.button),
body.woocommerce-account .woocommerce-table--order-downloads a:not(.button) {
    color: var(--flezzora-lavender, #8f84c4) !important;
}

body.woocommerce-account .woocommerce-orders-table a:not(.button):hover,
body.woocommerce-account .woocommerce-table--order-downloads a:not(.button):hover {
    color: var(--flezzora-text, #2e2b29) !important;
}

/* Address cards */
body.woocommerce-account .woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

body.woocommerce-account .woocommerce-Address {
    padding: 24px !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 16px !important;
    background: var(--flezzora-bg, #f9f7f3) !important;
}

body.woocommerce-account .woocommerce-Address-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .woocommerce-Address-title h2 {
    margin: 0 !important;
    font-family: var(--font-heading, var(--flezzora-heading-font, Georgia, serif)) !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-account .woocommerce-Address-title .edit {
    color: var(--flezzora-lavender, #8f84c4) !important;
    font-weight: 600 !important;
}

/* Forms */
body.woocommerce-account .woocommerce-MyAccount-content form .form-row label {
    display: block !important;
    margin-bottom: 7px !important;
    color: var(--flezzora-text, #2e2b29) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .input-text,
body.woocommerce-account .woocommerce-MyAccount-content form input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content form textarea,
body.woocommerce-account .woocommerce-MyAccount-content form select {
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 10px !important;
    background: var(--flezzora-surface, #ffffff) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    outline: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content form input:focus,
body.woocommerce-account .woocommerce-MyAccount-content form textarea:focus,
body.woocommerce-account .woocommerce-MyAccount-content form select:focus {
    border-color: var(--flezzora-lavender, #b8aedc) !important;
    box-shadow: 0 0 0 3px var(--flezzora-lavender-soft, #eeeaf8) !important;
}

/* Remove any remaining WooCommerce accent color from account-area links. */
body.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--flezzora-text, #2e2b29);
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: var(--flezzora-lavender, #8f84c4);
}

@media (max-width: 820px) {
    body.woocommerce-account .woocommerce-MyAccount-navigation {
        margin-left: 0 !important;
        width: 100% !important;
    }

    body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   MY ACCOUNT — FINAL ALIGNMENT + FORM POLISH
   ========================================================= */

/* Align the account navigation card with the My Account heading. */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-left: 0 !important;
    width: 100% !important;
}

/* Keep the dashboard quick-action cards compact and elegant. */
body.woocommerce-account .flezzora-account-dashboard__actions {
    gap: 12px !important;
    margin-top: 28px !important;
}

body.woocommerce-account .flezzora-account-dashboard__action {
    min-height: 62px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
}

body.woocommerce-account .flezzora-account-dashboard__action-title {
    font-size: 13px !important;
}

body.woocommerce-account .flezzora-account-dashboard__action-arrow {
    font-size: 17px !important;
}

/* WooCommerce notices: remove the default-looking icon box and keep the
   icon, copy and CTA cleanly separated. */
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 60px !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-error::before {
    position: static !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 15px !important;
    color: var(--flezzora-lavender, #8f84c4) !important;
}

body.woocommerce-account .woocommerce-info > *,
body.woocommerce-account .woocommerce-message > *,
body.woocommerce-account .woocommerce-error > * {
    min-width: 0 !important;
}

body.woocommerce-account .woocommerce-info .button,
body.woocommerce-account .woocommerce-message .button,
body.woocommerce-account .woocommerce-error .button {
    margin-left: auto !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

/* Address cards: keep headings and edit links from colliding. */
body.woocommerce-account .woocommerce-Addresses {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

body.woocommerce-account .woocommerce-Address {
    width: 100% !important;
    min-width: 0 !important;
    padding: 26px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

body.woocommerce-account .woocommerce-Address-title {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: start !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .woocommerce-Address-title h2 {
    min-width: 0 !important;
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-account .woocommerce-Address-title .edit {
    display: inline-block !important;
    max-width: 150px !important;
    margin: 2px 0 0 !important;
    color: var(--flezzora-lavender, #8f84c4) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: right !important;
}

body.woocommerce-account .woocommerce-Address address {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

/* Account-detail password toggles: keep only the icon, not a purple box. */
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input,
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input::before {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .show-password-input {
    position: absolute !important;
    top: 50% !important;
    right: 12px !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: var(--flezzora-muted, #77716b) !important;
    cursor: pointer !important;
    z-index: 2 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .show-password-input:hover {
    color: var(--flezzora-text, #2e2b29) !important;
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .show-password-input::before {
    color: inherit !important;
}

/* Give password inputs enough room for the icon. */
body.woocommerce-account .woocommerce-MyAccount-content .password-input input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content .password-input input[type="text"] {
    padding-right: 52px !important;
}

@media (max-width: 820px) {
    body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .woocommerce-info,
    body.woocommerce-account .woocommerce-message,
    body.woocommerce-account .woocommerce-error {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
    }

    body.woocommerce-account .woocommerce-info .button,
    body.woocommerce-account .woocommerce-message .button,
    body.woocommerce-account .woocommerce-error .button {
        margin-left: 32px !important;
    }
}

@media (max-width: 560px) {
    body.woocommerce-account .flezzora-account-dashboard__actions {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .woocommerce-Address {
        padding: 20px !important;
    }

    body.woocommerce-account .woocommerce-Address-title {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .woocommerce-Address-title .edit {
        max-width: none !important;
        justify-self: start !important;
        text-align: left !important;
    }
}


/* =========================================================
   FLEZZORA WISHLIST
   ========================================================= */

.flezzora-wishlist-page {
    padding: 56px 0 96px;
    background: var(--flezzora-bg);
    min-height: 60vh;
}

.flezzora-wishlist-page__intro {
    max-width: 720px;
    margin-bottom: 34px;
}

.flezzora-wishlist-page__eyebrow {
    margin: 0 0 10px;
    color: var(--flezzora-lavender);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.flezzora-wishlist-page__title {
    margin: 0;
    color: var(--flezzora-text);
    font-family: var(--flezzora-heading-font);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.02;
}

.flezzora-wishlist-page__description {
    margin: 14px 0 0;
    max-width: 620px;
    color: var(--flezzora-muted);
    font-size: 15px;
    line-height: 1.7;
}

.flezzora-wishlist-page__content {
    padding: 28px;
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--flezzora-border);
    border-radius: 22px;
    box-shadow: var(--flezzora-shadow-soft);
}

.flezzora-wishlist-empty {
    padding: 72px 24px;
    text-align: center;
}

.flezzora-wishlist-empty__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--flezzora-lavender-soft);
    color: var(--flezzora-lavender);
    font-size: 30px;
}

.flezzora-wishlist-empty h2 {
    margin: 0;
    color: var(--flezzora-text);
    font-family: var(--flezzora-heading-font);
    font-size: 28px;
    font-weight: 400;
}

.flezzora-wishlist-empty p {
    max-width: 520px;
    margin: 10px auto 22px;
    color: var(--flezzora-muted);
    line-height: 1.65;
}

/* TI Wishlist table / controls */
.flezzora-wishlist-page .tinv-wishlist,
.flezzora-wishlist-page .tinvwl-table-manage-list {
    color: var(--flezzora-text);
}

.flezzora-wishlist-page table.tinvwl-table,
.flezzora-wishlist-page table.tinvwl-table-manage-list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: var(--flezzora-surface);
    border: 1px solid var(--flezzora-border);
    border-radius: 16px;
}

.flezzora-wishlist-page table.tinvwl-table thead th,
.flezzora-wishlist-page table.tinvwl-table-manage-list thead th {
    padding: 15px 16px;
    background: var(--flezzora-blush);
    color: var(--flezzora-text);
    border-bottom: 1px solid var(--flezzora-border);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.flezzora-wishlist-page table.tinvwl-table tbody td,
.flezzora-wishlist-page table.tinvwl-table-manage-list tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--flezzora-border);
    vertical-align: middle;
}

.flezzora-wishlist-page table.tinvwl-table tbody tr:last-child td,
.flezzora-wishlist-page table.tinvwl-table-manage-list tbody tr:last-child td {
    border-bottom: 0;
}

.flezzora-wishlist-page .product-thumbnail img {
    border-radius: 12px;
}

.flezzora-wishlist-page .product-name a {
    color: var(--flezzora-text);
    font-weight: 600;
    text-decoration: none;
}

.flezzora-wishlist-page .product-name a:hover {
    color: var(--flezzora-lavender);
}

.flezzora-wishlist-page .button,
.flezzora-wishlist-page a.button,
.flezzora-wishlist-page button {
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--flezzora-lavender);
    color: #fff;
    font-weight: 600;
}

.flezzora-wishlist-page .button:hover,
.flezzora-wishlist-page a.button:hover,
.flezzora-wishlist-page button:hover {
    background: #a49ad0;
    color: #fff;
}

/* Add-to-wishlist controls inside Flezzora product cards */
.flezzora-product-card__image .flezzora-wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
}

.flezzora-wishlist-button .tinvwl_add_to_wishlist_button {
    display: inline-grid !important;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.94) !important;
    color: var(--flezzora-text) !important;
    box-shadow: 0 8px 20px rgba(45, 40, 35, 0.07);
}

.flezzora-wishlist-button .tinvwl_add_to_wishlist_button:hover,
.flezzora-wishlist-button .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    background: var(--flezzora-lavender-soft) !important;
    border-color: var(--flezzora-lavender) !important;
    color: var(--flezzora-lavender) !important;
}

.flezzora-wishlist-button--single {
    margin-top: 12px;
}

.flezzora-wishlist-button--single .tinvwl_add_to_wishlist_button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    background: var(--flezzora-surface) !important;
    color: var(--flezzora-text) !important;
    text-decoration: none !important;
}

/* Header wishlist badge: TI updates this span via its AJAX fragments. */
.flezzora-header__icon-link--wishlist .wishlist_products_counter_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--flezzora-lavender);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 820px) {
    .flezzora-wishlist-page {
        padding: 40px 0 72px;
    }

    .flezzora-wishlist-page__content {
        padding: 18px;
    }

    .flezzora-wishlist-page table.tinvwl-table,
    .flezzora-wishlist-page table.tinvwl-table-manage-list {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .flezzora-wishlist-page {
        padding: 32px 0 56px;
    }

    .flezzora-wishlist-page__content {
        padding: 12px;
        border-radius: 16px;
    }

    .flezzora-wishlist-empty {
        padding: 48px 12px;
    }

    .flezzora-product-card__image .flezzora-wishlist-button {
        top: 9px;
        right: 9px;
    }
}

/* =========================================================
   FLEZZORA WISHLIST — FINAL VISUAL REFINEMENT
   Overrides TI WooCommerce Wishlist's default blue/UI styling.
   ========================================================= */

/* Remove the plugin's duplicate inner heading so the Flezzora page
   title remains the single primary heading. */
.flezzora-wishlist-page .tinv-wishlist h2.tinvwl-title,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-wishlist-title,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-title,
.flezzora-wishlist-page .tinv-wishlist > h2:first-child {
    display: none !important;
}

/* The wishlist content itself should read like a premium product library. */
.flezzora-wishlist-page__content {
    padding: 34px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 45px rgba(45, 40, 35, 0.045) !important;
}

/* Remove WooCommerce/TI's default blue informational treatment. */
.flezzora-wishlist-page .tinv-wishlist .woocommerce-info,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-message,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notice,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notices,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty {
    margin: 0 0 26px !important;
    padding: 16px 20px !important;
    background: var(--flezzora-lavender-soft) !important;
    border: 1px solid rgba(184, 174, 220, 0.48) !important;
    border-top: 1px solid rgba(184, 174, 220, 0.58) !important;
    border-radius: 14px !important;
    color: var(--flezzora-text) !important;
    box-shadow: none !important;
}

.flezzora-wishlist-page .tinv-wishlist .woocommerce-info::before,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-message::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notice::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notices::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::before {
    color: var(--flezzora-lavender) !important;
}

/* TI's table headings become subtle editorial labels. */
.flezzora-wishlist-page table.tinvwl-table,
.flezzora-wishlist-page table.tinvwl-table-manage-list {
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 18px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: none !important;
}

.flezzora-wishlist-page table.tinvwl-table thead th,
.flezzora-wishlist-page table.tinvwl-table-manage-list thead th {
    padding: 15px 18px !important;
    background: #F3EEE9 !important;
    color: var(--flezzora-text) !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}

.flezzora-wishlist-page table.tinvwl-table tbody td,
.flezzora-wishlist-page table.tinvwl-table-manage-list tbody td {
    padding: 18px !important;
    background: #fff !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
    color: var(--flezzora-text) !important;
    vertical-align: middle !important;
}

.flezzora-wishlist-page table.tinvwl-table tbody tr:hover td,
.flezzora-wishlist-page table.tinvwl-table-manage-list tbody tr:hover td {
    background: #FCFAF7 !important;
}

/* Product image */
.flezzora-wishlist-page .product-thumbnail,
.flezzora-wishlist-page .wishlist-item-image {
    width: 92px !important;
    min-width: 92px !important;
}

.flezzora-wishlist-page .product-thumbnail img,
.flezzora-wishlist-page .wishlist-item-image img {
    display: block !important;
    width: 76px !important;
    height: 76px !important;
    object-fit: cover !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 14px !important;
    background: var(--flezzora-blush) !important;
}

/* Product name */
.flezzora-wishlist-page .product-name a,
.flezzora-wishlist-page .product-name a.tinvwl-product-name,
.flezzora-wishlist-page .tinvwl-product-name a {
    color: var(--flezzora-text) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    text-decoration: none !important;
}

.flezzora-wishlist-page .product-name a:hover,
.flezzora-wishlist-page .tinvwl-product-name a:hover {
    color: var(--flezzora-lavender) !important;
}

/* Price and stock */
.flezzora-wishlist-page .product-price,
.flezzora-wishlist-page .product-stock,
.flezzora-wishlist-page .product-date,
.flezzora-wishlist-page .product-date-added {
    color: var(--flezzora-muted) !important;
    font-size: 14px !important;
}

.flezzora-wishlist-page .product-price .amount,
.flezzora-wishlist-page .product-price ins {
    color: var(--flezzora-text) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.flezzora-wishlist-page .product-price del,
.flezzora-wishlist-page .product-price del .amount {
    color: #9A948F !important;
    opacity: 0.9 !important;
}

.flezzora-wishlist-page .product-stock.in-stock,
.flezzora-wishlist-page .stock.in-stock {
    color: #756A5A !important;
}

/* Wishlist remove control */
.flezzora-wishlist-page .product-remove a,
.flezzora-wishlist-page .remove_from_wishlist,
.flezzora-wishlist-page .tinvwl_remove {
    display: inline-grid !important;
    place-items: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: var(--flezzora-muted) !important;
    text-decoration: none !important;
    transition: all var(--flezzora-transition) !important;
}

.flezzora-wishlist-page .product-remove a:hover,
.flezzora-wishlist-page .remove_from_wishlist:hover,
.flezzora-wishlist-page .tinvwl_remove:hover {
    border-color: var(--flezzora-lavender) !important;
    background: var(--flezzora-lavender-soft) !important;
    color: var(--flezzora-text) !important;
}

/* Main wishlist action buttons */
.flezzora-wishlist-page .button,
.flezzora-wishlist-page a.button,
.flezzora-wishlist-page button,
.flezzora-wishlist-page .tinvwl-button,
.flezzora-wishlist-page .tinvwl-btn {
    min-height: 42px !important;
    padding: 10px 18px !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    background: var(--flezzora-lavender) !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background var(--flezzora-transition), transform var(--flezzora-transition) !important;
}

.flezzora-wishlist-page .button:hover,
.flezzora-wishlist-page a.button:hover,
.flezzora-wishlist-page button:hover,
.flezzora-wishlist-page .tinvwl-button:hover,
.flezzora-wishlist-page .tinvwl-btn:hover {
    background: #A89DD1 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Secondary/bulk action controls */
.flezzora-wishlist-page .tinvwl-input-group,
.flezzora-wishlist-page .tinvwl-select,
.flezzora-wishlist-page select,
.flezzora-wishlist-page input[type="text"],
.flezzora-wishlist-page input[type="search"] {
    min-height: 42px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
    box-shadow: none !important;
}

.flezzora-wishlist-page select:focus,
.flezzora-wishlist-page input[type="text"]:focus,
.flezzora-wishlist-page input[type="search"]:focus {
    outline: none !important;
    border-color: var(--flezzora-lavender) !important;
    box-shadow: 0 0 0 3px rgba(184, 174, 220, 0.18) !important;
}

/* Share area */
.flezzora-wishlist-page .tinvwl-share,
.flezzora-wishlist-page .social-buttons,
.flezzora-wishlist-page .tinvwl-social {
    margin-top: 28px !important;
    padding-top: 22px !important;
    border-top: 1px solid var(--flezzora-border) !important;
    color: var(--flezzora-muted) !important;
}

.flezzora-wishlist-page .tinvwl-share a,
.flezzora-wishlist-page .social-buttons a,
.flezzora-wishlist-page .tinvwl-social a {
    color: var(--flezzora-muted) !important;
    text-decoration: none !important;
}

.flezzora-wishlist-page .tinvwl-share a:hover,
.flezzora-wishlist-page .social-buttons a:hover,
.flezzora-wishlist-page .tinvwl-social a:hover {
    color: var(--flezzora-lavender) !important;
}

/* Plugin links/buttons that otherwise inherit default WordPress blue. */
.flezzora-wishlist-page .tinv-wishlist a:not(.button):not(.tinvwl-btn),
.flezzora-wishlist-page .tinvwl-products-grid a {
    color: var(--flezzora-text) !important;
}

.flezzora-wishlist-page .tinv-wishlist a:not(.button):not(.tinvwl-btn):hover,
.flezzora-wishlist-page .tinvwl-products-grid a:hover {
    color: var(--flezzora-lavender) !important;
}

/* Make the wishlist shell a little tighter and more intentional on desktop. */
@media (min-width: 821px) {
    .flezzora-wishlist-page__content {
        padding: 38px !important;
    }

    .flezzora-wishlist-page table.tinvwl-table thead th,
    .flezzora-wishlist-page table.tinvwl-table-manage-list thead th {
        white-space: nowrap;
    }
}

/* Tablet */
@media (max-width: 820px) {
    .flezzora-wishlist-page__content {
        padding: 20px !important;
    }

    .flezzora-wishlist-page table.tinvwl-table,
    .flezzora-wishlist-page table.tinvwl-table-manage-list {
        min-width: 760px !important;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .flezzora-wishlist-page__content {
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .flezzora-wishlist-page__intro {
        margin-bottom: 24px;
    }

    .flezzora-wishlist-page__title {
        font-size: 42px !important;
    }

    .flezzora-wishlist-page__description {
        font-size: 14px !important;
    }

    .flezzora-wishlist-page table.tinvwl-table,
    .flezzora-wishlist-page table.tinvwl-table-manage-list {
        min-width: 700px !important;
        border-radius: 14px !important;
    }

    .flezzora-wishlist-page table.tinvwl-table thead th,
    .flezzora-wishlist-page table.tinvwl-table-manage-list thead th,
    .flezzora-wishlist-page table.tinvwl-table tbody td,
    .flezzora-wishlist-page table.tinvwl-table-manage-list tbody td {
        padding: 12px !important;
    }

    .flezzora-wishlist-page .product-thumbnail img,
    .flezzora-wishlist-page .wishlist-item-image img {
        width: 62px !important;
        height: 62px !important;
    }
}


/* =========================================================
   FLEZZORA WISHLIST — FINAL BUG FIXES
   ========================================================= */

/* -------------------------------------------------------------------------
   1) Single-product wishlist: use TI's native button once, but make it
      compact, icon-first, and consistent with the Flezzora palette.
   ------------------------------------------------------------------------- */
.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button,
.single-product .tinv-wishlist a.tinvwl_add_to_wishlist_button,
.single-product .tinvwl_add_to_wishlist_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 44px !important;
    width: auto !important;
    min-height: 44px !important;
    padding: 9px 15px !important;
    margin: 0 0 0 8px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 12px !important;
    background: var(--flezzora-surface) !important;
    color: var(--flezzora-text) !important;
    box-shadow: 0 8px 18px rgba(45, 40, 35, 0.035) !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    line-height: 1.2 !important;
}

.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button .tinvwl-txt,
.single-product .tinvwl_add_to_wishlist_button .tinvwl-txt {
    display: none !important;
}

.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button .ftinvwl,
.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button > i {
    display: inline-block !important;
    margin: 0 !important;
    color: currentColor !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button::before {
    content: '♡';
    display: inline-block;
    color: currentColor;
    font-family: inherit;
    font-size: 19px;
    line-height: 1;
}

.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button .ftinvwl + .tinvwl-txt + *::before,
.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button .ftinvwl + .tinvwl-txt ~ * {
    display: none !important;
}

.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button:hover,
.single-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-product-in-list,
.single-product .tinvwl_add_to_wishlist_button:hover,
.single-product .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    border-color: var(--flezzora-lavender) !important;
    background: var(--flezzora-lavender-soft) !important;
    color: var(--flezzora-lavender) !important;
    transform: translateY(-1px);
}

/* Hide any duplicate theme-rendered single-product wrapper left by older
   cached markup while keeping product-card wishlist controls untouched. */
.single-product .flezzora-wishlist-button--single {
    display: none !important;
}

/* -------------------------------------------------------------------------
   2) Empty-wishlist/status notices: remove the tiny plugin icon box that
      collides with the message text.
   ------------------------------------------------------------------------- */
.flezzora-wishlist-page .tinv-wishlist .woocommerce-info::before,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-message::before,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-error::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notice::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notices::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::before,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-info i,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-message i,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-error i,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notice i,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notices i,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty i {
    display: none !important;
}

.flezzora-wishlist-page .tinv-wishlist .woocommerce-info,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-message,
.flezzora-wishlist-page .tinv-wishlist .woocommerce-error,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notice,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-notices,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty {
    display: block !important;
    position: relative !important;
    padding: 15px 18px !important;
    margin: 0 0 24px !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(184, 174, 220, 0.42) !important;
    background: var(--flezzora-lavender-soft) !important;
    border-radius: 14px !important;
    color: var(--flezzora-text) !important;
    line-height: 1.55 !important;
}

/* -------------------------------------------------------------------------
   3) Return-to-shop / general wishlist buttons: vertically center text.
   ------------------------------------------------------------------------- */
.flezzora-wishlist-page .tinv-wishlist .button,
.flezzora-wishlist-page .tinv-wishlist a.button,
.flezzora-wishlist-page .tinv-wishlist button,
.flezzora-wishlist-page a.flezzora-button,
.flezzora-wishlist-page a.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

/* -------------------------------------------------------------------------
   4) TI bulk actions footer: proper spacing + Flezzora select.
   The plugin intentionally wraps the action groups in .tinvwl-to-left and
   .tinvwl-to-right.
   ------------------------------------------------------------------------- */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left {
    float: left !important;
    justify-content: flex-start !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right {
    float: right !important;
    justify-content: flex-end !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left::after,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right::after {
    display: none !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group select,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group select.tinvwl-select,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group .select2-container,
.flezzora-wishlist-page .tinv-wishlist select[name='tinvwl-action'] {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 38px 0 14px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    color: var(--flezzora-text) !important;
    font: inherit !important;
    font-size: 13px !important;
    line-height: 44px !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: auto !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group select:focus,
.flezzora-wishlist-page .tinv-wishlist select[name='tinvwl-action']:focus {
    border-color: var(--flezzora-lavender) !important;
    box-shadow: 0 0 0 3px rgba(184, 174, 220, 0.16) !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group .button,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left .button,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right .button {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

/* Give the footer row predictable spacing. */
.flezzora-wishlist-page .tinv-wishlist table.tinvwl-table-manage-list tfoot td {
    padding: 18px !important;
    border-top: 1px solid var(--flezzora-border) !important;
    background: #FCFAF7 !important;
}

.flezzora-wishlist-page .tinv-wishlist tfoot td::after {
    content: '';
    display: table;
    clear: both;
}

/* Remove the old native-looking blue focus from checkboxes/selects where
   browsers allow it without breaking accessibility. */
.flezzora-wishlist-page .tinv-wishlist input[type='checkbox'] {
    accent-color: var(--flezzora-lavender) !important;
}

/* -------------------------------------------------------------------------
   5) Tiny-screen safeguard.
   ------------------------------------------------------------------------- */
@media (max-width: 820px) {
    .flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left,
    .flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right {
        float: none !important;
        width: 100% !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 560px) {
    .single-product .tinv-wishlist .tinvwl_add_to_wishlist_button,
    .single-product .tinvwl_add_to_wishlist_button {
        min-width: 42px !important;
        width: 42px !important;
        padding: 9px !important;
        margin-left: 6px !important;
    }

    .flezzora-wishlist-page .tinv-wishlist .tinvwl-to-left,
    .flezzora-wishlist-page .tinv-wishlist .tinvwl-to-right {
        align-items: stretch !important;
    }

    .flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group {
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .flezzora-wishlist-page .tinv-wishlist .tinvwl-input-group select,
    .flezzora-wishlist-page .tinv-wishlist select[name='tinvwl-action'] {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* =========================================================
   FLEZZORA WISHLIST — EMPTY MESSAGE ICON FIX
   ========================================================= */

/* Hide TI Wishlist's decorative/status icon in the empty-wishlist message.
   The icon is rendered by the plugin and can sit on top of the first word. */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::after,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > *::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > *::after,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .tinvwl-icon,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .tinvwl-empty-icon,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .tinvwl-notice-icon,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class*="icon"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class*="ico"] {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Reset any plugin icon spacing/positioning on the message itself. */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty {
    padding-left: 18px !important;
    text-indent: 0 !important;
}

/* Some TI Wishlist versions wrap the empty-message icon in the first span. */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > span:first-child:empty,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > span:first-child[class*="icon"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > span:first-child[class*="ico"] {
    display: none !important;
}


/* =========================================================
   FLEZZORA WISHLIST — EMPTY STATE ICON HARD RESET
   ========================================================= */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .ftinvwl,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class^="ftinvwl"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class*="ftinvwl"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class*="tinvwl-icon"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty [class*="tinvwl_icon"],
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty svg,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty img,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .icon,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty .icon-box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty {
    display: block !important;
    padding: 15px 18px !important;
    text-indent: 0 !important;
}

.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty > span:first-child:not(:last-child) {
    display: inline !important;
}

/* Prevent any icon-like pseudo element from creating an occupied inline box. */
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty::after,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty *::before,
.flezzora-wishlist-page .tinv-wishlist .tinvwl-empty *::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   FLEZZORA WISHLIST — EMPTY STATE DOM SANITIZER
   ========================================================= */
/* TI Wishlist versions can render the empty-state icon as a nested element
   instead of a pseudo-element. Keep this notice text-only. */
.flezzora-wishlist-page .tinv-wishlist [class*="empty"]::before,
.flezzora-wishlist-page .tinv-wishlist [class*="empty"]::after,
.flezzora-wishlist-page .tinv-wishlist [class*="notice"]::before,
.flezzora-wishlist-page .tinv-wishlist [class*="notice"]::after,
.flezzora-wishlist-page .tinv-wishlist [class*="notices"]::before,
.flezzora-wishlist-page .tinv-wishlist [class*="notices"]::after {
    content: none !important;
    display: none !important;
}

.flezzora-wishlist-page .tinv-wishlist [class*="empty"],
.flezzora-wishlist-page .tinv-wishlist [class*="notice"],
.flezzora-wishlist-page .tinv-wishlist [class*="notices"] {
    text-indent: 0 !important;
}

/* =========================================================
   ABOUT PAGE — FLEZZORA EDITORIAL LAYOUT
   ========================================================= */

body.page-template-page-about,
body.page-about {
    background: var(--flezzora-bg);
}

.flezzora-about-page {
    position: relative;
    overflow: clip;
}

.flezzora-about-hero {
    padding: clamp(76px, 9vw, 132px) 0 clamp(70px, 8vw, 118px);
    background:
        radial-gradient(circle at 82% 22%, rgba(184, 174, 220, 0.18), transparent 28%),
        linear-gradient(180deg, #FBF8F5 0%, var(--flezzora-bg) 100%);
    border-bottom: 1px solid var(--flezzora-border);
}

.flezzora-about-hero .flezzora-container {
    max-width: 980px !important;
}

.flezzora-about-hero__eyebrow,
.flezzora-about-section__label,
.flezzora-about-statement-card__eyebrow,
.flezzora-about-philosophy__label,
.flezzora-about-welcome-card__eyebrow {
    font-family: var(--flezzora-body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9B8FCB;
}

.flezzora-about-hero__title {
    max-width: 920px;
    margin: 18px 0 22px;
    font-size: clamp(43px, 6.3vw, 83px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.flezzora-about-hero__title em,
.flezzora-about-statement-card h2 em,
.flezzora-about-philosophy h2 em,
.flezzora-about-welcome-card h2 em {
    color: #A79BD1;
    font-weight: 400;
}

.flezzora-about-hero__lead {
    max-width: 690px;
    margin: 0;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
    color: var(--flezzora-muted);
}

.flezzora-about-section {
    padding: clamp(72px, 9vw, 130px) 0;
}

.flezzora-about-grid {
    display: grid;
    grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: start;
}

.flezzora-about-grid--intro {
    max-width: 1040px;
    margin-inline: auto;
}

.flezzora-about-copy {
    max-width: 770px;
}

.flezzora-about-copy p,
.flezzora-about-intention-card p,
.flezzora-about-statement-card p,
.flezzora-about-philosophy p,
.flezzora-about-welcome-card p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--flezzora-muted);
}

.flezzora-about-copy__large {
    margin-bottom: 8px !important;
    font-family: var(--flezzora-heading-font);
    font-size: clamp(30px, 4vw, 48px) !important;
    line-height: 1.1 !important;
    color: var(--flezzora-text) !important;
}

.flezzora-about-quote {
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(25px, 3vw, 37px) !important;
    line-height: 1.25 !important;
    color: var(--flezzora-text) !important;
    margin-top: 8px !important;
}

.flezzora-about-section--statement {
    background: #F0EAF8;
}

.flezzora-about-statement-card {
    max-width: 1060px;
    margin-inline: auto;
    padding: clamp(34px, 5vw, 68px);
    border: 1px solid rgba(184, 174, 220, 0.55);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 50px rgba(69, 55, 82, 0.06);
}

.flezzora-about-statement-card h2 {
    max-width: 820px;
    margin: 12px 0 22px;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.flezzora-about-statement-card__accent {
    max-width: 680px;
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(25px, 3vw, 38px) !important;
    color: var(--flezzora-text) !important;
    line-height: 1.2 !important;
}

.flezzora-about-three-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0;
}

.flezzora-about-three-points > div {
    padding: 24px 22px;
    border: 1px solid var(--flezzora-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.flezzora-about-three-points__number {
    display: inline-block;
    margin-bottom: 18px;
    color: #A79BD1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.flezzora-about-three-points h3 {
    margin: 0;
    font-family: var(--flezzora-body-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.flezzora-about-statement-card__closing {
    max-width: 780px;
    margin: 0 !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    color: var(--flezzora-text) !important;
    line-height: 1.35 !important;
}

.flezzora-about-section--intention {
    background: linear-gradient(180deg, var(--flezzora-bg) 0%, #FAF7F1 100%);
}

.flezzora-about-grid--intention {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    max-width: 1040px;
    margin-inline: auto;
    align-items: stretch;
}

.flezzora-about-intention-card {
    padding: clamp(32px, 4vw, 56px);
    border: 1px solid var(--flezzora-border);
    border-radius: 22px;
    background: var(--flezzora-surface);
    box-shadow: 0 18px 45px rgba(70, 59, 49, 0.045);
}

.flezzora-about-intention-card h2 {
    max-width: 700px;
    margin: 12px 0 24px;
    font-size: clamp(37px, 5vw, 60px);
    line-height: 1.08;
}

.flezzora-about-side-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    border-radius: 22px;
    background: var(--flezzora-sage);
    border: 1px solid #CFD7C7;
}

.flezzora-about-side-note__symbol {
    margin-bottom: 18px;
    color: #847894;
    font-size: 26px;
}

.flezzora-about-side-note p {
    margin: 0 0 4px;
    font-family: var(--flezzora-heading-font);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    color: var(--flezzora-text);
}

.flezzora-about-grid--real-life {
    max-width: 1040px;
    margin-inline: auto;
}

.flezzora-about-grid--real-life .flezzora-about-copy h2 {
    margin: 0 0 28px;
    font-size: clamp(37px, 5vw, 62px);
    line-height: 1.06;
}

.flezzora-about-section--philosophy {
    background: var(--flezzora-text);
    color: #F9F7F3;
}

.flezzora-about-philosophy {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.flezzora-about-philosophy__label {
    color: #CFC3F2;
}

.flezzora-about-philosophy h2 {
    margin: 16px 0 24px;
    color: #F9F7F3;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
}

.flezzora-about-philosophy p {
    max-width: 730px;
    margin-inline: auto;
    color: rgba(249, 247, 243, 0.74);
}

.flezzora-about-philosophy__final {
    margin-top: 36px !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(28px, 3.8vw, 46px) !important;
    color: #F9F7F3 !important;
}

.flezzora-about-section--welcome {
    padding-bottom: clamp(86px, 10vw, 140px);
}

.flezzora-about-welcome-card {
    max-width: 1040px;
    margin-inline: auto;
    padding: clamp(34px, 5vw, 66px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 22%, rgba(184, 174, 220, 0.22), transparent 26%),
        linear-gradient(135deg, #F4ECDF 0%, #F7F4EE 100%);
    border: 1px solid var(--flezzora-border);
}

.flezzora-about-welcome-card h2 {
    max-width: 800px;
    margin: 12px 0 24px;
    font-size: clamp(40px, 5.5vw, 70px);
    line-height: 1.04;
}

.flezzora-about-signoff {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 30px 0 26px;
}

.flezzora-about-signoff strong {
    font-family: var(--flezzora-heading-font);
    font-size: 28px;
    font-weight: 600;
}

.flezzora-about-signoff span {
    font-size: 13px;
    color: var(--flezzora-muted);
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .flezzora-about-grid,
    .flezzora-about-grid--intention {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .flezzora-about-three-points {
        grid-template-columns: 1fr;
    }

    .flezzora-about-section__label {
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .flezzora-about-hero {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .flezzora-about-section {
        padding: 58px 0;
    }

    .flezzora-about-copy p,
    .flezzora-about-intention-card p,
    .flezzora-about-statement-card p,
    .flezzora-about-philosophy p,
    .flezzora-about-welcome-card p {
        font-size: 15px;
        line-height: 1.82;
    }

    .flezzora-about-statement-card,
    .flezzora-about-intention-card,
    .flezzora-about-welcome-card {
        border-radius: 18px;
        padding: 28px 22px;
    }

    .flezzora-about-side-note {
        border-radius: 18px;
        padding: 28px 22px;
    }

    .flezzora-about-three-points > div {
        padding: 20px 18px;
    }
}

/* =========================================================
   ABOUT PAGE — VISUAL PLACEHOLDERS / CUSTOMIZER IMAGES
   ========================================================= */
.flezzora-about-side-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.flezzora-about-image-box {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--flezzora-border);
    background: #F0EBE3;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(70, 59, 49, 0.04);
}

.flezzora-about-image-box:not(.has-image)::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(140, 126, 208, 0.16);
    border-radius: 14px;
}

.flezzora-about-image-box__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.flezzora-about-grid--intro,
.flezzora-about-grid--real-life {
    grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
    align-items: start;
}

.flezzora-about-grid--real-life .flezzora-about-copy h2 {
    font-size: clamp(37px, 5vw, 62px);
}

@media (max-width: 900px) {
    .flezzora-about-side-column {
        display: grid;
        grid-template-columns: minmax(120px, 0.3fr) minmax(220px, 0.7fr);
        align-items: start;
        gap: 22px;
    }

    .flezzora-about-image-box {
        min-height: 280px;
    }

    .flezzora-about-grid--intro,
    .flezzora-about-grid--real-life {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .flezzora-about-side-column {
        display: flex;
    }

    .flezzora-about-image-box {
        min-height: 250px;
        border-radius: 18px;
    }

    .flezzora-about-grid--real-life .flezzora-about-copy h2 {
        font-size: clamp(31px, 9vw, 46px);
    }
}

/* =========================================================
   Flezzora Blog / Journal page
   Isolated under .flezzora-blog-* to avoid affecting other
   theme templates.
   ========================================================= */
.flezzora-blog-page{background:var(--flezzora-bg);}
.flezzora-blog-hero{padding:clamp(72px,9vw,128px) 0 clamp(56px,7vw,92px);border-bottom:1px solid var(--flezzora-border);}
.flezzora-blog-hero__inner{text-align:center;}
.flezzora-blog-hero__eyebrow,.flezzora-blog-cta__eyebrow,.flezzora-blog-empty__eyebrow{font-size:11px;line-height:1.3;letter-spacing:.2em;text-transform:uppercase;color:var(--flezzora-lavender);font-weight:700;margin-bottom:18px;}
.flezzora-blog-hero__title{max-width:900px;margin:0 auto;font-family:var(--flezzora-heading-font);font-size:clamp(46px,6.2vw,86px);line-height:.98;font-weight:500;letter-spacing:-.03em;color:var(--flezzora-text);}
.flezzora-blog-hero__title em{color:var(--flezzora-lavender);font-style:italic;}
.flezzora-blog-hero__lead{max-width:700px;margin:26px auto 0;font-size:17px;line-height:1.8;color:var(--flezzora-muted);}
.flezzora-blog-content{padding:70px 0 20px;}
.flezzora-blog-featured{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);gap:clamp(34px,6vw,80px);align-items:center;padding:0 0 78px;border-bottom:1px solid var(--flezzora-border);}
.flezzora-blog-featured__media,.flezzora-blog-card__media{position:relative;display:block;overflow:hidden;background:var(--flezzora-blush);border:1px solid var(--flezzora-border);}
.flezzora-blog-featured__media{min-height:520px;border-radius:22px;}
.flezzora-blog-card__media{aspect-ratio:1.18/1;border-radius:16px;}
.flezzora-blog-featured__media.has-image,.flezzora-blog-card__media.has-image{background:var(--flezzora-surface);}
.flezzora-blog-image{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease;}
.flezzora-blog-featured__media:hover .flezzora-blog-image,.flezzora-blog-card__media:hover .flezzora-blog-image{transform:scale(1.025);}
.flezzora-blog-media-badge{position:absolute;left:20px;top:20px;display:inline-flex;align-items:center;padding:8px 11px;border-radius:999px;background:var(--flezzora-lavender-soft);color:var(--flezzora-text);font-size:10px;letter-spacing:.16em;font-weight:800;}
.flezzora-blog-placeholder{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,var(--flezzora-blush),var(--flezzora-lavender-soft));color:rgba(46,43,41,.52);}
.flezzora-blog-placeholder>span{font-family:var(--flezzora-heading-font);font-size:26px;letter-spacing:.14em;text-transform:uppercase;}
.flezzora-blog-placeholder--featured{flex-direction:column;gap:8px;}
.flezzora-blog-placeholder--featured>span{font-size:40px;}
.flezzora-blog-placeholder--featured small{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--flezzora-muted);}
.flezzora-blog-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:16px;color:var(--flezzora-muted);font-size:11px;letter-spacing:.08em;text-transform:uppercase;}
.flezzora-blog-meta span+span::before{content:'•';margin-right:12px;color:var(--flezzora-beige);}
.flezzora-blog-featured__copy h2,.flezzora-blog-card__body h2{font-family:var(--flezzora-heading-font);font-weight:500;color:var(--flezzora-text);letter-spacing:-.02em;margin:0;}
.flezzora-blog-featured__copy h2{font-size:clamp(42px,4.1vw,64px);line-height:1.02;}
.flezzora-blog-featured__copy h2 a,.flezzora-blog-card__body h2 a{color:inherit;text-decoration:none;}
.flezzora-blog-featured__copy h2 a:hover,.flezzora-blog-card__body h2 a:hover{color:var(--flezzora-lavender);}
.flezzora-blog-excerpt{margin-top:20px;color:var(--flezzora-muted);font-size:16px;line-height:1.8;}
.flezzora-blog-excerpt p{margin:0;}
.flezzora-blog-readmore{display:inline-flex;align-items:center;gap:10px;margin-top:24px;color:var(--flezzora-text);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;border-bottom:1px solid var(--flezzora-text);padding-bottom:5px;transition:all var(--flezzora-transition);}
.flezzora-blog-readmore:hover{color:var(--flezzora-lavender);border-color:var(--flezzora-lavender);gap:14px;}
.flezzora-blog-section-heading{display:flex;align-items:end;justify-content:space-between;gap:20px;padding:72px 0 28px;}
.flezzora-blog-section-heading span:first-child{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--flezzora-text);font-weight:800;}
.flezzora-blog-section-heading span:last-child{font-size:13px;color:var(--flezzora-muted);}
.flezzora-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;}
.flezzora-blog-card{background:var(--flezzora-surface);border:1px solid var(--flezzora-border);border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(46,43,41,.035);}
.flezzora-blog-card__body{padding:24px 24px 27px;}
.flezzora-blog-card__body h2{font-size:30px;line-height:1.03;}
.flezzora-blog-card__body .flezzora-blog-excerpt{font-size:14px;line-height:1.7;}
.flezzora-blog-pagination{padding:56px 0 10px;display:flex;justify-content:center;}
.flezzora-blog-pagination ul{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:center;}
.flezzora-blog-pagination li{margin:0;padding:0;}
.flezzora-blog-pagination a,.flezzora-blog-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 14px;border:1px solid var(--flezzora-border);border-radius:999px;background:var(--flezzora-surface);color:var(--flezzora-text);font-size:12px;text-decoration:none;}
.flezzora-blog-pagination .current{background:var(--flezzora-lavender);border-color:var(--flezzora-lavender);color:#fff;}
.flezzora-blog-pagination a:hover{background:var(--flezzora-lavender-soft);border-color:var(--flezzora-lavender);}
.flezzora-blog-cta{padding:76px 0 100px;}
.flezzora-blog-cta__card{padding:clamp(36px,6vw,74px);border:1px solid var(--flezzora-border);border-radius:22px;background:linear-gradient(135deg,var(--flezzora-sage),var(--flezzora-bg));text-align:center;}
.flezzora-blog-cta__card h2,.flezzora-blog-empty__card h2{max-width:780px;margin:0 auto;font-family:var(--flezzora-heading-font);font-size:clamp(36px,4vw,58px);font-weight:500;line-height:1.02;color:var(--flezzora-text);}
.flezzora-blog-cta__card p,.flezzora-blog-empty__card p{max-width:650px;margin:20px auto 28px;color:var(--flezzora-muted);font-size:15px;line-height:1.8;}
.flezzora-blog-empty{padding:76px 0 110px;}
.flezzora-blog-empty__card{padding:clamp(44px,7vw,90px);text-align:center;border:1px solid var(--flezzora-border);border-radius:22px;background:linear-gradient(135deg,var(--flezzora-lavender-soft),var(--flezzora-bg));}
.flezzora-blog-empty__card h2{max-width:720px;}
@media (max-width: 980px){
  .flezzora-blog-featured{grid-template-columns:1fr;}
  .flezzora-blog-featured__media{min-height:420px;}
  .flezzora-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 680px){
  .flezzora-blog-hero{padding:58px 0 52px;}
  .flezzora-blog-hero__title{font-size:clamp(42px,12vw,58px);}
  .flezzora-blog-hero__lead{font-size:15px;line-height:1.7;}
  .flezzora-blog-content{padding-top:46px;}
  .flezzora-blog-featured{padding-bottom:58px;gap:28px;}
  .flezzora-blog-featured__media{min-height:330px;border-radius:16px;}
  .flezzora-blog-featured__copy h2{font-size:42px;}
  .flezzora-blog-section-heading{display:block;padding:52px 0 22px;}
  .flezzora-blog-section-heading span:last-child{display:block;margin-top:8px;}
  .flezzora-blog-grid{grid-template-columns:1fr;gap:20px;}
  .flezzora-blog-card__body{padding:22px;}
  .flezzora-blog-card__body h2{font-size:30px;}
  .flezzora-blog-cta{padding:54px 0 72px;}
}

/* =========================================================
   FLEZZORA CONTACT PAGE
   Isolated under .flezzora-contact-* so existing templates,
   WooCommerce, account and wishlist styling remain untouched.
   ========================================================= */
.flezzora-contact-page {
    background: var(--flezzora-bg);
}

.flezzora-contact-hero {
    padding: clamp(72px, 9vw, 126px) 0 clamp(60px, 8vw, 96px);
    border-bottom: 1px solid var(--flezzora-border);
    background:
        radial-gradient(circle at 78% 18%, rgba(184, 174, 220, 0.18), transparent 30%),
        var(--flezzora-bg);
}

.flezzora-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
    gap: clamp(34px, 8vw, 112px);
    align-items: end;
}

.flezzora-contact-eyebrow {
    margin: 0 0 16px;
    color: var(--flezzora-lavender);
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.flezzora-contact-hero__copy h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--flezzora-heading-font);
    font-size: clamp(54px, 7.4vw, 98px);
    line-height: 0.97;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.flezzora-contact-hero__copy h1 em {
    color: var(--flezzora-lavender);
    font-style: italic;
}

.flezzora-contact-hero__copy > p {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--flezzora-muted);
    font-size: 17px;
    line-height: 1.85;
}

.flezzora-contact-hero__note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 24px 0 8px 28px;
    border-left: 1px solid var(--flezzora-border);
    color: var(--flezzora-muted);
    font-family: var(--flezzora-heading-font);
    font-size: 25px;
    line-height: 1.2;
}

.flezzora-contact-hero__note-mark {
    margin-bottom: 10px;
    color: var(--flezzora-lavender);
    font-family: var(--flezzora-body-font);
    font-size: 22px;
}

.flezzora-contact-main {
    padding: clamp(58px, 8vw, 92px) 0 20px;
}

.flezzora-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(30px, 6vw, 78px);
    align-items: center;
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid var(--flezzora-border);
    border-radius: 24px;
    background: var(--flezzora-surface);
    box-shadow: 0 18px 50px rgba(46, 43, 41, 0.045);
}

.flezzora-contact-card__intro h2,
.flezzora-contact-expect h2,
.flezzora-contact-cta__card h2 {
    margin: 0;
    font-family: var(--flezzora-heading-font);
    color: var(--flezzora-text);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.flezzora-contact-card__intro h2 {
    max-width: 540px;
    font-size: clamp(38px, 4.3vw, 58px);
    line-height: 1.03;
}

.flezzora-contact-card__intro p {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--flezzora-muted);
    font-size: 15px;
    line-height: 1.85;
}

.flezzora-contact-email {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 22px 22px 22px 20px;
    border: 1px solid var(--flezzora-border);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--flezzora-lavender-soft), #FBFAFD);
    color: var(--flezzora-text);
    transition: transform var(--flezzora-transition), box-shadow var(--flezzora-transition), border-color var(--flezzora-transition);
}

.flezzora-contact-email:hover {
    color: var(--flezzora-text);
    border-color: var(--flezzora-lavender);
    box-shadow: 0 14px 30px rgba(76, 63, 110, 0.08);
    transform: translateY(-2px);
}

.flezzora-contact-email__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--flezzora-lavender);
    border: 1px solid var(--flezzora-border);
}

.flezzora-contact-email__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.flezzora-contact-email__content small {
    color: var(--flezzora-muted);
    font-family: var(--flezzora-body-font);
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.flezzora-contact-email__content strong {
    overflow-wrap: anywhere;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
}

.flezzora-contact-email__arrow {
    margin-left: auto;
    flex: 0 0 auto;
    color: var(--flezzora-lavender);
    font-size: 24px;
}

.flezzora-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.flezzora-contact-info-card {
    min-height: 255px;
    padding: 28px 26px 30px;
    border: 1px solid var(--flezzora-border);
    border-radius: 20px;
    background: var(--flezzora-surface);
}

.flezzora-contact-info-card--lavender { background: linear-gradient(160deg, var(--flezzora-lavender-soft), var(--flezzora-surface)); }
.flezzora-contact-info-card--sage { background: linear-gradient(160deg, #EDF2E9, var(--flezzora-surface)); }
.flezzora-contact-info-card--blush { background: linear-gradient(160deg, #F9EEEA, var(--flezzora-surface)); }

.flezzora-contact-info-card__number {
    display: inline-block;
    margin-bottom: 44px;
    color: var(--flezzora-muted);
    font-size: 10px;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.flezzora-contact-info-card h3 {
    margin: 0;
    font-family: var(--flezzora-heading-font);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 500;
}

.flezzora-contact-info-card p {
    margin: 14px 0 0;
    color: var(--flezzora-muted);
    font-size: 14px;
    line-height: 1.75;
}

.flezzora-contact-expect {
    padding: 70px 0 28px;
}

.flezzora-contact-expect__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(32px, 7vw, 100px);
    align-items: start;
    padding: 28px 0 36px;
    border-top: 1px solid var(--flezzora-border);
    border-bottom: 1px solid var(--flezzora-border);
}

.flezzora-contact-expect h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
}

.flezzora-contact-expect__inner > p {
    max-width: 660px;
    margin: 17px 0 0;
    color: var(--flezzora-muted);
    font-size: 15px;
    line-height: 1.85;
}

.flezzora-contact-expect__inner strong {
    color: var(--flezzora-text);
    font-weight: 600;
}

.flezzora-contact-cta {
    padding: 56px 0 106px;
}

.flezzora-contact-cta__card {
    padding: clamp(40px, 7vw, 78px) 28px;
    text-align: center;
    border: 1px solid var(--flezzora-border);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--flezzora-sage), var(--flezzora-bg));
}

.flezzora-contact-cta__card h2 {
    font-size: clamp(42px, 5.1vw, 68px);
    line-height: 1.02;
}

.flezzora-contact-cta__card p {
    max-width: 600px;
    margin: 18px auto 28px;
    color: var(--flezzora-muted);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 980px) {
    .flezzora-contact-hero__grid,
    .flezzora-contact-card,
    .flezzora-contact-expect__inner {
        grid-template-columns: 1fr;
    }

    .flezzora-contact-hero__note {
        padding: 18px 0 0;
        border-left: 0;
        border-top: 1px solid var(--flezzora-border);
        padding-top: 20px;
    }

    .flezzora-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .flezzora-contact-info-card {
        min-height: auto;
    }

    .flezzora-contact-info-card__number {
        margin-bottom: 22px;
    }
}

@media (max-width: 680px) {
    .flezzora-contact-hero {
        padding: 54px 0 50px;
    }

    .flezzora-contact-hero__copy h1 {
        font-size: clamp(45px, 13vw, 62px);
    }

    .flezzora-contact-hero__copy > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .flezzora-contact-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .flezzora-contact-email {
        align-items: flex-start;
        padding: 18px;
    }

    .flezzora-contact-email__arrow {
        font-size: 20px;
    }

    .flezzora-contact-info-card {
        padding: 24px 22px 26px;
        border-radius: 18px;
    }

    .flezzora-contact-expect {
        padding-top: 52px;
    }

    .flezzora-contact-cta {
        padding: 44px 0 72px;
    }
}


/* =========================================================
   RETURNS & REFUNDS PAGE
   ========================================================= */

.flezzora-returns-page {
    background: var(--flezzora-bg, #F9F7F3);
    color: var(--flezzora-text, #2E2B29);
}

.flezzora-returns-container { max-width: 960px; }

.flezzora-returns-hero {
    padding: clamp(72px, 10vw, 128px) 0 78px;
    background: linear-gradient(135deg, #FBF9F5 0%, #EEEAF8 100%);
    border-bottom: 1px solid var(--flezzora-border, #E5DED6);
}

.flezzora-returns-hero__inner { max-width: 860px; text-align: center; }
.flezzora-returns-eyebrow {
    margin-bottom: 14px;
    color: var(--flezzora-muted, #77716B);
    font-family: var(--flezzora-body-font, Arial, sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.flezzora-returns-hero h1,
.flezzora-returns-section h2,
.flezzora-returns-commitment h2,
.flezzora-returns-cta__card h2 {
    margin: 0;
    font-family: var(--flezzora-heading-font, Georgia, serif);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.02em;
}
.flezzora-returns-hero h1 { font-size: clamp(52px, 7vw, 82px); }
.flezzora-returns-hero p {
    max-width: 720px;
    margin: 22px auto 0;
    color: var(--flezzora-muted, #77716B);
    font-size: 16px;
    line-height: 1.85;
}
.flezzora-returns-hero__mark { display: inline-block; margin-top: 28px; color: var(--flezzora-lavender, #B8AEDC); font-size: 24px; }

.flezzora-returns-section { padding: clamp(64px, 8vw, 98px) 0; }
.flezzora-returns-section--soft { background: #FBFAF7; }
.flezzora-returns-section--lavender { background: #F1EDF8; }
.flezzora-returns-section--sage { background: #E9EFE3; }
.flezzora-returns-section--blush { background: #F8EEEA; }
.flezzora-returns-narrow { max-width: 820px; }
.flezzora-returns-narrow p,
.flezzora-returns-two-col p,
.flezzora-returns-commitment p,
.flezzora-returns-section-heading p { color: var(--flezzora-muted, #77716B); line-height: 1.85; font-size: 15px; }
.flezzora-returns-narrow h2,
.flezzora-returns-two-col h2,
.flezzora-returns-section-heading h2 { font-size: clamp(38px, 5vw, 62px); }
.flezzora-returns-narrow p + p { margin-top: 18px; }
.flezzora-returns-callout { margin-top: 24px; padding-left: 18px; border-left: 3px solid var(--flezzora-lavender, #B8AEDC); }
.flezzora-returns-two-col { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(34px, 7vw, 100px); align-items: start; }
.flezzora-returns-two-col--top > * { min-width: 0; }
.flezzora-returns-section-heading { max-width: 760px; margin-bottom: 28px; }
.flezzora-returns-section-heading p { margin-top: 16px; }

.flezzora-returns-help-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.flezzora-returns-help-card,
.flezzora-returns-before-card,
.flezzora-returns-box,
.flezzora-returns-email-card {
    border: 1px solid var(--flezzora-border, #E5DED6);
    border-radius: 20px;
    background: var(--flezzora-surface, #FFF);
}
.flezzora-returns-help-card { padding: 28px; min-height: 250px; }
.flezzora-returns-help-card > span,
.flezzora-returns-before-card > span { color: var(--flezzora-lavender, #B8AEDC); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.flezzora-returns-help-card h3,
.flezzora-returns-before-card h3,
.flezzora-returns-box h3 { margin: 42px 0 12px; font-family: var(--flezzora-heading-font, Georgia, serif); font-size: 30px; font-weight: 500; line-height: 1.06; }
.flezzora-returns-help-card p,
.flezzora-returns-before-card p { margin: 0; color: var(--flezzora-muted, #77716B); line-height: 1.75; font-size: 14px; }

.flezzora-returns-list { margin: 22px 0; padding: 0; list-style: none; }
.flezzora-returns-list li { position: relative; margin: 0 0 12px; padding-left: 24px; color: var(--flezzora-text, #2E2B29); line-height: 1.65; }
.flezzora-returns-list li::before { content: '✦'; position: absolute; left: 0; top: .1em; color: var(--flezzora-lavender, #B8AEDC); }
.flezzora-returns-box { margin: 24px 0; padding: 25px 26px; }
.flezzora-returns-box h3 { margin: 0 0 12px; font-size: 24px; }
.flezzora-returns-email-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; background: #EEEAF8; }
.flezzora-returns-email-card span { color: var(--flezzora-muted, #77716B); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.flezzora-returns-email-card a { color: var(--flezzora-text, #2E2B29); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.flezzora-returns-email-card a:hover { color: #8C7ED0; }

.flezzora-returns-commitment { max-width: 880px; text-align: center; }
.flezzora-returns-commitment p { max-width: 720px; margin: 20px auto 0; }
.flezzora-returns-emphasis { font-size: 21px !important; color: var(--flezzora-text, #2E2B29) !important; font-family: var(--flezzora-heading-font, Georgia, serif); }
.flezzora-returns-commitment blockquote { max-width: 740px; margin: 32px auto 0; padding: 22px 26px; border-top: 1px solid var(--flezzora-border, #E5DED6); border-bottom: 1px solid var(--flezzora-border, #E5DED6); font-family: var(--flezzora-heading-font, Georgia, serif); font-size: clamp(30px, 4vw, 46px); line-height: 1.12; font-style: italic; }

.flezzora-returns-before-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.flezzora-returns-before-card { padding: 24px 22px; min-height: 225px; background: rgba(255,255,255,.72); }
.flezzora-returns-before-card h3 { margin-top: 34px; font-size: 25px; }

.flezzora-returns-cta { padding: 46px 0 100px; }
.flezzora-returns-cta__card { max-width: 900px; margin: 0 auto; padding: clamp(42px, 7vw, 78px) 28px; text-align: center; border: 1px solid var(--flezzora-border, #E5DED6); border-radius: 24px; background: linear-gradient(135deg, #DCE3D5, #FBF9F5); }
.flezzora-returns-cta__card h2 { font-size: clamp(42px, 5.5vw, 68px); }
.flezzora-returns-cta__card p { max-width: 560px; margin: 15px auto 26px; color: var(--flezzora-muted, #77716B); }
.flezzora-returns-cta__email { margin-top: 14px !important; font-size: 12px !important; }

@media (max-width: 980px) {
    .flezzora-returns-two-col { grid-template-columns: 1fr; }
    .flezzora-returns-before-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
    .flezzora-returns-hero { padding-top: 56px; }
    .flezzora-returns-hero h1 { font-size: clamp(44px, 14vw, 58px); }
    .flezzora-returns-help-grid { grid-template-columns: 1fr; }
    .flezzora-returns-before-grid { grid-template-columns: 1fr; }
    .flezzora-returns-help-card { min-height: auto; }
    .flezzora-returns-email-card { align-items: flex-start; flex-direction: column; }
    .flezzora-returns-section { padding-block: 58px; }
}


/* =========================================================
   TERMS OF USE PAGE
   ========================================================= */

.flezzora-terms-page {
    --terms-bg: #F9F7F3;
    --terms-surface: #FFFFFF;
    --terms-text: #2E2B29;
    --terms-muted: #77716B;
    --terms-lavender: #B8AEDC;
    --terms-lavender-bg: #F1EDF8;
    --terms-sage-bg: #E9EFE3;
    --terms-blush-bg: #F8EEEA;
    --terms-dark-bg: #2E2B29;
    --terms-border: #E5DED6;
    background: var(--terms-bg);
    color: var(--terms-text);
}

.flezzora-terms-hero {
    padding: 92px 0 82px;
    border-bottom: 1px solid var(--terms-border);
}

.flezzora-terms-hero__inner { max-width: 900px; }
.flezzora-terms-eyebrow {
    margin-bottom: 14px;
    color: var(--terms-lavender);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.flezzora-terms-hero h1,
.flezzora-terms-section h2,
.flezzora-terms-card h3,
.flezzora-terms-contact-card h2,
.flezzora-terms-rule-card h2 {
    margin: 0 0 18px;
    color: var(--terms-text);
    font-family: Georgia, serif;
    line-height: 1.08;
}
.flezzora-terms-hero h1 { font-size: clamp(46px, 6vw, 72px); max-width: 820px; }
.flezzora-terms-hero p,
.flezzora-terms-section p,
.flezzora-terms-section li {
    color: var(--terms-muted);
    font-family: inherit;
    line-height: 1.8;
}
.flezzora-terms-hero p { max-width: 720px; font-size: 18px; }
.flezzora-terms-mark {
    display: inline-flex;
    margin-top: 26px;
    color: var(--terms-lavender);
    font-size: 28px;
}
.flezzora-terms-section { padding: 78px 0; }
.flezzora-terms-two-col {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: start;
}
.flezzora-terms-two-col--top { align-items: start; }
.flezzora-terms-section-heading { max-width: 820px; margin-bottom: 36px; }
.flezzora-terms-section h2 { font-size: clamp(34px, 4vw, 54px); }
.flezzora-terms-list { list-style: none; margin: 20px 0; padding: 0; }
.flezzora-terms-list li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.flezzora-terms-list li::before { content: '✦'; position: absolute; left: 0; top: 2px; color: var(--terms-lavender); }
.flezzora-terms-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.flezzora-terms-card,
.flezzora-terms-feature-card,
.flezzora-terms-contact-card,
.flezzora-terms-rule-card {
    padding: 30px;
    background: var(--terms-surface);
    border: 1px solid var(--terms-border);
    border-radius: 20px;
}
.flezzora-terms-card > span { display:block; margin-bottom: 14px; color: var(--terms-lavender); }
.flezzora-terms-card h3 { font-size: 25px; }
.flezzora-terms-card p { margin: 0; }
.flezzora-terms-callout {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--terms-lavender);
    background: rgba(184,174,220,.12);
    border-radius: 0 12px 12px 0;
}
.flezzora-terms-feature-card { max-width: 900px; margin: 0 auto; }
.flezzora-terms-contact-card { max-width: 860px; margin: 0 auto; text-align: center; }
.flezzora-terms-contact-card a,
.flezzora-terms-inline-link { color: var(--terms-text); font-weight: 700; text-decoration: none; }
.flezzora-terms-contact-card a:hover,
.flezzora-terms-inline-link:hover { color: var(--terms-lavender); }
.flezzora-terms-rule-card { max-width: 900px; margin: 0 auto; background: var(--terms-dark-bg); border-color: transparent; color: #FFFFFF; text-align: center; }
.flezzora-terms-rule-card h2,
.flezzora-terms-rule-card p { color: #FFFFFF; }
.flezzora-terms-rule { margin: 24px 0; font-size: 24px; }
.flezzora-terms-brand { margin-top: 34px; }
.flezzora-terms-updated { opacity: .7; font-size: 13px !important; }

@media (max-width: 900px) {
    .flezzora-terms-two-col { grid-template-columns: 1fr; gap: 28px; }
    .flezzora-terms-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .flezzora-terms-hero { padding: 62px 0 54px; }
    .flezzora-terms-hero h1 { font-size: 40px; }
    .flezzora-terms-hero p { font-size: 16px; }
    .flezzora-terms-section { padding: 58px 0; }
    .flezzora-terms-section h2 { font-size: 34px; }
    .flezzora-terms-card,
    .flezzora-terms-feature-card,
    .flezzora-terms-contact-card,
    .flezzora-terms-rule-card { padding: 22px; }
}

/* =========================================================
   TERMS PAGE — ALIGN WITH FLEZZORA GLOBAL DESIGN SYSTEM
   ========================================================= */

body.page-template-page-terms-of-use,
body.page-terms-of-use {
    background: var(--flezzora-bg) !important;
    color: var(--flezzora-text) !important;
}

.flezzora-terms-page {
    --terms-bg: var(--flezzora-bg);
    --terms-surface: var(--flezzora-surface);
    --terms-text: var(--flezzora-text);
    --terms-muted: var(--flezzora-muted);
    --terms-lavender: #A79BD1;
    --terms-lavender-bg: #F0EAF8;
    --terms-sage-bg: var(--flezzora-sage);
    --terms-blush-bg: var(--flezzora-blush);
    --terms-dark-bg: var(--flezzora-text);
    --terms-border: var(--flezzora-border);
    background: var(--flezzora-bg);
    color: var(--flezzora-text);
}

.flezzora-terms-page,
.flezzora-terms-page p,
.flezzora-terms-page li,
.flezzora-terms-page a,
.flezzora-terms-page button {
    font-family: var(--flezzora-body-font) !important;
}

.flezzora-terms-page h1,
.flezzora-terms-page h2,
.flezzora-terms-page h3,
.flezzora-terms-page h4,
.flezzora-terms-page blockquote {
    font-family: var(--flezzora-heading-font) !important;
    font-weight: 500;
}

.flezzora-terms-hero {
    padding: clamp(76px, 9vw, 132px) 0 clamp(70px, 8vw, 118px);
    background:
        radial-gradient(circle at 82% 22%, rgba(184, 174, 220, 0.18), transparent 28%),
        linear-gradient(180deg, #FBF8F5 0%, var(--flezzora-bg) 100%);
    border-bottom: 1px solid var(--flezzora-border);
}

.flezzora-terms-hero__inner {
    max-width: 980px;
}

.flezzora-terms-eyebrow {
    margin-bottom: 14px;
    color: #9B8FCB !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
}

.flezzora-terms-hero h1 {
    max-width: 920px;
    margin: 18px 0 22px;
    font-size: clamp(43px, 6.3vw, 83px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em;
    color: var(--flezzora-text) !important;
}

.flezzora-terms-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--flezzora-muted) !important;
    font-size: clamp(17px, 2vw, 21px) !important;
    line-height: 1.8 !important;
}

.flezzora-terms-mark {
    margin-top: 26px;
    color: #A79BD1 !important;
    font-size: 26px;
}

.flezzora-terms-section {
    padding: clamp(72px, 9vw, 130px) 0;
}

.flezzora-terms-two-col {
    display: grid;
    grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: start;
    max-width: 1040px;
    margin-inline: auto;
}

.flezzora-terms-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.flezzora-terms-section h2 {
    margin: 0 0 18px;
    color: var(--flezzora-text) !important;
    font-size: clamp(37px, 5vw, 60px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em;
}

.flezzora-terms-section p,
.flezzora-terms-section li {
    color: var(--flezzora-muted) !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.flezzora-terms-section--soft {
    background: var(--flezzora-bg) !important;
}

.flezzora-terms-section--lavender {
    background: #F0EAF8 !important;
}

.flezzora-terms-section--sage {
    background: var(--flezzora-sage) !important;
}

.flezzora-terms-section--blush {
    background: var(--flezzora-blush) !important;
}

.flezzora-terms-section--dark {
    background: var(--flezzora-text) !important;
}

.flezzora-terms-card-grid {
    gap: 14px;
}

.flezzora-terms-card,
.flezzora-terms-feature-card,
.flezzora-terms-contact-card,
.flezzora-terms-rule-card {
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: 0 18px 45px rgba(70, 59, 49, 0.045);
}

.flezzora-terms-card {
    padding: 28px !important;
}

.flezzora-terms-card > span {
    color: #A79BD1 !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.flezzora-terms-card h3 {
    margin: 24px 0 12px;
    font-size: 28px !important;
    line-height: 1.08;
    color: var(--flezzora-text) !important;
}

.flezzora-terms-list {
    margin: 22px 0;
}

.flezzora-terms-list li::before {
    content: '✦';
    color: #A79BD1 !important;
}

.flezzora-terms-callout {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 3px solid #B8AEDC !important;
    background: rgba(184, 174, 220, 0.12) !important;
    border-radius: 0 12px 12px 0;
}

.flezzora-terms-contact-card {
    background: linear-gradient(135deg, #FBF9F5, #F0EAF8) !important;
    box-shadow: 0 18px 50px rgba(69, 55, 82, 0.06);
}

.flezzora-terms-contact-card h2 {
    font-size: clamp(38px, 5vw, 60px) !important;
}

.flezzora-terms-contact-card a,
.flezzora-terms-inline-link {
    color: var(--flezzora-text) !important;
}

.flezzora-terms-contact-card a:hover,
.flezzora-terms-inline-link:hover {
    color: #8C7ED0 !important;
}

.flezzora-terms-rule-card {
    background: var(--flezzora-text) !important;
    color: #FFFFFF;
    box-shadow: none;
}

.flezzora-terms-rule-card h2,
.flezzora-terms-rule-card p {
    color: #FFFFFF !important;
}

.flezzora-terms-rule-card h2 {
    font-size: clamp(40px, 5.5vw, 68px) !important;
}

.flezzora-terms-rule {
    margin: 24px 0;
    font-family: var(--flezzora-heading-font) !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.3;
}

.flezzora-terms-brand {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .flezzora-terms-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .flezzora-terms-hero {
        padding: 62px 0 54px;
    }

    .flezzora-terms-hero h1 {
        font-size: 43px !important;
    }

    .flezzora-terms-hero p {
        font-size: 16px !important;
    }

    .flezzora-terms-section {
        padding: 58px 0;
    }

    .flezzora-terms-section h2 {
        font-size: 36px !important;
    }
}

/* =========================================================
   FLEZZORA CONTACT SUPPORT PAGE
   Customer-help page. Uses the existing Flezzora font variables
   and palette so it stays visually consistent with the rest of the site.
   ========================================================= */
.flezzora-contact-support-page{background:var(--flezzora-bg);color:var(--flezzora-text);}
.flezzora-support-hero{padding:clamp(72px,9vw,118px) 0 clamp(58px,7vw,88px);border-bottom:1px solid var(--flezzora-border);}
.flezzora-support-hero__inner{display:grid;grid-template-columns:minmax(0,1fr) 90px;gap:48px;align-items:end;}
.flezzora-support-eyebrow{margin:0 0 14px;color:var(--flezzora-lavender);font-size:11px;line-height:1.3;letter-spacing:.2em;text-transform:uppercase;font-weight:700;}
.flezzora-support-hero h1{max-width:850px;margin:0;font-family:var(--flezzora-heading-font);font-size:clamp(54px,7vw,92px);line-height:.98;letter-spacing:-.035em;font-weight:500;}
.flezzora-support-hero p{max-width:720px;margin:26px 0 0;color:var(--flezzora-muted);font-size:17px;line-height:1.85;}
.flezzora-support-hero__mark{justify-self:end;font-family:var(--flezzora-body-font);font-size:26px;padding-bottom:10px;}
.flezzora-support-issues{padding:clamp(58px,7vw,88px) 0 26px;}
.flezzora-support-section-intro{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:26px;}
.flezzora-support-section-intro h2,.flezzora-support-form__intro h2,.flezzora-support-response h2,.flezzora-support-help h2{margin:0;font-family:var(--flezzora-heading-font);font-weight:500;letter-spacing:-.025em;}
.flezzora-support-section-intro h2{font-size:clamp(42px,5vw,64px);line-height:1.02;}
.flezzora-support-issue-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.flezzora-support-issue{min-height:145px;padding:26px;border:1px solid var(--flezzora-border);border-radius:18px;display:flex;flex-direction:column;justify-content:space-between;}
.flezzora-support-issue span{font-size:10px;letter-spacing:.18em;font-weight:700;color:var(--flezzora-muted);}
.flezzora-support-issue strong{font-family:var(--flezzora-heading-font);font-size:30px;line-height:1.02;font-weight:500;}
.flezzora-support-request{padding:42px 0 24px;}
.flezzora-support-form{display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:clamp(34px,6vw,80px);padding:clamp(32px,5vw,62px);border:1px solid var(--flezzora-border);border-radius:24px;background:var(--flezzora-surface);box-shadow:0 18px 50px rgba(46,43,41,.045);}
.flezzora-support-form__intro h2{font-size:clamp(40px,4.6vw,60px);line-height:1.02;}
.flezzora-support-form__intro p{max-width:460px;margin:18px 0 0;color:var(--flezzora-muted);font-size:15px;line-height:1.85;}
.flezzora-support-field-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-bottom:18px;}
.flezzora-support-field-full{display:block;margin-bottom:18px;}
.flezzora-support-form label>span{display:block;margin-bottom:8px;font-size:11px;letter-spacing:.08em;text-transform:uppercase;font-weight:700;color:var(--flezzora-text);}
.flezzora-support-form input,.flezzora-support-form select,.flezzora-support-form textarea{width:100%;border:1px solid var(--flezzora-border);border-radius:12px;background:#fff;color:var(--flezzora-text);font:inherit;padding:13px 14px;box-shadow:none;}
.flezzora-support-form textarea{resize:vertical;min-height:165px;}
.flezzora-support-form input:focus,.flezzora-support-form select:focus,.flezzora-support-form textarea:focus{outline:none;border-color:var(--flezzora-lavender);box-shadow:0 0 0 3px var(--flezzora-lavender-soft);}
.flezzora-support-form__actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.flezzora-support-form__actions small{color:var(--flezzora-muted);font-size:12px;}
.flezzora-support-response{padding:64px 0 30px;}
.flezzora-support-response__inner{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:clamp(28px,6vw,92px);align-items:start;border-top:1px solid var(--flezzora-border);border-bottom:1px solid var(--flezzora-border);padding:30px 0 36px;}
.flezzora-support-response h2{font-size:clamp(38px,4.4vw,56px);line-height:1.03;}
.flezzora-support-response__inner>p{max-width:660px;margin:16px 0 0;color:var(--flezzora-muted);font-size:15px;line-height:1.85;}
.flezzora-support-help{padding:42px 0 104px;}
.flezzora-support-help__inner{padding:clamp(38px,6vw,66px);text-align:center;border:1px solid var(--flezzora-border);background:linear-gradient(135deg,var(--flezzora-lavender-soft),var(--flezzora-bg));}
.flezzora-support-help h2{max-width:720px;margin:0 auto;font-size:clamp(38px,4.6vw,60px);line-height:1.03;}
.flezzora-support-help__links{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:26px;}
.flezzora-support-help__links a{display:inline-flex;align-items:center;gap:8px;padding:13px 18px;border:1px solid var(--flezzora-border);border-radius:999px;background:var(--flezzora-surface);color:var(--flezzora-text);font-size:13px;font-weight:700;transition:all var(--flezzora-transition);}
.flezzora-support-help__links a:hover{transform:translateY(-2px);border-color:var(--flezzora-lavender);color:var(--flezzora-text);}
.flezzora-support-help__links a:first-child{background:var(--flezzora-lavender);border-color:var(--flezzora-lavender);}
.flezzora-support-help__links span{font-size:16px;}
@media (max-width:980px){
 .flezzora-support-hero__inner,.flezzora-support-form,.flezzora-support-response__inner{grid-template-columns:1fr;}
 .flezzora-support-hero__mark{justify-self:start;}
 .flezzora-support-issue-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:680px){
 .flezzora-support-hero{padding:54px 0 50px;}
 .flezzora-support-hero h1{font-size:clamp(46px,13vw,64px);}
 .flezzora-support-hero p{font-size:15px;line-height:1.75;}
 .flezzora-support-section-intro{display:block;}
 .flezzora-support-issue-grid,.flezzora-support-field-grid{grid-template-columns:1fr;}
 .flezzora-support-issue{min-height:122px;padding:22px;}
 .flezzora-support-form{padding:26px 20px;border-radius:20px;}
 .flezzora-support-help{padding-bottom:72px;}
}


/* =========================================================
   FLEZZORA FAQ PAGE
   ========================================================= */

.flezzora-faq-page {
    background: var(--flezzora-bg, #F9F7F3);
    color: var(--flezzora-text, #2E2B29);
}

.flezzora-faq-container,
.flezzora-faq-page .flezzora-container {
    width: min(var(--flezzora-container, 1180px), calc(100% - 56px));
    margin-inline: auto;
}

.flezzora-faq-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--flezzora-lavender, #B8AEDC);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.flezzora-faq-hero {
    padding: 92px 0 74px;
    text-align: center;
}

.flezzora-faq-title {
    max-width: 900px;
    margin: 0 auto 20px;
    color: var(--flezzora-text, #2E2B29);
    font-family: var(--flezzora-heading-font, Georgia, serif);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.025em;
}

.flezzora-faq-title em {
    color: var(--flezzora-lavender, #B8AEDC);
    font-style: italic;
    font-weight: 400;
}

.flezzora-faq-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--flezzora-muted, #77716B);
    font-size: 16px;
    line-height: 1.8;
}

.flezzora-faq-content {
    padding: 18px 0 90px;
}

.flezzora-faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, .28fr) minmax(0, .72fr);
    gap: 56px;
    align-items: start;
}

.flezzora-faq-sidebar {
    position: sticky;
    top: 28px;
}

.flezzora-faq-sidebar__inner {
    padding: 24px;
    background: var(--flezzora-surface, #FFFFFF);
    border: 1px solid var(--flezzora-border, #E5DED6);
    border-radius: var(--flezzora-radius-lg, 14px);
    box-shadow: var(--flezzora-shadow-soft, 0 8px 25px rgba(45, 40, 35, .06));
}

.flezzora-faq-category-nav {
    display: grid;
    gap: 8px;
}

.flezzora-faq-category-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: var(--flezzora-radius-sm, 6px);
    color: var(--flezzora-text, #2E2B29);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--flezzora-transition, 220ms ease), color var(--flezzora-transition, 220ms ease), border-color var(--flezzora-transition, 220ms ease);
}

.flezzora-faq-category-nav a span:last-child {
    color: var(--flezzora-lavender, #B8AEDC);
    transition: transform var(--flezzora-transition, 220ms ease);
}

.flezzora-faq-category-nav a:hover {
    background: var(--flezzora-lavender-soft, #EEEAF8);
    border-color: var(--flezzora-border, #E5DED6);
}

.flezzora-faq-category-nav a:hover span:last-child {
    transform: translateX(3px);
}

.flezzora-faq-group {
    scroll-margin-top: 30px;
}

.flezzora-faq-group + .flezzora-faq-group {
    margin-top: 44px;
}

.flezzora-faq-group__heading {
    margin-bottom: 14px;
}

.flezzora-faq-accordion {
    display: grid;
    gap: 10px;
}

.flezzora-faq-item {
    background: var(--flezzora-surface, #FFFFFF);
    border: 1px solid var(--flezzora-border, #E5DED6);
    border-radius: var(--flezzora-radius-md, 10px);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(45, 40, 35, .035);
}

.flezzora-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 66px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    color: var(--flezzora-text, #2E2B29);
    font-family: var(--flezzora-heading-font, Georgia, serif);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
}

.flezzora-faq-question::-webkit-details-marker {
    display: none;
}

.flezzora-faq-question::marker {
    content: '';
}

.flezzora-faq-toggle {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--flezzora-lavender-soft, #EEEAF8);
}

.flezzora-faq-toggle::before,
.flezzora-faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: var(--flezzora-text, #2E2B29);
    transform: translate(-50%, -50%);
    transition: transform var(--flezzora-transition, 220ms ease);
}

.flezzora-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.flezzora-faq-item[open] .flezzora-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.flezzora-faq-item[open] .flezzora-faq-question {
    background: var(--flezzora-lavender-soft, #EEEAF8);
}

.flezzora-faq-answer {
    padding: 0 20px 20px;
    color: var(--flezzora-muted, #77716B);
    font-size: 15px;
    line-height: 1.85;
}

.flezzora-faq-answer p {
    max-width: 760px;
    margin: 0;
}

.flezzora-faq-cta {
    padding: 26px 0 100px;
}

.flezzora-faq-cta__inner {
    padding: 64px 48px;
    text-align: center;
    background: var(--flezzora-sage, #DCE3D5);
    border: 1px solid var(--flezzora-border, #E5DED6);
    border-radius: var(--flezzora-radius-lg, 14px);
}

.flezzora-faq-cta__inner h2 {
    margin: 0 auto 14px;
    color: var(--flezzora-text, #2E2B29);
    font-family: var(--flezzora-heading-font, Georgia, serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.08;
}

.flezzora-faq-cta__inner h2 em {
    font-style: italic;
    color: var(--flezzora-lavender, #B8AEDC);
}

.flezzora-faq-cta__inner p {
    max-width: 650px;
    margin: 0 auto 24px;
    color: var(--flezzora-muted, #77716B);
    line-height: 1.8;
}

.flezzora-faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flezzora-faq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--flezzora-transition, 220ms ease), background-color var(--flezzora-transition, 220ms ease), color var(--flezzora-transition, 220ms ease), border-color var(--flezzora-transition, 220ms ease);
}

.flezzora-faq-button:hover {
    transform: translateY(-1px);
}

.flezzora-faq-button--primary {
    background: var(--flezzora-lavender, #B8AEDC);
    border: 1px solid var(--flezzora-lavender, #B8AEDC);
    color: #FFFFFF;
}

.flezzora-faq-button--primary:hover {
    background: #A89CCA;
    border-color: #A89CCA;
    color: #FFFFFF;
}

.flezzora-faq-button--secondary {
    background: var(--flezzora-surface, #FFFFFF);
    border: 1px solid var(--flezzora-border, #E5DED6);
    color: var(--flezzora-text, #2E2B29);
}

.flezzora-faq-button--secondary:hover {
    background: var(--flezzora-lavender-soft, #EEEAF8);
    color: var(--flezzora-text, #2E2B29);
}

@media (max-width: 900px) {
    .flezzora-faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flezzora-faq-sidebar {
        position: static;
    }

    .flezzora-faq-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flezzora-faq-hero {
        padding: 72px 0 58px;
    }
}

@media (max-width: 600px) {
    .flezzora-faq-page .flezzora-container {
        width: min(var(--flezzora-container, 1180px), calc(100% - 30px));
    }

    .flezzora-faq-title {
        font-size: clamp(38px, 11vw, 54px);
    }

    .flezzora-faq-intro {
        font-size: 15px;
    }

    .flezzora-faq-category-nav {
        grid-template-columns: 1fr;
    }

    .flezzora-faq-question {
        min-height: 60px;
        padding: 14px 16px;
        font-size: 18px;
    }

    .flezzora-faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .flezzora-faq-cta__inner {
        padding: 40px 22px;
    }

    .flezzora-faq-button {
        width: 100%;
    }
}


/* =========================================================
   DOWNLOAD HELP PAGE


/* =========================================================
   DOWNLOAD HELP PAGE
   ========================================================= */

.flezzora-download-help{background:var(--flezzora-bg,#f9f7f3);color:var(--flezzora-text,#2e2b29)}
.flezzora-dh-container{width:min(1180px,calc(100% - 56px));margin:0 auto}
.flezzora-dh-hero{padding:86px 0 72px;background:linear-gradient(180deg,#f1edf9 0%,#f9f7f3 100%);border-bottom:1px solid var(--flezzora-border,#e5ded6)}
.flezzora-dh-eyebrow{margin:0 0 14px;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--flezzora-lavender,#b8aedc)}
.flezzora-dh-hero h1{max-width:860px;margin:0;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:clamp(48px,6vw,78px);line-height:1.04;font-weight:500;color:var(--flezzora-text,#2e2b29)}
.flezzora-dh-hero h1 em{color:var(--flezzora-lavender,#8f83bd);font-style:italic}
.flezzora-dh-intro{max-width:690px;margin:28px 0 0;font-size:18px;line-height:1.8;color:var(--flezzora-muted,#77716b)}
.flezzora-dh-steps,.flezzora-dh-faq{padding:86px 0}
.flezzora-dh-section-heading{max-width:760px;margin-bottom:38px}
.flezzora-dh-section-heading h2{margin:0;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:clamp(34px,4vw,52px);font-weight:500;line-height:1.08}
.flezzora-dh-section-heading p:last-child{margin:16px 0 0;line-height:1.8;color:var(--flezzora-muted,#77716b)}
.flezzora-dh-step-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.flezzora-dh-step-card{position:relative;padding:28px;background:var(--flezzora-surface,#fff);border:1px solid var(--flezzora-border,#e5ded6);border-radius:18px;box-shadow:var(--flezzora-shadow-soft,0 8px 25px rgba(45,40,35,.06))}
.flezzora-dh-step-number{position:absolute;top:18px;right:20px;font-size:12px;font-weight:700;letter-spacing:.08em;color:#9e95b9}
.flezzora-dh-step-icon{display:grid;place-items:center;width:48px;height:48px;margin-bottom:24px;border-radius:14px;background:var(--flezzora-lavender-soft,#eeeaf8);color:#8f83bd;font-size:22px;font-weight:700}
.flezzora-dh-step-card h3{margin:0 0 10px;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:25px;font-weight:500}
.flezzora-dh-step-card p{margin:0;line-height:1.75;color:var(--flezzora-muted,#77716b)}
.flezzora-dh-step-card a{color:#8f83bd;font-weight:600}
.flezzora-dh-help-grid{padding:0 0 86px}
.flezzora-dh-two-column{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.flezzora-dh-panel{padding:38px;border:1px solid var(--flezzora-border,#e5ded6);border-radius:20px}
.flezzora-dh-panel-sage{background:#e7ede0}
.flezzora-dh-panel-ivory{background:#fff}
.flezzora-dh-panel h2{margin:0 0 28px;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:38px;font-weight:500;line-height:1.1}
.flezzora-dh-list{display:grid;gap:18px}
.flezzora-dh-list div{display:grid;gap:5px;padding-bottom:18px;border-bottom:1px solid rgba(80,72,62,.12)}
.flezzora-dh-list div:last-child{padding-bottom:0;border-bottom:0}
.flezzora-dh-list strong{font-size:15px}
.flezzora-dh-list span{font-size:14px;line-height:1.7;color:var(--flezzora-muted,#77716b)}
.flezzora-dh-info-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.flezzora-dh-info-cards div{padding:18px;background:#fbfaf7;border:1px solid var(--flezzora-border,#e5ded6);border-radius:14px}
.flezzora-dh-info-cards span{display:block;margin-bottom:8px;font-size:11px;font-weight:700;letter-spacing:.1em;color:#9e95b9}
.flezzora-dh-info-cards p{margin:0;font-size:14px;line-height:1.65;color:var(--flezzora-muted,#77716b)}
.flezzora-dh-accordion{display:grid;gap:12px}
.flezzora-dh-accordion details{background:#fff;border:1px solid var(--flezzora-border,#e5ded6);border-radius:14px;overflow:hidden}
.flezzora-dh-accordion summary{cursor:pointer;list-style:none;padding:22px 56px 22px 24px;position:relative;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:20px}
.flezzora-dh-accordion summary::-webkit-details-marker{display:none}
.flezzora-dh-accordion summary:after{content:'+';position:absolute;right:22px;top:50%;transform:translateY(-50%);width:30px;height:30px;display:grid;place-items:center;border-radius:50%;background:var(--flezzora-lavender-soft,#eeeaf8);color:#8f83bd;font-family:Arial,sans-serif;font-size:18px}
.flezzora-dh-accordion details[open] summary:after{content:'−'}
.flezzora-dh-accordion details p{margin:0;padding:0 24px 24px;color:var(--flezzora-muted,#77716b);line-height:1.75}
.flezzora-dh-contact{padding:0 0 90px}
.flezzora-dh-contact-card{display:flex;align-items:center;justify-content:space-between;gap:35px;padding:40px;background:#dfe8da;border:1px solid #d0dcc8;border-radius:20px}
.flezzora-dh-contact-card h2{margin:0 0 12px;font-family:var(--flezzora-heading-font,Georgia,serif);font-size:clamp(32px,4vw,48px);font-weight:500;line-height:1.08}
.flezzora-dh-contact-card p:last-child{max-width:650px;margin:0;line-height:1.75;color:#666d60}
.flezzora-dh-button{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;min-height:48px;padding:12px 24px;background:#8f83bd;color:#fff;border-radius:10px;text-decoration:none;font-size:14px;font-weight:700;transition:transform .2s ease,background .2s ease}
.flezzora-dh-button:hover{background:#7d72aa;color:#fff;transform:translateY(-1px)}
@media(max-width:900px){.flezzora-dh-step-grid{grid-template-columns:1fr 1fr}.flezzora-dh-two-column{grid-template-columns:1fr}.flezzora-dh-contact-card{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.flezzora-dh-container{width:min(100% - 32px,1180px)}.flezzora-dh-hero{padding:64px 0 54px}.flezzora-dh-intro{font-size:16px}.flezzora-dh-steps,.flezzora-dh-faq{padding:64px 0}.flezzora-dh-step-grid{grid-template-columns:1fr}.flezzora-dh-panel{padding:26px}.flezzora-dh-info-cards{grid-template-columns:1fr}.flezzora-dh-contact-card{padding:28px}.flezzora-dh-button{width:100%}}



/* =========================================================
   FLEZZORA SHOP — FINAL VISUAL REFINEMENT
   Scope limited to the WooCommerce shop/archive view.
   Product-page styling and other existing page styles remain untouched.
   ========================================================= */

/* Shop breadcrumb: match the pill treatment used on product pages. */
body.woocommerce-shop .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 0 28px !important;
    padding: 7px 12px !important;
    color: var(--flezzora-muted) !important;
    background: var(--flezzora-lavender-soft) !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 999px !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.035em !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 14px rgba(70, 57, 45, 0.035) !important;
}

body.woocommerce-shop .woocommerce-breadcrumb a,
body.post-type-archive-product .woocommerce-breadcrumb a {
    color: var(--flezzora-text) !important;
    text-decoration: none !important;
}

body.woocommerce-shop .woocommerce-breadcrumb a:hover,
body.post-type-archive-product .woocommerce-breadcrumb a:hover {
    color: var(--flezzora-lavender) !important;
}

body.woocommerce-shop .woocommerce-breadcrumb .flezzora-breadcrumb-separator,
body.post-type-archive-product .woocommerce-breadcrumb .flezzora-breadcrumb-separator {
    display: inline-block !important;
    margin: 0 8px !important;
    color: var(--flezzora-lavender) !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Product-card wishlist: show a clean heart control only. */
body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button {
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
}

body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

/* TI Wishlist outputs text in some plugin templates; hide it only on shop cards. */
body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .tinvwl-txt,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .tinvwl-txt {
    display: none !important;
}

body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .ftinvwl,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .ftinvwl,
body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button > i,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button > i {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

/* Shop sorting dropdown: soft editorial select matching the theme. */
body.woocommerce-shop .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering {
    margin: 0 0 22px !important;
}

body.woocommerce-shop .woocommerce-ordering select.orderby,
body.post-type-archive-product .woocommerce-ordering select.orderby {
    min-width: 178px !important;
    min-height: 42px !important;
    padding: 10px 40px 10px 14px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 999px !important;
    background-color: var(--flezzora-surface, #FFFFFF) !important;
    background-image: linear-gradient(45deg, transparent 50%, var(--flezzora-text, #2E2B29) 50%), linear-gradient(135deg, var(--flezzora-text, #2E2B29) 50%, transparent 50%) !important;
    background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px !important;
    background-size: 5px 5px, 5px 5px !important;
    background-repeat: no-repeat !important;
    color: var(--flezzora-text) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: 0 4px 14px rgba(70, 57, 45, 0.035) !important;
    cursor: pointer !important;
    outline: none !important;
}

body.woocommerce-shop .woocommerce-ordering select.orderby:hover,
body.post-type-archive-product .woocommerce-ordering select.orderby:hover {
    border-color: var(--flezzora-lavender) !important;
    background-color: var(--flezzora-lavender-soft) !important;
}

body.woocommerce-shop .woocommerce-ordering select.orderby:focus,
body.post-type-archive-product .woocommerce-ordering select.orderby:focus {
    border-color: var(--flezzora-lavender) !important;
    box-shadow: 0 0 0 3px rgba(184, 174, 220, 0.22) !important;
}

@media (max-width: 820px) {
    body.woocommerce-shop .woocommerce-breadcrumb,
    body.post-type-archive-product .woocommerce-breadcrumb {
        max-width: 100% !important;
        margin-bottom: 22px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 560px) {
    body.woocommerce-shop .woocommerce-breadcrumb,
    body.post-type-archive-product .woocommerce-breadcrumb {
        padding: 6px 10px !important;
        margin-bottom: 18px !important;
        font-size: 9px !important;
    }

    body.woocommerce-shop .woocommerce-breadcrumb .flezzora-breadcrumb-separator,
    body.post-type-archive-product .woocommerce-breadcrumb .flezzora-breadcrumb-separator {
        margin: 0 6px !important;
    }

    body.woocommerce-shop .woocommerce-ordering select.orderby,
    body.post-type-archive-product .woocommerce-ordering select.orderby {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* =========================================================
   FLEZZORA SHOP — WISHLIST + SORT OPTION POLISH
   Scoped to WooCommerce shop/archive only.
   ========================================================= */

/* Force the shop-card wishlist control to be icon-only.
   TI Wishlist can inject visible text through different markup/versions;
   this rule hides that text and supplies a stable Flezzora heart glyph. */
body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-indent: -9999px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
    box-sizing: border-box !important;
}

body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button::before,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button::before {
    content: '♡' !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    font-family: Arial, sans-serif !important;
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    color: currentColor !important;
}

body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button > *,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button .tinvwl_add_to_wishlist_button > * {
    display: none !important;
}

/* Keep the outer wrapper itself from expanding because of plugin text. */
body.woocommerce-shop .flezzora-product-card__image .flezzora-wishlist-button,
body.post-type-archive-product .flezzora-product-card__image .flezzora-wishlist-button {
    width: 40px !important;
    max-width: 40px !important;
    overflow: visible !important;
}

/* Style the actual native option list as far as the browser allows. */
body.woocommerce-shop .woocommerce-ordering select.orderby option,
body.post-type-archive-product .woocommerce-ordering select.orderby option {
    background: var(--flezzora-surface, #ffffff) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    font-family: var(--flezzora-body-font, sans-serif) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 12px !important;
}

body.woocommerce-shop .woocommerce-ordering select.orderby option:checked,
body.post-type-archive-product .woocommerce-ordering select.orderby option:checked {
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-shop .woocommerce-ordering select.orderby {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

@media (max-width: 560px) {
    body.woocommerce-shop .woocommerce-ordering select.orderby,
    body.post-type-archive-product .woocommerce-ordering select.orderby {
        font-size: 13px !important;
    }
}

/* =========================================================
   FLEZZORA — CART, CHECKOUT, ORDER PAY + ORDER ACTION POLISH
   Added only for WooCommerce transactional screens.
   Existing page/template files remain untouched.
   ========================================================= */

/* ---------- 1) Add-to-cart confirmation notice ---------- */
body.single-product .woocommerce-message,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-order-pay .woocommerce-message {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 24px 0 28px !important;
    padding: 14px 16px 14px 20px !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 16px !important;
    border-top: 1px solid var(--flezzora-border, #e5ded6) !important;
    background: var(--flezzora-lavender-soft, #eeeaf8) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    box-shadow: 0 10px 28px rgba(45,40,35,.04) !important;
    line-height: 1.5 !important;
}

body.single-product .woocommerce-message::before,
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-order-pay .woocommerce-message::before {
    color: var(--flezzora-lavender, #8f83bd) !important;
    margin-right: 0 !important;
}

body.single-product .woocommerce-message a.button,
body.woocommerce-cart .woocommerce-message a.button,
body.woocommerce-checkout .woocommerce-message a.button,
body.woocommerce-order-pay .woocommerce-message a.button {
    flex: 0 0 auto !important;
    min-height: 38px !important;
    padding: 9px 16px !important;
    border-radius: 10px !important;
    background: var(--flezzora-lavender, #b8aedc) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* ---------- 2) Cart ---------- */
body.woocommerce-cart .flezzora-woocommerce > .container,
body.woocommerce-cart .woocommerce {
    padding-bottom: 64px !important;
}

body.woocommerce-cart .woocommerce h1,
body.woocommerce-cart .woocommerce h2,
body.woocommerce-cart .woocommerce h3 {
    font-family: var(--flezzora-heading-font, Georgia, serif) !important;
    font-weight: 400 !important;
    color: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-cart .shop_table.cart {
    width: 100% !important;
    border: 1px solid var(--flezzora-border, #e5ded6) !important;
    border-radius: 20px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-cart .shop_table.cart th,
body.woocommerce-cart .shop_table.cart td {
    padding: 16px 18px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--flezzora-border, #e5ded6) !important;
    color: var(--flezzora-text, #2e2b29) !important;
    vertical-align: middle !important;
}

body.woocommerce-cart .shop_table.cart thead th {
    background: #f6f1ec !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart .shop_table.cart tbody tr:last-child td { border-bottom: 0 !important; }
body.woocommerce-cart .shop_table.cart .product-thumbnail img { border-radius: 12px !important; }
body.woocommerce-cart .shop_table.cart .product-name a { color: var(--flezzora-text) !important; text-decoration: none !important; font-weight: 600 !important; }
body.woocommerce-cart .shop_table.cart .product-name a:hover { color: var(--flezzora-lavender) !important; }

body.woocommerce-cart .quantity .qty {
    width: 74px !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
    text-align: center !important;
}

body.woocommerce-cart .coupon input.input-text,
body.woocommerce-cart .coupon button,
body.woocommerce-cart button[name="update_cart"],
body.woocommerce-cart a.checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    min-height: 44px !important;
    border-radius: 11px !important;
    font-family: inherit !important;
    font-weight: 700 !important;
}

body.woocommerce-cart .coupon input.input-text {
    border: 1px solid var(--flezzora-border) !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
    padding: 10px 12px !important;
}

body.woocommerce-cart .coupon button,
body.woocommerce-cart button[name="update_cart"] {
    background: var(--flezzora-surface, #fff) !important;
    color: var(--flezzora-text) !important;
    border: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-cart .coupon button:hover,
body.woocommerce-cart button[name="update_cart"]:hover {
    border-color: var(--flezzora-lavender) !important;
    background: var(--flezzora-lavender-soft) !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    padding: 26px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-cart .cart_totals h2 {
    margin-top: 0 !important;
    font-size: 28px !important;
}

body.woocommerce-cart .cart_totals table {
    border: 0 !important;
    background: transparent !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 12px 18px !important;
    background: var(--flezzora-text, #2e2b29) !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--flezzora-lavender, #b8aedc) !important;
}

/* Try to soften PayPal smart-button wrapper without touching the gateway. */
body.woocommerce-cart .paypal-buttons,
body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons {
    border-radius: 14px !important;
    overflow: hidden !important;
}

/* ---------- 3) Checkout ---------- */
body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .checkout.woocommerce-checkout {
    color: var(--flezzora-text) !important;
}

body.woocommerce-checkout .checkout.woocommerce-checkout {
    gap: 28px !important;
}

body.woocommerce-checkout .col2-set,
body.woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 26px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-checkout h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    font-family: var(--flezzora-heading-font, Georgia, serif) !important;
    font-weight: 400 !important;
    color: var(--flezzora-text) !important;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 46px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
    box-shadow: none !important;
}

body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
    border-color: var(--flezzora-lavender) !important;
    box-shadow: 0 0 0 3px rgba(184,174,220,.16) !important;
    outline: none !important;
}

body.woocommerce-checkout #order_review .shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: var(--flezzora-surface) !important;
}

body.woocommerce-checkout #order_review .shop_table th,
body.woocommerce-checkout #order_review .shop_table td {
    padding: 13px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-checkout #payment {
    margin-top: 18px !important;
    padding: 18px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 16px !important;
    background: #fcfaf7 !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-checkout #payment .place-order button,
body.woocommerce-checkout #payment #place_order {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 50px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: var(--flezzora-text, #2e2b29) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout #payment #place_order:hover {
    background: var(--flezzora-lavender, #b8aedc) !important;
}

/* Express-payment blocks: keep the gateway functional but visually contained. */
body.woocommerce-checkout .wc-block-components-express-payment,
body.woocommerce-checkout .wc_payment_methods + .paypal-buttons,
body.woocommerce-checkout .paypal-buttons {
    border-radius: 14px !important;
    overflow: hidden !important;
}

/* ---------- 4) Pay-for-order / order-payment screen ---------- */
body.woocommerce-order-pay .woocommerce {
    padding-bottom: 64px !important;
}

body.woocommerce-order-pay .woocommerce-order-pay {
    padding: 28px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-order-pay .order_details {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    border-top: 1px solid var(--flezzora-border) !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-order-pay .order_details li {
    flex: 1 1 180px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 16px 18px !important;
    border-right: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-order-pay .order_details li:last-child { border-right: 0 !important; }

body.woocommerce-order-pay .woocommerce-order-pay .button,
body.woocommerce-order-pay .woocommerce-order-pay button,
body.woocommerce-order-pay form .button,
body.woocommerce-order-pay form button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    margin: 0 10px 0 0 !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    background: var(--flezzora-lavender, #b8aedc) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.woocommerce-order-pay .woocommerce-order-pay .button:hover,
body.woocommerce-order-pay .woocommerce-order-pay button:hover,
body.woocommerce-order-pay form .button:hover,
body.woocommerce-order-pay form button:hover {
    background: var(--flezzora-text, #2e2b29) !important;
}

/* ---------- 5) My Account > Orders action buttons ---------- */
body.woocommerce-account .woocommerce-orders-table .woocommerce-button,
body.woocommerce-account .woocommerce-orders-table a.woocommerce-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 58px !important;
    min-height: 34px !important;
    padding: 7px 11px !important;
    margin: 0 5px 5px 0 !important;
    border-radius: 9px !important;
    background: var(--flezzora-lavender, #b8aedc) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover,
body.woocommerce-account .woocommerce-orders-table a.woocommerce-button:hover {
    background: var(--flezzora-text, #2e2b29) !important;
}

body.woocommerce-account .woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions,
body.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions {
    white-space: normal !important;
    width: 1% !important;
}

@media (max-width: 900px) {
    body.woocommerce-cart .cart-collaterals .cart_totals { width: 100% !important; }
    body.woocommerce-order-pay .order_details li { flex-basis: 50% !important; border-bottom: 1px solid var(--flezzora-border) !important; }
    body.woocommerce-order-pay .order_details li:nth-child(2n) { border-right: 0 !important; }
}

@media (max-width: 640px) {
    body.single-product .woocommerce-message,
    body.woocommerce-cart .woocommerce-message,
    body.woocommerce-checkout .woocommerce-message,
    body.woocommerce-order-pay .woocommerce-message {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    body.single-product .woocommerce-message a.button,
    body.woocommerce-cart .woocommerce-message a.button,
    body.woocommerce-checkout .woocommerce-message a.button,
    body.woocommerce-order-pay .woocommerce-message a.button {
        width: 100% !important;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals,
    body.woocommerce-checkout .col2-set,
    body.woocommerce-checkout .woocommerce-checkout-review-order,
    body.woocommerce-order-pay .woocommerce-order-pay {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-order-pay .order_details li {
        flex-basis: 100% !important;
        border-right: 0 !important;
    }

    body.woocommerce-account .woocommerce-orders-table .woocommerce-button,
    body.woocommerce-account .woocommerce-orders-table a.woocommerce-button {
        min-width: 52px !important;
        padding: 6px 9px !important;
        margin-right: 4px !important;
    }
}


/* =========================================================
   FLEZZORA — FINAL TRANSACTIONAL POLISH v6
   Scoped only to WooCommerce notice/cart/checkout screens.
   ========================================================= */

/* 1) Add-to-cart notice: icon | message | button */
body.single-product .woocommerce-message,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-order-pay .woocommerce-message {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 24px 0 30px !important;
    padding: 12px 16px 12px 52px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-top: 1px solid var(--flezzora-border) !important;
    outline: 0 !important;
    border-radius: 18px !important;
    background: var(--flezzora-lavender-soft) !important;
    color: var(--flezzora-text) !important;
    box-shadow: 0 10px 28px rgba(45,40,35,.045) !important;
    overflow: hidden !important;
}

body.single-product .woocommerce-message::before,
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-order-pay .woocommerce-message::before {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    color: #ffffff !important;
    background: var(--flezzora-lavender) !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    line-height: 20px !important;
    flex: none !important;
}

body.single-product .woocommerce-message > .button,
body.woocommerce-cart .woocommerce-message > .button,
body.woocommerce-checkout .woocommerce-message > .button,
body.woocommerce-order-pay .woocommerce-message > .button {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    min-width: 108px !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: var(--flezzora-lavender) !important;
    color: #fff !important;
    text-align: center !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

/* 2) Cart page — make the actual WooCommerce regions visibly themed */
body.woocommerce-cart .flezzora-woocommerce > .container > .woocommerce {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 8px 0 72px !important;
}

body.woocommerce-cart .woocommerce-cart-form {
    overflow-x: auto !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table.cart {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 20px !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table.cart thead th {
    padding: 18px 20px !important;
    background: #f6f1ec !important;
    color: var(--flezzora-muted) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 10px !important;
    letter-spacing: .15em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table.cart td {
    padding: 20px !important;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail img {
    width: 82px !important;
    height: 82px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    border: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    color: var(--flezzora-muted) !important;
    background: #f8f4ef !important;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a:hover {
    color: var(--flezzora-text) !important;
    background: var(--flezzora-lavender-soft) !important;
}

body.woocommerce-cart .woocommerce-cart-form .quantity {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 96px !important;
    padding: 2px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
}

body.woocommerce-cart .woocommerce-cart-form .quantity .qty {
    width: 56px !important;
    min-height: 36px !important;
    border: 0 !important;
    background: transparent !important;
    outline: 0 !important;
}

body.woocommerce-cart .cart-collaterals {
    margin-top: 24px !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
    float: none !important;
    width: min(100%, 480px) !important;
    margin-left: auto !important;
    padding: 28px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 18px !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: 30px !important;
    font-weight: 400 !important;
}

body.woocommerce-cart .cart_totals .shop_table {
    border: 0 !important;
    background: transparent !important;
}

body.woocommerce-cart .cart_totals .shop_table th,
body.woocommerce-cart .cart_totals .shop_table td {
    padding: 12px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--flezzora-border) !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding-bottom: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    margin-top: 16px !important;
    min-height: 52px !important;
    border-radius: 13px !important;
    background: var(--flezzora-lavender) !important;
    color: #fff !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--color-button-hover) !important;
}

body.woocommerce-cart .coupon,
body.woocommerce-cart .actions {
    background: #fcfaf7 !important;
}

body.woocommerce-cart .coupon .button,
body.woocommerce-cart button[name="update_cart"] {
    min-height: 42px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
}

/* 3) Checkout — distinct left/right cards and consistent field styling */
body.woocommerce-checkout .flezzora-woocommerce > .container > .woocommerce {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 8px 0 72px !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr) !important;
    gap: 28px !important;
    align-items: start !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout::before,
body.woocommerce-checkout form.checkout.woocommerce-checkout::after {
    display: none !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details,
body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review {
    width: 100% !important;
    float: none !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    padding: 28px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 20px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading {
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 28px 28px 0 !important;
    border: 1px solid var(--flezzora-border) !important;
    border-bottom: 0 !important;
    border-radius: 20px 20px 0 0 !important;
    background: var(--flezzora-surface) !important;
    font-family: var(--flezzora-heading-font) !important;
    font-size: 30px !important;
    font-weight: 400 !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review {
    grid-column: 2 !important;
    margin-top: 0 !important;
    padding: 0 28px 28px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-top: 0 !important;
    border-radius: 0 0 20px 20px !important;
    background: var(--flezzora-surface) !important;
    box-shadow: 0 16px 40px rgba(45,40,35,.035) !important;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout .woocommerce-checkout-review-order h3 {
    font-family: var(--flezzora-heading-font) !important;
    font-size: 26px !important;
    font-weight: 400 !important;
}

body.woocommerce-checkout .form-row {
    margin-bottom: 16px !important;
}

body.woocommerce-checkout .form-row label {
    margin-bottom: 7px !important;
    color: var(--flezzora-text) !important;
    font-family: var(--flezzora-body-font) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 48px !important;
    padding: 11px 13px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--flezzora-text) !important;
}

body.woocommerce-checkout #order_review .shop_table {
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fff !important;
}

body.woocommerce-checkout #order_review .shop_table th,
body.woocommerce-checkout #order_review .shop_table td {
    padding: 14px !important;
    border-color: var(--flezzora-border) !important;
}

body.woocommerce-checkout #payment {
    margin-top: 18px !important;
    padding: 18px !important;
    border: 1px solid var(--flezzora-border) !important;
    border-radius: 16px !important;
    background: #fcfaf7 !important;
}

body.woocommerce-checkout #payment #place_order {
    min-height: 52px !important;
    margin-top: 10px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: var(--flezzora-lavender) !important;
    color: #fff !important;
    font-family: var(--flezzora-body-font) !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout #payment #place_order:hover {
    background: var(--color-button-hover) !important;
}

@media (max-width: 900px) {
    body.woocommerce-checkout form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr !important;
    }
    body.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details,
    body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review {
        grid-column: 1 !important;
    }
}

@media (max-width: 640px) {
    body.single-product .woocommerce-message,
    body.woocommerce-cart .woocommerce-message,
    body.woocommerce-checkout .woocommerce-message,
    body.woocommerce-order-pay .woocommerce-message {
        min-height: 54px !important;
        padding: 12px 12px 12px 48px !important;
        gap: 10px !important;
    }
    body.single-product .woocommerce-message > .button,
    body.woocommerce-cart .woocommerce-message > .button,
    body.woocommerce-checkout .woocommerce-message > .button,
    body.woocommerce-order-pay .woocommerce-message > .button {
        min-width: 92px !important;
        padding-inline: 12px !important;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals {
        width: 100% !important;
        padding: 20px !important;
    }
    body.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details,
    body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review,
    body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}
