/*
Theme Name: Luartmoon
Theme URI: https://luartmoon.com
Description: Custom theme for Luartmoon — amigurumi crochet patterns & plushies
Author: Luartmoon
Author URI: https://luartmoon.com
Version: 2.0.0
Text Domain: luartmoon
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    --lm-yellow: #FFF4CC;
    --lm-yellow-mid: #FFE999;
    --lm-pink: #FFD6E0;
    --lm-pink-mid: #FFB8CA;
    --lm-purple: #E8D5F5;
    --lm-purple-mid: #D4B8E0;
    --lm-purple-dark: #B48EC7;
    --lm-text: #4A4A4A;
    --lm-text-light: #8A8A8A;
    --lm-bg: #FFFBF7;
    --lm-white: #FFFFFF;
    --lm-radius: 16px;
    --lm-radius-sm: 10px;
    --lm-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --lm-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.10);
    --lm-max-width: 1100px;
    --lm-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */

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

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

a,
a:visited,
a:active {
    color: var(--lm-purple-dark);
}

a:hover {
    color: var(--lm-pink-mid);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* Selection / highlight color */
::selection {
    background-color: var(--lm-purple);
    color: var(--lm-text);
}

::-moz-selection {
    background-color: var(--lm-purple);
    color: var(--lm-text);
}

/* ==========================================================================
   Custom Header
   ========================================================================== */

.lm-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--lm-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.lm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.lm-header__logo {
    font-family: var(--lm-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.lm-header__logo:visited {
    color: var(--lm-purple-dark);
}

.lm-header__logo img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.lm-header__logo:hover {
    color: #A07AB5;
}

.lm-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lm-header__nav a {
    font-family: var(--lm-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lm-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lm-header__nav a:visited {
    color: var(--lm-text);
}

.lm-header__nav a:hover {
    color: var(--lm-purple-dark);
}

.lm-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lm-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lm-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lm-header__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lm-header__toggle--active span:nth-child(2) {
    opacity: 0;
}

.lm-header__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Custom Footer
   ========================================================================== */

.lm-footer {
    background: #3D3347;
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 0;
}

.lm-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lm-footer__logo {
    font-family: var(--lm-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lm-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.lm-footer__logo img {
    height: 28px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.lm-footer__logo:visited {
    color: var(--lm-white);
}

.lm-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.lm-footer__links h4,
.lm-footer__social h4 {
    font-family: var(--lm-font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lm-white);
    margin-bottom: 16px;
}

.lm-footer__links a,
.lm-footer__social a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.lm-footer__links a:visited,
.lm-footer__social a:visited {
    color: rgba(255, 255, 255, 0.6);
}

.lm-footer__links a:hover,
.lm-footer__social a:hover {
    color: var(--lm-white);
}

.lm-footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.lm-footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin-bottom: 8px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.lm-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.lm-container {
    max-width: var(--lm-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.lm-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lm-section--alt {
    background-color: var(--lm-white);
}

/* Background decorations — subtle radial gradient orbs on every section */
.lm-section::before {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--lm-pink) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    opacity: 0.3;
}

.lm-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lm-purple) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
    opacity: 0.25;
}

/* Alternate sections get different orb colors */
.lm-section--alt::before {
    background: radial-gradient(circle, var(--lm-yellow) 0%, transparent 70%);
    top: auto;
    bottom: -60px;
    right: auto;
    left: -50px;
}

.lm-section--alt::after {
    background: radial-gradient(circle, var(--lm-pink-mid) 0%, transparent 70%);
    bottom: auto;
    top: -40px;
    left: auto;
    right: -30px;
}

.lm-section__title {
    font-family: var(--lm-font);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--lm-text);
    position: relative;
    z-index: 1;
}

.lm-section__subtitle {
    text-align: center;
    color: var(--lm-text-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.lm-section__action {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.lm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--lm-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.lm-btn--primary {
    background-color: var(--lm-purple-dark);
    color: var(--lm-white);
}

.lm-btn--primary:visited {
    color: var(--lm-white);
}

.lm-btn--primary:hover {
    background-color: #A07AB5;
    color: var(--lm-white);
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-btn--soft {
    background-color: var(--lm-purple);
    color: var(--lm-purple-dark);
    border: 2px solid var(--lm-purple-mid);
}

.lm-btn--soft:visited {
    color: var(--lm-purple-dark);
}

.lm-btn--soft:hover {
    background-color: var(--lm-purple-mid);
    color: var(--lm-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-btn--secondary {
    background-color: var(--lm-white);
    color: var(--lm-purple-dark);
    border: 2px solid var(--lm-purple-mid);
}

.lm-btn--secondary:visited {
    color: var(--lm-purple-dark);
}

.lm-btn--secondary:hover {
    background-color: var(--lm-purple);
    color: var(--lm-purple-dark);
    transform: translateY(-2px);
}

.lm-btn--muted {
    background-color: var(--lm-purple);
    color: var(--lm-text-light);
    cursor: default;
    opacity: 0.7;
}

.lm-btn--muted:hover {
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.lm-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--lm-pink) 0%, var(--lm-purple) 50%, var(--lm-yellow) 100%);
    padding: 100px 0 80px;
}

.lm-hero::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--lm-yellow);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    opacity: 0.35;
    pointer-events: none;
}

.lm-hero::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--lm-pink-mid);
    border-radius: 50%;
    bottom: -80px;
    left: 5%;
    opacity: 0.3;
    pointer-events: none;
}

.lm-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lm-hero__eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lm-purple-dark);
    margin-bottom: 16px;
}

.lm-hero__title {
    font-family: var(--lm-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--lm-text);
    margin-bottom: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lm-hero__subtitle {
    font-size: 1.2rem;
    color: var(--lm-text);
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.lm-hero__heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.lm-hero__logo {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.lm-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.lm-hero__cta .lm-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lm-hero__featured {
    max-width: 400px;
    background: linear-gradient(135deg, var(--lm-pink) 0%, var(--lm-purple) 100%);
    border-radius: var(--lm-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    padding: 10px;
    box-shadow: var(--lm-shadow-hover);
    position: relative;
}

.lm-hero__featured img {
    width: 100%;
    display: block;
    border-radius: var(--lm-radius-sm);
    background-color: var(--lm-purple);
    color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.lm-hero__featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lm-purple-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    border: 2px solid var(--lm-purple-mid);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.lm-about__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lm-about__image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--lm-pink) 0%, var(--lm-purple) 100%);
    border-radius: var(--lm-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.lm-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--lm-radius);
}

.lm-placeholder {
    color: var(--lm-purple-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.lm-about__text h2 {
    font-family: var(--lm-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lm-about__text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--lm-text);
    margin-bottom: 16px;
}

.lm-about__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Works Grid
   ========================================================================== */

.lm-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lm-work-card {
    aspect-ratio: 1;
    border-radius: var(--lm-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.lm-work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-work-card img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--lm-purple);
    color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.lm-work-card--pink { background: linear-gradient(145deg, var(--lm-pink) 0%, var(--lm-pink-mid) 100%); border: 2px solid var(--lm-pink-mid); }
.lm-work-card--pink img { background-color: var(--lm-pink); }

.lm-work-card--purple { background: linear-gradient(145deg, var(--lm-purple) 0%, var(--lm-purple-mid) 100%); border: 2px solid var(--lm-purple-mid); }
.lm-work-card--purple img { background-color: var(--lm-purple); }

.lm-work-card--yellow { background: linear-gradient(145deg, var(--lm-yellow) 0%, var(--lm-yellow-mid) 100%); border: 2px solid var(--lm-yellow-mid); }
.lm-work-card--yellow img { background-color: var(--lm-yellow); }

.lm-work-card__label {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lm-text);
    max-width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Pattern Cards
   ========================================================================== */

.lm-patterns__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.lm-pattern-card {
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    box-shadow: var(--lm-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm-pattern-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-pattern-card__image {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-pattern-card__image svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.lm-pattern-card__image--purple {
    background: linear-gradient(145deg, var(--lm-purple), var(--lm-purple-mid));
    color: var(--lm-purple-dark);
}

.lm-pattern-card__image--pink {
    background: linear-gradient(145deg, var(--lm-pink), var(--lm-pink-mid));
    color: #c97a93;
}

.lm-pattern-card__image--yellow {
    background: linear-gradient(145deg, var(--lm-yellow), var(--lm-yellow-mid));
    color: #b5a14d;
}

.lm-pattern-card__info {
    padding: 20px;
}

.lm-pattern-card__title {
    font-family: var(--lm-font);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--lm-text);
}

.lm-pattern-card__desc {
    font-size: 0.85rem;
    color: var(--lm-text-light);
    margin-bottom: 0;
}

a.lm-pattern-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lm-pattern-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lm-pattern-card__price {
    font-family: var(--lm-font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
}

/* ==========================================================================
   Latest Grid
   ========================================================================== */

.lm-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lm-latest__grid .lm-work-card {
    aspect-ratio: 4 / 5;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.lm-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.lm-service-card {
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    padding: 40px 32px;
    box-shadow: var(--lm-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lm-service-card__icon--patterns {
    background: var(--lm-purple);
}

.lm-service-card__icon--commissions {
    background: var(--lm-pink);
}

.lm-service-card h3 {
    font-family: var(--lm-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lm-service-card p {
    color: var(--lm-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.lm-service-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.lm-service-card ul li {
    padding: 4px 0;
    color: var(--lm-text-light);
    font-size: 0.95rem;
}

.lm-service-card ul li::before {
    content: '\2022';
    color: var(--lm-purple-dark);
    font-weight: 700;
    margin-right: 8px;
}

.lm-service-card__contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lm-text);
    margin-top: 20px;
    margin-bottom: 12px;
}

.lm-service-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Social pills inside service card — compact, 2 per row */
.lm-service-card__actions .lm-social-link {
    background: var(--lm-purple);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    gap: 6px;
}

.lm-service-card__actions .lm-social-link svg {
    width: 16px;
    height: 16px;
}

.lm-service-card__actions .lm-social-link:hover {
    background: var(--lm-purple-mid);
}

/* ==========================================================================
   Universes Section
   ========================================================================== */

.lm-universes__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.lm-tag {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--lm-white);
    color: var(--lm-text);
    box-shadow: var(--lm-shadow);
    transition: all 0.25s ease;
}

.lm-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-tag--pink { border: 2px solid var(--lm-pink-mid); }
.lm-tag--purple { border: 2px solid var(--lm-purple-mid); }
.lm-tag--yellow { border: 2px solid var(--lm-yellow-mid); }

/* ==========================================================================
   Connect / Social Section
   ========================================================================== */

.lm-connect {
    text-align: center;
    background: linear-gradient(145deg, var(--lm-purple) 0%, var(--lm-pink) 100%);
}

/* Hide section orbs on the gradient connect section — already colorful */
.lm-connect::before,
.lm-connect::after {
    opacity: 0;
}

.lm-social__links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.lm-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    text-decoration: none;
    color: var(--lm-text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.lm-social-link:visited {
    color: var(--lm-text);
}

.lm-social-link:hover {
    background: var(--lm-white);
    color: var(--lm-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.lm-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Works Library Page
   ========================================================================== */

.lm-works-hero {
    background: linear-gradient(145deg, var(--lm-purple) 0%, var(--lm-pink) 50%, var(--lm-yellow) 100%);
    padding: 80px 0 60px;
}

.lm-works-search-wrap {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lm-works-search__icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--lm-purple-dark);
    pointer-events: none;
    opacity: 0.6;
}

.lm-works-search {
    width: 100%;
    padding: 14px 24px 14px 50px;
    border: 2px solid var(--lm-purple-mid);
    border-radius: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--lm-font);
    font-size: 0.95rem;
    color: var(--lm-text);
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(180, 142, 199, 0.12);
}

.lm-works-search:focus {
    background: var(--lm-white);
    border-color: var(--lm-purple-dark);
    box-shadow: 0 4px 24px rgba(180, 142, 199, 0.25);
}

.lm-works-search::placeholder {
    color: var(--lm-text-light);
}

/* Library grid — allow more columns for large collections */
.lm-works__grid--library {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
}

.lm-works-empty {
    text-align: center;
    color: var(--lm-text-light);
    font-size: 1.05rem;
    padding: 40px 0;
}

/* ==========================================================================
   Works Filter Tabs
   ========================================================================== */

.lm-works-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.lm-works-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--lm-font);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--lm-purple-mid);
    background: var(--lm-white);
    color: var(--lm-text);
    cursor: pointer;
    transition: all 0.25s ease;
}

.lm-works-tab:hover {
    background: var(--lm-purple);
    border-color: var(--lm-purple-mid);
}

.lm-works-tab--active {
    background: var(--lm-purple);
    border-color: var(--lm-purple-mid);
    color: var(--lm-purple-dark);
}

/* ==========================================================================
   Works Featured Row
   ========================================================================== */

.lm-works-featured {
    max-width: 880px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.lm-works-featured__title {
    font-family: var(--lm-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lm-text);
    margin-bottom: 20px;
    text-align: center;
}

.lm-works-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lm-works-featured__grid .lm-work-card {
    aspect-ratio: 4 / 5;
}

/* ==========================================================================
   Custom Orders Section
   ========================================================================== */

.lm-custom-order {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lm-custom-order__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.lm-custom-order__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lm-purple);
    color: var(--lm-purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lm-font);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lm-custom-order__step h3 {
    font-family: var(--lm-font);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.lm-custom-order__step p {
    color: var(--lm-text-light);
    line-height: 1.6;
    margin: 0;
}

.lm-custom-order .lm-section__action .lm-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lm-lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lm-lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lm-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--lm-white);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lm-lightbox__close:hover {
    opacity: 1;
}

.lm-lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 90vw;
    max-height: 85vh;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    position: relative;
}

.lm-lightbox--open .lm-lightbox__content {
    transform: scale(1);
}

/* Spinner shown while image loads */
.lm-lightbox__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--lm-white);
    border-radius: 50%;
    animation: lm-spin 0.7s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

@keyframes lm-spin {
    to { transform: rotate(360deg); }
}

.lm-lightbox__content img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--lm-radius);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
    transition: opacity 0.25s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.lm-lightbox__label {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--lm-font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lm-text);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .lm-works__grid--library {
        grid-template-columns: repeat(3, 1fr);
    }

    .lm-hero__title {
        font-size: 3rem;
    }

    .lm-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .lm-header__toggle {
        display: flex;
    }

    .lm-header__nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--lm-white);
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .lm-header__nav--open {
        display: flex;
    }

    .lm-header__nav a {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .lm-hero {
        padding: 80px 0 60px;
    }

    .lm-hero__heading {
        flex-direction: column;
        text-align: center;
    }

    .lm-hero__logo {
        height: auto;
        width: 25vw;
    }

    .lm-hero__title {
        font-size: 2.6rem;
    }

    .lm-section {
        padding: 56px 0;
    }

    .lm-section__title {
        font-size: 1.6rem;
    }

    .lm-about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lm-about__image {
        max-width: 320px;
        margin: 0 auto;
    }

    .lm-about__text {
        text-align: center;
    }

    .lm-works__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lm-patterns__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lm-latest__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lm-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lm-social__links {
        flex-direction: column;
        align-items: center;
    }

    .lm-social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .lm-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .lm-works__grid--library {
        grid-template-columns: repeat(2, 1fr);
    }

    .lm-works-tab {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .lm-works-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lm-lightbox__content img {
        max-width: 95vw;
        max-height: 75vh;
        border-radius: var(--lm-radius-sm);
    }

    .lm-lightbox__close {
        top: 12px;
        right: 12px;
    }

    .lm-works-search-wrap {
        max-width: 100%;
    }

    .lm-works-hero {
        padding: 56px 0 40px;
    }
}

@media (max-width: 480px) {
    .lm-hero__title {
        font-size: 2.1rem;
    }

    .lm-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .lm-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
    }

    .lm-works__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lm-patterns__grid {
        grid-template-columns: 1fr;
    }

    .lm-latest__grid {
        grid-template-columns: 1fr;
    }

    .lm-works-tab {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .lm-works-featured__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .lm-work-card__label {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .lm-service-card__actions {
        flex-direction: column;
    }

    .lm-service-card__actions .lm-social-link {
        justify-content: center;
    }
}

/* ==========================================================================
   WooCommerce — General Resets
   ========================================================================== */

.woocommerce,
.woocommerce-page {
    font-family: var(--lm-font);
    color: var(--lm-text);
}

.woocommerce .lm-container {
    position: relative;
    z-index: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    font-family: var(--lm-font);
    font-size: 0.85rem;
    color: var(--lm-text-light);
}

.woocommerce .woocommerce-breadcrumb {
    display: none;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    font-family: var(--lm-font);
    border-top-color: var(--lm-purple-dark);
    background: var(--lm-white);
    color: var(--lm-text);
    border-radius: var(--lm-radius-sm);
    padding: 16px 20px;
    line-height: 1.6;
}

.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
    color: var(--lm-purple-dark);
}

.woocommerce .woocommerce-error {
    border-top-color: #e74c3c;
}

.woocommerce .woocommerce-error::before {
    color: #e74c3c;
}

.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-message a {
    color: var(--lm-purple-dark);
}

/* ==========================================================================
   WooCommerce — Buttons (global)
   ========================================================================== */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--lm-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    background-color: var(--lm-purple-dark);
    color: var(--lm-white);
    line-height: 1;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover {
    background-color: #A07AB5;
    color: var(--lm-white);
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt:disabled,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt:disabled {
    background-color: var(--lm-purple-mid);
    color: var(--lm-white);
    opacity: 0.6;
    cursor: not-allowed;
    padding: 14px 32px;
}

/* ==========================================================================
   WooCommerce — Shop Page (Product Grid)
   ========================================================================== */

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    overflow: hidden;
    box-shadow: var(--lm-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--lm-shadow-hover);
}

.woocommerce ul.products li.product a img {
    margin-bottom: 0;
    border-radius: var(--lm-radius) var(--lm-radius) 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--lm-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lm-text);
    padding: 16px 16px 4px;
}

.woocommerce ul.products li.product .price {
    font-family: var(--lm-font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
    padding: 0 16px;
    display: block;
}

.woocommerce ul.products li.product .price del {
    color: var(--lm-text-light);
    opacity: 0.6;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 700;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: 12px 16px 16px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
}

.woocommerce ul.products li.product .onsale {
    background: var(--lm-pink-mid);
    color: var(--lm-white);
    font-family: var(--lm-font);
    font-weight: 600;
    border-radius: 50px;
    padding: 4px 12px;
    min-width: auto;
    min-height: auto;
    line-height: 1.6;
    top: 12px;
    right: 12px;
    left: auto;
}

/* ==========================================================================
   WooCommerce — Single Product Page
   ========================================================================== */

.woocommerce div.product {
    position: relative;
}

.woocommerce div.product div.images {
    border-radius: var(--lm-radius);
    overflow: hidden;
    box-shadow: var(--lm-shadow);
}

.woocommerce div.product div.images img {
    border-radius: var(--lm-radius);
}

.woocommerce div.product .product_title {
    font-family: var(--lm-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lm-text);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--lm-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lm-text);
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    margin-bottom: 12px;
}

.woocommerce div.product form.cart {
    margin-top: 24px;
    margin-bottom: 24px;
}

.woocommerce div.product form.cart .quantity .qty {
    font-family: var(--lm-font);
    border: 2px solid var(--lm-purple-mid);
    border-radius: var(--lm-radius-sm);
    padding: 10px 12px;
    width: 70px;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.woocommerce div.product form.cart .quantity .qty:focus {
    border-color: var(--lm-purple-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 142, 199, 0.2);
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    padding: 14px 40px;
}

.woocommerce div.product .woocommerce-tabs {
    margin-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
    display: flex;
    gap: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--lm-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lm-text-light);
    padding: 12px 20px;
    display: block;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--lm-purple-dark);
    border-bottom-color: var(--lm-purple-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--lm-purple-dark);
}

.woocommerce div.product .woocommerce-tabs .panel {
    font-family: var(--lm-font);
    line-height: 1.7;
    color: var(--lm-text);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-family: var(--lm-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ==========================================================================
   WooCommerce — Cart Page
   ========================================================================== */

.woocommerce-cart .woocommerce table.shop_table {
    border: none;
    border-radius: var(--lm-radius);
    overflow: hidden;
    box-shadow: var(--lm-shadow);
}

.woocommerce-cart .woocommerce table.shop_table th {
    font-family: var(--lm-font);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lm-text-light);
    background: var(--lm-bg);
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
}

.woocommerce-cart .woocommerce table.shop_table td {
    font-family: var(--lm-font);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px 20px;
    vertical-align: middle;
}

.woocommerce-cart .woocommerce table.shop_table td.product-name a {
    font-weight: 600;
    color: var(--lm-text);
    text-decoration: none;
}

.woocommerce-cart .woocommerce table.shop_table td.product-name a:hover {
    color: var(--lm-purple-dark);
}

.woocommerce-cart .woocommerce table.shop_table img {
    width: 64px;
    border-radius: var(--lm-radius-sm);
}

.woocommerce-cart .woocommerce .cart_totals {
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    padding: 24px;
}

.woocommerce-cart .woocommerce .cart_totals h2 {
    font-family: var(--lm-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.woocommerce-cart .woocommerce .cart_totals table {
    border: none;
}

.woocommerce-cart .woocommerce .cart_totals table th,
.woocommerce-cart .woocommerce .cart_totals table td {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    font-family: var(--lm-font);
}

.woocommerce-cart .woocommerce .cart_totals .order-total .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
}

.woocommerce a.remove {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 700;
}

.woocommerce a.remove:hover {
    color: var(--lm-white);
    background: #e74c3c;
}

/* "Continue Shopping" link style */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block;
    padding: 16px 32px;
    font-size: 1rem;
    text-align: center;
}

/* ==========================================================================
   WooCommerce — Checkout Page
   ========================================================================== */

.woocommerce-checkout .woocommerce form .form-row label {
    font-family: var(--lm-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lm-text);
}

.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select,
.woocommerce form .form-row .select2-container .select2-selection--single {
    font-family: var(--lm-font);
    font-size: 0.95rem;
    padding: 12px 18px;
    border: 2px solid var(--lm-purple-mid);
    border-radius: var(--lm-radius-sm);
    background: var(--lm-white);
    color: var(--lm-text);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout .woocommerce form .form-row textarea:focus,
.woocommerce-checkout .woocommerce form .form-row select:focus {
    border-color: var(--lm-purple-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 142, 199, 0.2);
}

.woocommerce form .form-row .select2-container .select2-selection--single {
    height: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: var(--lm-font);
    color: var(--lm-text);
    line-height: 1.4;
    padding: 0;
}

.woocommerce-checkout h3 {
    font-family: var(--lm-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lm-text);
    margin-bottom: 20px;
}

.woocommerce-checkout #order_review_heading {
    font-family: var(--lm-font);
    font-size: 1.4rem;
    font-weight: 700;
}

.woocommerce-checkout .woocommerce table.shop_table {
    border: none;
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    overflow: hidden;
}

.woocommerce-checkout .woocommerce table.shop_table th,
.woocommerce-checkout .woocommerce table.shop_table td {
    font-family: var(--lm-font);
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.woocommerce-checkout .woocommerce table.shop_table tfoot .order-total .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lm-purple-dark);
}

.woocommerce-checkout .woocommerce #payment {
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    padding: 24px;
}

.woocommerce-checkout .woocommerce #payment ul.payment_methods {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce #payment ul.payment_methods li {
    font-family: var(--lm-font);
}

.woocommerce-checkout .woocommerce #payment .place-order .button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    text-align: center;
}

.woocommerce-checkout .woocommerce #payment div.payment_box {
    background: var(--lm-bg);
    border-radius: var(--lm-radius-sm);
    color: var(--lm-text);
    font-family: var(--lm-font);
    font-size: 0.9rem;
}

.woocommerce-checkout .woocommerce #payment div.payment_box::before {
    border-bottom-color: var(--lm-bg);
}

/* ==========================================================================
   WooCommerce — Thank You / Order Received
   ========================================================================== */

.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-family: var(--lm-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lm-purple-dark);
    text-align: center;
    padding: 24px;
    background: var(--lm-purple);
    border-radius: var(--lm-radius);
    margin-bottom: 32px;
}

.woocommerce-order-received .woocommerce-order-overview {
    font-family: var(--lm-font);
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    padding: 24px;
    list-style: none;
    margin-bottom: 32px;
}

.woocommerce-order-received .woocommerce-order-overview li {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
}

.woocommerce-order-received .woocommerce-order-overview li:last-child {
    border-right: none;
}

.woocommerce-order-received .woocommerce-order-details {
    font-family: var(--lm-font);
}

.woocommerce-order-received .woocommerce-order-downloads table {
    border: none;
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    overflow: hidden;
}

.woocommerce-order-received .woocommerce-order-downloads table th {
    font-family: var(--lm-font);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lm-text-light);
    background: var(--lm-bg);
    padding: 14px 20px;
}

.woocommerce-order-received .woocommerce-order-downloads table td {
    font-family: var(--lm-font);
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.woocommerce-order-received .woocommerce-order-downloads .button {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ==========================================================================
   WooCommerce — My Account Page
   ========================================================================== */

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: var(--lm-white);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    font-family: var(--lm-font);
    display: block;
    padding: 14px 20px;
    color: var(--lm-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--lm-purple);
    color: var(--lm-purple-dark);
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--lm-bg);
    color: var(--lm-purple-dark);
}

/* ==========================================================================
   WooCommerce — Star Rating
   ========================================================================== */

.woocommerce .star-rating span::before {
    color: var(--lm-purple-dark);
}

/* ==========================================================================
   WooCommerce — Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.9rem;
        padding: 12px 12px 4px;
    }

    .woocommerce ul.products li.product .price {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .woocommerce ul.products li.product .button {
        margin: 10px 12px 12px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .woocommerce div.product .product_title {
        font-size: 1.5rem;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 1.2rem;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .woocommerce-cart .woocommerce table.shop_table th,
    .woocommerce-cart .woocommerce table.shop_table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .woocommerce-cart .woocommerce table.shop_table img {
        width: 48px;
    }

    .woocommerce-checkout h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .woocommerce ul.products li.product .button {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .woocommerce-order-received .woocommerce-order-overview {
        padding: 16px;
    }

    .woocommerce-order-received .woocommerce-order-overview li {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: block;
        padding: 8px 0;
    }
}
