:root {
    --orelle-green: #0b2823;
    --orelle-gold: #c8a45b;
    --orelle-gold-light: #cfbf8f;
    --orelle-olive: #191f0a;
    --orelle-gold-matte: #6d6640;
    --orelle-cream: #f5f2e8;
    --orelle-sand: #e7dec7;
    --orelle-white: #fffdf8;

    --orelle-font-display: "Cormorant Garamond", "Times New Roman", serif;
    --orelle-font-base: "Manrope", "Segoe UI", sans-serif;

    --orelle-radius-sm: 12px;
    --orelle-radius-md: 18px;
    --orelle-radius-lg: 24px;

    --orelle-shadow-soft: 0 10px 28px rgba(7, 21, 18, 0.14);
    --orelle-shadow-card: 0 16px 40px rgba(8, 24, 20, 0.16);

    --orelle-container: min(1180px, calc(100vw - 2.25rem));
    --orelle-transition: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--orelle-font-base);
    background: radial-gradient(circle at 15% 5%, rgba(207, 191, 143, 0.14), transparent 34%),
        radial-gradient(circle at 95% 10%, rgba(200, 164, 91, 0.1), transparent 28%),
        linear-gradient(180deg, #f7f4eb 0%, #f3efdf 52%, #efe8d4 100%);
    color: var(--orelle-olive);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--orelle-green);
}

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

.orelle-container {
    width: var(--orelle-container);
    margin-inline: auto;
}

.orelle-main {
    min-height: 60vh;
    padding: 2.25rem 0 4rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--orelle-font-display);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--orelle-green);
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

h3 {
    font-size: clamp(1.3rem, 2.1vw, 1.9rem);
}

p {
    margin: 0 0 1rem;
}

.orelle-site-wrap {
    overflow: clip;
}

.orelle-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11, 40, 35, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(207, 191, 143, 0.18);
}

.orelle-header-topbar {
    background: linear-gradient(90deg, var(--orelle-olive) 0%, #1f3014 100%);
    border-bottom: 1px solid rgba(207, 191, 143, 0.22);
    max-height: 40px;
    overflow: hidden;
    transition: max-height var(--orelle-transition), opacity var(--orelle-transition), border-color var(--orelle-transition);
}

.orelle-header-topbar p {
    margin: 0;
    color: var(--orelle-gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.62rem 0;
    text-align: center;
}

.orelle-header-main {
    padding: 0.75rem 0;
    transition: padding var(--orelle-transition);
}

.orelle-header-grid {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(300px, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.orelle-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.orelle-brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    transition: width var(--orelle-transition), height var(--orelle-transition);
}

.orelle-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.orelle-brand-lockup {
    min-width: 0;
    display: grid;
    gap: 0.05rem;
}

.orelle-brand-wordmark {
    font-family: var(--orelle-font-display);
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    color: var(--orelle-gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    transition: font-size var(--orelle-transition), letter-spacing var(--orelle-transition);
}

.orelle-brand-tagline {
    color: rgba(245, 242, 232, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity var(--orelle-transition);
}

.orelle-header.is-compact .orelle-header-topbar {
    max-height: 0;
    opacity: 0;
    border-bottom-color: transparent;
}

.orelle-header.is-compact .orelle-header-main {
    padding: 0.45rem 0;
}

.orelle-header.is-compact .orelle-brand-mark {
    width: 42px;
    height: 42px;
}

.orelle-header.is-compact .orelle-brand-wordmark {
    font-size: clamp(1.32rem, 2vw, 1.8rem);
    letter-spacing: 0.06em;
}

.orelle-header.is-compact .orelle-brand-tagline {
    opacity: 0;
}

.orelle-checkout-focus .orelle-main {
    padding-top: 1.4rem;
}

.orelle-header.orelle-header-checkout {
    background: rgba(9, 31, 27, 0.94);
}

.orelle-header-checkout .orelle-header-main {
    padding: 0.56rem 0;
}

.orelle-header-checkout-grid {
    display: grid;
    grid-template-columns: minmax(220px, auto) 1fr auto;
    align-items: center;
    gap: 0.95rem;
}

.orelle-header-checkout .orelle-brand-tagline {
    opacity: 0.72;
}

.orelle-checkout-trust {
    margin: 0;
    justify-self: center;
    color: rgba(245, 242, 232, 0.86);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.orelle-checkout-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(207, 191, 143, 0.42);
    color: var(--orelle-gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    transition: border-color var(--orelle-transition), background var(--orelle-transition), color var(--orelle-transition);
}

.orelle-checkout-back:hover {
    border-color: var(--orelle-gold-light);
    background: rgba(207, 191, 143, 0.12);
    color: var(--orelle-cream);
}

.orelle-nav {
    justify-self: stretch;
}

.orelle-menu,
.orelle-menu-fallback,
.orelle-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orelle-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
}

.orelle-menu > li {
    position: relative;
}

.orelle-menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 13rem;
    height: 0.75rem;
    transform: translateX(-50%);
}

.orelle-nav .orelle-menu-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
}

.orelle-menu a,
.orelle-nav .orelle-menu-fallback a {
    color: var(--orelle-cream);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.4rem 0;
    position: relative;
}

.orelle-menu > li.menu-item-has-children > a {
    padding-right: 0.98rem;
}

.orelle-menu > li.menu-item-has-children > a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.42rem;
    height: 0.42rem;
    border-right: 1.6px solid rgba(245, 242, 232, 0.88);
    border-bottom: 1.6px solid rgba(245, 242, 232, 0.88);
    transform: translateY(-58%) rotate(45deg);
    transition: transform var(--orelle-transition), border-color var(--orelle-transition);
}

.orelle-menu a::after,
.orelle-nav .orelle-menu-fallback a::after {
    content: "";
    width: 0;
    height: 1px;
    background: var(--orelle-gold);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width var(--orelle-transition);
}

.orelle-menu a:hover::after,
.orelle-menu .current-menu-item > a::after,
.orelle-menu .current-menu-ancestor > a::after,
.orelle-nav .orelle-menu-fallback a:hover::after,
.orelle-nav .orelle-menu-fallback .current_page_item > a::after {
    width: 100%;
}

.orelle-menu > li.menu-item-has-children:hover > a::before,
.orelle-menu > li.menu-item-has-children:focus-within > a::before,
.orelle-menu > li.current-menu-ancestor > a::before {
    transform: translateY(-28%) rotate(225deg);
    border-color: var(--orelle-gold-light);
}

.orelle-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
}

.orelle-menu > li > .sub-menu {
    position: absolute;
    top: calc(100% + 0.18rem);
    left: 50%;
    min-width: 13rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(207, 191, 143, 0.25);
    background: rgba(8, 29, 25, 0.97);
    box-shadow: 0 16px 26px rgba(5, 17, 15, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity var(--orelle-transition), transform var(--orelle-transition), visibility 0s linear 120ms;
    z-index: 30;
}

.orelle-menu > li.menu-item-has-children:hover > .sub-menu,
.orelle-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

.orelle-menu .sub-menu li {
    width: 100%;
}

.orelle-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 0.42rem 0.7rem;
    border-radius: 0.56rem;
    color: rgba(245, 242, 232, 0.94);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.orelle-menu .sub-menu a::after {
    display: none;
}

.orelle-menu .sub-menu a:hover,
.orelle-menu .sub-menu .current-menu-item > a {
    background: rgba(207, 191, 143, 0.14);
    color: var(--orelle-gold-light);
}

.orelle-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.orelle-account-link {
    color: var(--orelle-gold-light);
    border: 1px solid rgba(207, 191, 143, 0.35);
    border-radius: 999px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 0.52rem 0.8rem;
    transition: border-color var(--orelle-transition), background var(--orelle-transition), color var(--orelle-transition);
}

.orelle-account-link:hover {
    border-color: var(--orelle-gold-light);
    background: rgba(207, 191, 143, 0.1);
    color: var(--orelle-cream);
}

.orelle-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: var(--orelle-cream);
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(207, 191, 143, 0.34);
    border-radius: 999px;
    transition: border-color var(--orelle-transition), background var(--orelle-transition);
}

.orelle-cart-link:hover {
    border-color: var(--orelle-gold-light);
    background: rgba(207, 191, 143, 0.12);
}

.orelle-cart-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orelle-cart-count {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #d7c383 0%, #b98f44 100%);
    color: var(--orelle-green);
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-grid;
    place-items: center;
}

.orelle-menu-toggle {
    display: none;
    border: 1px solid rgba(207, 191, 143, 0.5);
    border-radius: 10px;
    background: transparent;
    padding: 0.4rem;
    cursor: pointer;
}

.orelle-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: var(--orelle-cream);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.orelle-hero {
    margin: 1rem 0 1.5rem;
}

.orelle-hero-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    background: linear-gradient(130deg, #0f2f2a 0%, #0b2823 42%, #142f15 100%);
    border-radius: var(--orelle-radius-lg);
    padding: clamp(1.5rem, 3.5vw, 3rem);
    box-shadow: var(--orelle-shadow-card);
    border: 1px solid rgba(207, 191, 143, 0.24);
    position: relative;
    isolation: isolate;
}

.orelle-hero-grid::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(207, 191, 143, 0.22);
    border-radius: calc(var(--orelle-radius-lg) - 9px);
    pointer-events: none;
}

.orelle-hero-copy {
    color: var(--orelle-cream);
}

.orelle-eyebrow {
    margin: 0 0 0.7rem;
    color: var(--orelle-gold-light);
    text-transform: uppercase;
    font-size: 0.77rem;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.orelle-hero h1 {
    color: var(--orelle-cream);
    max-width: 18ch;
}

.orelle-hero-text {
    color: rgba(245, 242, 232, 0.9);
    max-width: 48ch;
    font-size: 1.02rem;
}

.orelle-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.orelle-btn {
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform var(--orelle-transition), box-shadow var(--orelle-transition), background var(--orelle-transition), color var(--orelle-transition);
}

.orelle-btn:hover {
    transform: translateY(-1px);
}

.orelle-btn-primary {
    background: linear-gradient(180deg, #d7c383 0%, #bd9448 100%);
    color: #102c26;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.orelle-btn-primary:hover {
    background: linear-gradient(180deg, #e1d19f 0%, #cba45d 100%);
}

.orelle-btn-secondary {
    border-color: rgba(200, 164, 91, 0.75);
    color: var(--orelle-gold);
    background: rgba(255, 255, 255, 0.02);
}

.orelle-btn-secondary:hover {
    border-color: var(--orelle-gold-light);
    color: var(--orelle-gold-light);
}

.orelle-trust-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
}

.orelle-trust-list li {
    color: rgba(245, 242, 232, 0.84);
    font-size: 0.86rem;
    padding-left: 1.1rem;
    position: relative;
}

.orelle-trust-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orelle-gold);
    position: absolute;
    left: 0;
    top: 0.55em;
}

.orelle-hero-art {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
}

.orelle-hero-art::before {
    content: "";
    inset: auto 8% -4% 8%;
    height: 42%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(207, 191, 143, 0.36) 0%, rgba(207, 191, 143, 0) 70%);
    filter: blur(12px);
    position: absolute;
    z-index: 0;
}

.orelle-hero-art picture {
    width: min(520px, 96%);
    position: relative;
    z-index: 1;
}

.orelle-hero-art img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(207, 191, 143, 0.32);
    box-shadow: 0 20px 36px rgba(4, 13, 11, 0.35);
}

@keyframes orelleFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.orelle-section {
    padding: clamp(2rem, 3.6vw, 3.6rem) 0;
}

.orelle-section-head {
    margin-bottom: 1.5rem;
}

.orelle-section-head h2 {
    max-width: 18ch;
}

.orelle-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.orelle-category-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(245, 242, 232, 0.84) 0%, #f3ebd8 100%);
    border: 1px solid var(--orelle-sand);
    border-radius: var(--orelle-radius-md);
    padding: 1.45rem;
    box-shadow: var(--orelle-shadow-soft);
    transition: transform var(--orelle-transition), border-color var(--orelle-transition), box-shadow var(--orelle-transition);
}

.orelle-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 91, 0.78);
    box-shadow: 0 18px 36px rgba(7, 21, 18, 0.18);
}

.orelle-category-card.has-media {
    min-height: clamp(220px, 32vw, 360px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #2e2414;
    border-color: rgba(207, 191, 143, 0.35);
}

.orelle-category-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.orelle-category-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 8, 5, 0.04) 12%, rgba(10, 8, 5, 0.62) 100%);
}

.orelle-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orelle-category-name {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--orelle-font-display);
    font-size: 1.7rem;
    color: var(--orelle-green);
    margin-bottom: 0.2rem;
}

.orelle-category-meta {
    position: relative;
    z-index: 1;
    color: var(--orelle-gold-matte);
    font-weight: 600;
}

.orelle-category-card.has-media .orelle-category-name {
    color: var(--orelle-white);
}

.orelle-category-card.has-media .orelle-category-meta {
    color: rgba(245, 242, 232, 0.9);
}

.orelle-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.orelle-product-card {
    display: flex;
    flex-direction: column;
    background: rgba(245, 242, 232, 0.88);
    border: 1px solid rgba(231, 222, 199, 0.9);
    border-radius: var(--orelle-radius-md);
    overflow: hidden;
    box-shadow: var(--orelle-shadow-soft);
    transition: transform var(--orelle-transition), box-shadow var(--orelle-transition);
}

.orelle-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(12, 30, 26, 0.18);
}

.orelle-product-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1.12;
    overflow: hidden;
    background: #efe7d3;
}

.orelle-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.orelle-product-card:hover .orelle-product-image-wrap img {
    transform: scale(1.05);
}

.orelle-badge-sale {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--orelle-green);
    color: var(--orelle-gold-light);
    border: 1px solid rgba(207, 191, 143, 0.6);
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.26rem 0.65rem;
}

.orelle-product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
}

.orelle-product-content h3 {
    font-size: 1.3rem;
    margin: 0;
}

.orelle-product-content h3 a {
    color: var(--orelle-green);
}

.orelle-product-price {
    font-family: var(--orelle-font-base);
    color: var(--orelle-gold-matte);
    font-size: 1rem;
    font-weight: 700;
}

.orelle-product-price .amount {
    color: var(--orelle-green);
}

.orelle-product-content .orelle-btn {
    margin-top: auto;
}

.orelle-composition-head h2 {
    max-width: 26ch;
}

.orelle-composition-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 2.2vw, 1.3rem);
}

.orelle-composition-card {
    position: relative;
    display: block;
    min-height: clamp(340px, 44vw, 560px);
    border-radius: var(--orelle-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(207, 191, 143, 0.4);
    box-shadow: var(--orelle-shadow-card);
    transform: translateY(0);
    transition: transform var(--orelle-transition), box-shadow var(--orelle-transition), border-color var(--orelle-transition);
}

.orelle-composition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(6, 18, 16, 0.28);
}

.orelle-composition-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 56%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 8, 10, 0) 0%, rgba(6, 8, 10, 0.74) 80%);
}

.orelle-composition-card.is-sol {
    border-color: rgba(200, 164, 91, 0.55);
}

.orelle-composition-card.is-lua {
    border-color: rgba(199, 206, 222, 0.55);
}

.orelle-composition-media {
    position: absolute;
    inset: 0;
}

.orelle-composition-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 12, 0.05) 6%, rgba(8, 9, 12, 0.46) 100%);
}

.orelle-composition-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.orelle-composition-card:hover .orelle-composition-media img {
    transform: scale(1.05);
}

.orelle-composition-glow {
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 45%;
    pointer-events: none;
    z-index: 2;
}

.orelle-composition-card.is-sol .orelle-composition-glow {
    background: radial-gradient(circle at 12% 100%, rgba(200, 164, 91, 0.55), rgba(200, 164, 91, 0) 62%);
}

.orelle-composition-card.is-lua .orelle-composition-glow {
    background: radial-gradient(circle at 88% 100%, rgba(197, 208, 228, 0.5), rgba(197, 208, 228, 0) 62%);
}

.orelle-composition-panel {
    position: absolute;
    z-index: 3;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem 0.85rem 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(245, 242, 232, 0.28);
    background: linear-gradient(165deg, rgba(12, 17, 24, 0.56) 0%, rgba(8, 12, 18, 0.74) 100%);
    backdrop-filter: blur(5px);
    transition: transform var(--orelle-transition), border-color var(--orelle-transition), background var(--orelle-transition);
}

.orelle-composition-card:hover .orelle-composition-panel {
    transform: translateY(-4px);
    border-color: rgba(245, 242, 232, 0.48);
    background: linear-gradient(165deg, rgba(12, 17, 24, 0.64) 0%, rgba(8, 12, 18, 0.82) 100%);
}

.orelle-composition-kicker {
    margin: 0;
    color: rgba(245, 242, 232, 0.82);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.orelle-composition-panel h3 {
    margin: 0;
    color: var(--orelle-white);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    max-width: 12ch;
}

.orelle-composition-description {
    margin: 0;
    color: rgba(245, 242, 232, 0.87);
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 36ch;
}

.orelle-composition-link {
    margin-top: 0.3rem;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 242, 232, 0.5);
    padding: 0.48rem 0.82rem;
    color: rgba(245, 242, 232, 0.94);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(10, 12, 18, 0.28);
    backdrop-filter: blur(2px);
}

.orelle-composition-center {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(108px, 12vw, 148px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    border: 1px solid rgba(245, 242, 232, 0.62);
    background:
        radial-gradient(circle at 30% 22%, rgba(214, 193, 140, 0.4), rgba(11, 40, 35, 0) 48%),
        linear-gradient(180deg, rgba(7, 18, 19, 0.95) 0%, rgba(9, 24, 25, 0.98) 100%);
    display: grid;
    place-content: center;
    gap: 0.16rem;
    box-shadow:
        0 12px 26px rgba(9, 21, 22, 0.45),
        inset 0 0 0 1px rgba(200, 164, 91, 0.4),
        inset 0 14px 28px rgba(207, 191, 143, 0.18);
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.orelle-composition-center-title {
    display: block;
    text-align: center;
    font-family: var(--orelle-font-display);
    font-size: clamp(0.95rem, 1.2vw, 1.16rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4e5bc;
    text-shadow: 0 1px 2px rgba(5, 10, 12, 0.85);
    line-height: 1.05;
}

.orelle-composition-center-subtitle {
    display: block;
    text-align: center;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 242, 232, 0.88);
    text-shadow: 0 1px 2px rgba(5, 10, 12, 0.8);
    line-height: 1;
}

.orelle-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.orelle-benefits article {
    background: linear-gradient(180deg, #102f2a 0%, #0d2722 100%);
    border: 1px solid rgba(207, 191, 143, 0.24);
    border-radius: var(--orelle-radius-md);
    padding: 1.4rem;
    box-shadow: var(--orelle-shadow-card);
}

.orelle-benefits h3 {
    color: var(--orelle-gold-light);
    margin-bottom: 0.5rem;
}

.orelle-benefits p {
    margin: 0;
    color: rgba(245, 242, 232, 0.88);
}

.orelle-cta-final {
    text-align: center;
}

.orelle-cta-final .orelle-container {
    background: linear-gradient(160deg, #f9f4e8 0%, #f0e6cf 100%);
    border: 1px solid var(--orelle-sand);
    border-radius: var(--orelle-radius-lg);
    padding: clamp(1.4rem, 4vw, 2.5rem);
    box-shadow: var(--orelle-shadow-soft);
}

.orelle-cta-final h2 {
    margin-bottom: 0.45rem;
}

.orelle-cta-final p {
    max-width: 54ch;
    margin: 0 auto 1rem;
}

.orelle-empty-state,
.orelle-empty-state-box {
    border-radius: var(--orelle-radius-md);
    border: 1px dashed rgba(109, 102, 64, 0.4);
    padding: 1.1rem 1.2rem;
    color: #534d34;
    background: rgba(255, 250, 240, 0.62);
}

.orelle-empty-state-box {
    display: grid;
    gap: 0.8rem;
    justify-items: start;
}

.orelle-content-wrap {
    display: grid;
    gap: 1rem;
}

.orelle-page-card,
.orelle-post-card {
    background: rgba(245, 242, 232, 0.84);
    border-radius: var(--orelle-radius-md);
    border: 1px solid var(--orelle-sand);
    padding: clamp(1rem, 2.5vw, 1.8rem);
    box-shadow: var(--orelle-shadow-soft);
}

.orelle-page-card > :last-child,
.orelle-post-card > :last-child {
    margin-bottom: 0;
}

.orelle-footer {
    background: linear-gradient(180deg, #0b2823 0%, #081e1a 100%);
    color: rgba(245, 242, 232, 0.88);
    border-top: 1px solid rgba(207, 191, 143, 0.2);
    margin-top: 2rem;
}

.orelle-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 2.2rem 0;
}

.orelle-footer-grid > section {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    min-width: 0;
}

.orelle-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.orelle-footer-logo {
    display: inline-flex;
    width: clamp(168px, 14vw, 230px);
    max-width: 100%;
}

.orelle-footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.orelle-footer-brand p {
    margin: 0;
    max-width: 34ch;
    line-height: 1.55;
}

.orelle-footer h3,
.orelle-footer h4 {
    color: var(--orelle-gold-light);
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.orelle-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.orelle-footer a {
    color: rgba(245, 242, 232, 0.86);
}

.orelle-footer a:hover {
    color: var(--orelle-gold-light);
}

.orelle-footer-bottom {
    border-top: 1px solid rgba(207, 191, 143, 0.15);
    padding: 0.9rem 0 1.2rem;
}

.orelle-footer-bottom p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(245, 242, 232, 0.72);
}

.orelle-footer.orelle-footer-checkout {
    margin-top: 1.4rem;
    background: linear-gradient(180deg, #0a251f 0%, #081d19 100%);
}

.orelle-footer-checkout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.88rem 0;
}

.orelle-footer-checkout-copy {
    margin: 0;
    color: rgba(245, 242, 232, 0.84);
    font-size: 0.8rem;
}

.orelle-footer-checkout-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.orelle-footer-checkout-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(207, 191, 143, 0.38);
    color: var(--orelle-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.orelle-footer-checkout-nav a:hover {
    border-color: var(--orelle-gold-light);
    background: rgba(207, 191, 143, 0.12);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* WooCommerce */
.orelle-woo-main .woocommerce-notices-wrapper {
    margin-bottom: 1rem;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-radius: var(--orelle-radius-sm);
    border: 1px solid var(--orelle-sand);
    background: rgba(245, 242, 232, 0.9);
    color: var(--orelle-olive);
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 1rem;
    color: #645f42;
}

.orelle-shop-shell {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1rem);
    align-items: start;
}

.orelle-shop-filters {
    background: linear-gradient(180deg, rgba(245, 242, 232, 0.94) 0%, rgba(239, 232, 211, 0.95) 100%);
    border: 1px solid rgba(207, 191, 143, 0.42);
    border-radius: var(--orelle-radius-md);
    padding: 1rem;
    box-shadow: var(--orelle-shadow-soft);
    position: sticky;
    top: calc(88px + 1rem);
}

.orelle-shop-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.orelle-shop-filters-head h2 {
    margin: 0;
    font-size: 1.45rem;
}

.orelle-shop-filters-close {
    border: 1px solid rgba(109, 102, 64, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #3a3725;
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    display: none;
}

.orelle-shop-filters-form {
    display: grid;
    gap: 0.85rem;
}

.orelle-filter-group {
    margin: 0;
    border: 1px solid rgba(109, 102, 64, 0.24);
    border-radius: var(--orelle-radius-sm);
    padding: 0.72rem;
    background: rgba(255, 255, 255, 0.45);
}

.orelle-filter-group legend {
    padding: 0 0.3rem;
    font-weight: 700;
    color: var(--orelle-green);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.orelle-filter-checklist {
    display: grid;
    gap: 0.45rem;
    max-height: 220px;
    overflow: auto;
    padding-right: 0.2rem;
}

.orelle-filter-checklist label {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #37341f;
}

.orelle-filter-checklist input[type="checkbox"] {
    accent-color: #1e4a40;
}

.orelle-filter-checklist small {
    color: #7f7751;
}

.orelle-filter-price {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.orelle-filter-price label {
    display: grid;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #5f593f;
    font-weight: 600;
}

.orelle-filter-price input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(109, 102, 64, 0.35);
    background: #fffcf4;
    color: #292717;
    padding: 0.4rem 0.62rem;
}

.orelle-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.orelle-filter-actions .orelle-btn {
    justify-content: center;
    width: 100%;
}

.orelle-shop-content {
    min-width: 0;
    width: 100%;
}

.orelle-shop-toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, rgba(245, 242, 232, 0.94) 0%, rgba(239, 232, 211, 0.95) 100%);
    border: 1px solid rgba(207, 191, 143, 0.42);
    border-radius: var(--orelle-radius-md);
    padding: 0.65rem 0.8rem;
    box-shadow: var(--orelle-shadow-soft);
}

.orelle-shop-toolbar.is-ordering-empty {
    grid-template-columns: auto auto 1fr;
}

.orelle-shop-toolbar-meta,
.orelle-shop-toolbar-sort {
    min-width: 0;
    display: flex;
    align-items: center;
}

.orelle-shop-toolbar.is-ordering-empty .orelle-shop-toolbar-sort {
    justify-self: start;
    text-align: left;
}

.orelle-filter-toggle {
    border-radius: 999px;
    border: 1px solid rgba(200, 164, 91, 0.7);
    background: rgba(255, 255, 255, 0.48);
    color: #21483f;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.58rem 0.78rem;
    cursor: pointer;
    display: none;
}

.orelle-shop-toolbar-meta .woocommerce-result-count {
    margin: 0;
    color: #5d563d;
    font-size: 0.88rem;
}

.orelle-shop-toolbar-sort .woocommerce-ordering {
    margin: 0;
    float: none;
}

.orelle-shop-ordering-empty {
    margin: 0;
    color: #6e6647;
    font-size: 0.86rem;
}

.orelle-shop-toolbar .woocommerce-result-count,
.orelle-shop-toolbar .woocommerce-ordering,
.orelle-shop-toolbar .orelle-shop-ordering-empty {
    margin: 0 !important;
    line-height: 1.35;
}

.woocommerce .woocommerce-no-products-found {
    border-radius: var(--orelle-radius-sm);
    border: 1px dashed rgba(109, 102, 64, 0.4);
    background: rgba(255, 252, 244, 0.85);
    color: #4f4a30;
    padding: 1rem 1.1rem;
}

.woocommerce .woocommerce-ordering select {
    appearance: none;
    min-height: 41px;
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.42);
    background: linear-gradient(180deg, #fffdf6 0%, #f6efde 100%);
    color: #2f2b19;
    padding: 0.35rem 2rem 0.35rem 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 1rem;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(245, 242, 232, 0.9);
    border-radius: var(--orelle-radius-md);
    border: 1px solid rgba(231, 222, 199, 0.95);
    overflow: hidden;
    box-shadow: var(--orelle-shadow-soft);
    padding: 0 0 1rem;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: block;
}

.woocommerce ul.products li.product a img {
    margin: 0;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--orelle-font-display);
    color: var(--orelle-green);
    font-size: 1.5rem;
    padding: 0.9rem 1rem 0.2rem;
}

.woocommerce ul.products li.product .price {
    color: var(--orelle-gold-matte);
    font-weight: 700;
    padding: 0 1rem;
}

.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border-radius: 999px;
    border: 1px solid rgba(200, 164, 91, 0.75);
    background: transparent;
    color: var(--orelle-green);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78rem;
    padding: 0.65rem 1rem;
}

.woocommerce ul.products li.product .button {
    margin: 0.7rem 1rem 0;
    width: calc(100% - 2rem);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.22;
    white-space: normal;
    overflow-wrap: anywhere;
    padding: 0.65rem 0.85rem;
}

.woocommerce ul.products li.product a.added_to_cart {
    display: block;
    margin: 0.45rem 1rem 0;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 600;
    color: #264f45;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(180deg, #d7c383 0%, #bd9448 100%);
    color: #0f2b25;
    border-color: #c39d54;
}

.woocommerce span.onsale {
    background: #0d2d28;
    color: var(--orelle-gold-light);
    border: 1px solid rgba(207, 191, 143, 0.56);
}

.single-product .woocommerce-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.25);
    background: rgba(249, 245, 236, 0.74);
}

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: clamp(1rem, 2.3vw, 2rem);
    align-items: start;
    background: rgba(245, 242, 232, 0.92);
    border-radius: var(--orelle-radius-lg);
    border: 1px solid var(--orelle-sand);
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow: var(--orelle-shadow-soft);
}

.single-product div.product div.images,
.single-product div.product div.summary {
    float: none;
    width: auto;
    margin: 0;
}

.single-product div.product div.images {
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.9) 0%, rgba(245, 238, 220, 0.8) 100%);
    border: 1px solid rgba(211, 194, 147, 0.46);
    border-radius: 22px;
    padding: clamp(0.72rem, 1.2vw, 0.95rem);
}

.single-product div.product .woocommerce-product-gallery__wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.single-product div.product div.images img {
    border-radius: 16px;
}

.single-product div.product .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.65rem !important;
    padding: 0;
    list-style: none;
}

.single-product div.product .flex-control-thumbs li {
    margin: 0 !important;
}

.single-product div.product .flex-control-thumbs img {
    border-radius: 10px;
    border: 1px solid rgba(211, 194, 147, 0.52);
    transition: transform var(--orelle-transition), border-color var(--orelle-transition);
}

.single-product div.product .flex-control-thumbs img:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 164, 91, 0.72);
}

.single-product div.product div.summary {
    display: grid;
    align-content: start;
    gap: 0.82rem;
    position: static;
    top: auto;
}

.orelle-pdp-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.orelle-pdp-kicker {
    margin: 0;
    color: #5b5438;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.orelle-pdp-kicker strong {
    color: var(--orelle-green);
}

.orelle-pdp-stock {
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.38);
    padding: 0.26rem 0.66rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.orelle-pdp-stock.is-instock {
    background: rgba(28, 88, 74, 0.12);
    border-color: rgba(30, 74, 64, 0.48);
    color: #1e4a40;
}

.orelle-pdp-stock.is-backorder {
    background: rgba(200, 164, 91, 0.14);
    border-color: rgba(200, 164, 91, 0.52);
    color: #654f22;
}

.single-product .product_title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    line-height: 1.06;
}

.single-product div.product .price {
    margin: 0;
    color: #103229;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    font-weight: 700;
}

.orelle-pdp-purchase-notes {
    display: grid;
    gap: 0.26rem;
    margin: -0.22rem 0 0.14rem;
}

.orelle-pdp-payment {
    margin: 0;
    color: #23433c;
    font-size: 0.88rem;
    font-weight: 700;
}

.orelle-pdp-payment .amount {
    color: #0f322a;
}

.orelle-pdp-payment-sub {
    margin: 0;
    color: #666045;
    font-size: 0.76rem;
}

.orelle-pdp-collection-link {
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.36);
    background: rgba(255, 255, 255, 0.58);
    color: #214239;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.34rem 0.62rem;
    transition: border-color var(--orelle-transition), background var(--orelle-transition), color var(--orelle-transition);
}

.orelle-pdp-collection-link:hover {
    border-color: rgba(200, 164, 91, 0.66);
    background: rgba(247, 236, 206, 0.6);
    color: #173c33;
}

.woocommerce-product-details__short-description {
    margin: 0;
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(109, 102, 64, 0.2);
    background: rgba(255, 255, 255, 0.52);
    color: #4e4a33;
    line-height: 1.55;
}

.single-product div.product form.cart:not(.variations_form) {
    display: grid;
    grid-template-columns: minmax(94px, 108px) minmax(0, 1fr);
    gap: 0.62rem;
    align-items: stretch;
    margin: 0.15rem 0 0;
}

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

.single-product div.product form.cart .stock {
    grid-column: 1 / -1;
    margin: 0.05rem 0;
    color: #1e4a40;
    font-size: 0.85rem;
    font-weight: 600;
}

.single-product div.product form.cart .qty {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(109, 102, 64, 0.45);
    min-height: 46px;
    text-align: center;
    padding: 0.5rem 0.8rem;
}

.woocommerce div.product form.cart .button {
    min-height: 46px;
    border-radius: 14px;
    border-width: 1px;
    padding-inline: 1.3rem;
    background: linear-gradient(180deg, #d7c383 0%, #bd9448 100%);
    color: #0f2b25;
    border-color: #c39d54;
    width: 100%;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.single-product div.product form.cart .button:focus-visible,
.orelle-pdp-sticky-button:focus-visible,
.single-product .woocommerce-tabs .orelle-pdp-accordion-trigger:focus-visible {
    outline: 2px solid rgba(200, 164, 91, 0.72);
    outline-offset: 2px;
}

.single-product div.product form.cart .button.is-loading {
    opacity: 0.82;
    pointer-events: none;
    filter: saturate(0.86);
}

.single-product div.product form.cart.orelle-pdp-targeted {
    border-radius: 12px;
    box-shadow: 0 0 0 2px rgba(200, 164, 91, 0.38);
}

.orelle-pdp-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
}

.orelle-pdp-highlights li {
    border-radius: 11px;
    border: 1px solid rgba(109, 102, 64, 0.24);
    background: rgba(255, 255, 255, 0.52);
    padding: 0.45rem 0.6rem;
    color: #3e3a26;
    font-size: 0.78rem;
    font-weight: 600;
}

.orelle-pdp-why {
    border-radius: 14px;
    border: 1px solid rgba(109, 102, 64, 0.24);
    background: rgba(255, 255, 255, 0.58);
    padding: 0.72rem 0.78rem;
}

.orelle-pdp-why h3 {
    margin: 0 0 0.32rem;
    color: #184239;
    font-size: 0.92rem;
}

.orelle-pdp-why ul {
    margin: 0;
    padding-left: 1.05rem;
    display: grid;
    gap: 0.26rem;
}

.orelle-pdp-why li {
    color: #4f4830;
    font-size: 0.79rem;
    line-height: 1.45;
}

.orelle-pdp-purchase-anchor {
    display: block;
    position: relative;
    top: -112px;
    height: 0;
    visibility: hidden;
}

.orelle-pdp-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.orelle-pdp-service-grid article {
    border-radius: 14px;
    border: 1px solid rgba(109, 102, 64, 0.2);
    background: rgba(255, 255, 255, 0.54);
    padding: 0.55rem 0.62rem;
    transition: transform var(--orelle-transition), box-shadow var(--orelle-transition), border-color var(--orelle-transition);
}

.orelle-pdp-service-grid article:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 164, 91, 0.45);
    box-shadow: 0 8px 20px rgba(18, 35, 31, 0.11);
}

.orelle-pdp-service-grid h3 {
    margin: 0 0 0.18rem;
    color: #164239;
    font-size: 0.8rem;
}

.orelle-pdp-service-grid p {
    margin: 0;
    color: #5a5336;
    font-size: 0.72rem;
    line-height: 1.45;
}

.single-product div.product .product_meta {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.12rem;
    padding-top: 0.72rem;
    border-top: 1px solid rgba(109, 102, 64, 0.18);
    color: #5d563d;
    font-size: 0.8rem;
}

.single-product div.product .product_meta a {
    color: #20473f;
    font-weight: 600;
    transition: color var(--orelle-transition);
}

.single-product div.product .product_meta a:hover {
    color: #15372f;
}

.woocommerce-tabs ul.tabs {
    margin: 1.4rem 0 0.8rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(109, 102, 64, 0.35) !important;
    background: rgba(255, 255, 255, 0.46) !important;
    overflow: hidden;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.46rem 0.78rem !important;
    font-size: 0.9rem;
    line-height: 1.1;
}

.woocommerce-tabs ul.tabs li.active {
    border-color: rgba(200, 164, 91, 0.8) !important;
    background: rgba(231, 222, 199, 0.8) !important;
}

.single-product .woocommerce-tabs .panel {
    border-radius: 16px;
    border: 1px solid rgba(109, 102, 64, 0.2);
    background: rgba(255, 255, 255, 0.54);
    padding: 1rem;
    clear: both;
}

.single-product .woocommerce-tabs .panel > h2:first-child {
    margin-top: 0;
}

.single-product .woocommerce-tabs .orelle-pdp-accordion-trigger {
    display: none;
}

.orelle-related-shell {
    margin-top: 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(207, 191, 143, 0.42);
    background: linear-gradient(180deg, rgba(249, 244, 232, 0.82) 0%, rgba(243, 235, 216, 0.86) 100%);
    padding: clamp(1rem, 2vw, 1.4rem);
    clear: both;
}

.orelle-related-head {
    margin-bottom: 0.88rem;
    display: grid;
    gap: 0.35rem;
}

.orelle-related-head .orelle-eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.orelle-related-intro {
    margin: 0;
    color: #5a5438;
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.5;
}

.orelle-related-shell .related.products {
    margin-top: 0;
}

.orelle-related-shell .related.products > h2 {
    margin: 0 0 0.85rem;
    color: #113b33;
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    line-height: 1.1;
}

.orelle-related-shell ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.72rem, 1.5vw, 1rem);
}

.orelle-related-shell ul.products li.product {
    border-radius: 16px;
    border: 1px solid rgba(210, 195, 154, 0.75);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(246, 239, 223, 0.96) 100%);
    box-shadow: 0 10px 24px rgba(17, 38, 33, 0.1);
    padding: 0 0 0.64rem;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 100%;
    transition: transform var(--orelle-transition), box-shadow var(--orelle-transition), border-color var(--orelle-transition);
}

.orelle-related-shell ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 164, 91, 0.66);
    box-shadow: 0 18px 32px rgba(10, 28, 24, 0.16);
}

.orelle-related-shell ul.products li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 0;
}

.orelle-related-shell ul.products li.product .woocommerce-LoopProduct-link > * {
    margin: 0;
}

.orelle-related-shell ul.products li.product a img {
    aspect-ratio: 1 / 0.74;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(210, 195, 154, 0.56);
    background: rgba(239, 236, 226, 0.9);
}

.orelle-related-shell ul.products li.product .woocommerce-loop-product__title {
    font-size: clamp(1.14rem, 1.35vw, 1.38rem);
    line-height: 1.16;
    min-height: 2.32em;
    padding: 0.54rem 0.78rem 0.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: balance;
}

.orelle-related-shell ul.products li.product .price {
    padding: 0 0.78rem;
    font-size: 0.96rem;
    margin: 0;
    margin-top: auto;
    margin-bottom: 0.32rem;
    line-height: 1.1;
}

.orelle-related-shell ul.products li.product .button {
    margin: 0.46rem 0.78rem 0;
    width: calc(100% - 1.56rem);
    border-radius: 11px;
    min-height: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    margin-top: auto;
    padding: 0.46rem 0.72rem;
    line-height: 1.12;
    background: linear-gradient(180deg, #d7c383 0%, #bd9448 100%);
    color: #0f2b25;
    border-color: #c39d54;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.orelle-related-shell ul.products li.product .button:hover {
    background: linear-gradient(180deg, #e1cf94 0%, #c89d4f 100%);
    color: #0d2621;
}

.orelle-related-shell ul.products li.product a.added_to_cart {
    margin: 0.4rem 0.78rem 0;
    font-size: 0.71rem;
    color: #1d473e;
    text-align: center;
}

.orelle-pdp-sticky-cta {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    z-index: 110;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(207, 191, 143, 0.46);
    background: linear-gradient(180deg, rgba(11, 37, 33, 0.95) 0%, rgba(9, 30, 27, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(7, 20, 18, 0.38);
    padding: 0.56rem 0.62rem;
    transform: translateY(0);
    opacity: 1;
    transition: opacity var(--orelle-transition), transform var(--orelle-transition);
}

.orelle-pdp-sticky-cta.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.orelle-pdp-sticky-meta {
    min-width: 0;
}

.orelle-pdp-sticky-label {
    margin: 0;
    color: rgba(245, 242, 232, 0.76);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.orelle-pdp-sticky-price {
    margin: 0.14rem 0 0;
    color: #f7e6bb;
    font-size: 1rem;
    font-weight: 700;
}

.orelle-pdp-sticky-price .amount {
    color: inherit;
}

.orelle-pdp-sticky-stock {
    display: inline-block;
    margin-top: 0.12rem;
    color: rgba(222, 235, 202, 0.92);
    font-size: 0.69rem;
    font-weight: 600;
}

.orelle-pdp-sticky-button {
    min-height: 44px;
    border-radius: 12px;
    white-space: nowrap;
    padding-inline: 1rem;
}

/* WooCommerce Blocks: cart and checkout */
.woocommerce-cart .orelle-page-card,
.woocommerce-checkout .orelle-page-card {
    padding: clamp(1rem, 2.1vw, 1.6rem);
}

.woocommerce-cart .orelle-page-card > h1,
.woocommerce-checkout .orelle-page-card > h1 {
    margin: 0;
    font-size: clamp(1.95rem, 3.2vw, 2.6rem);
    letter-spacing: 0.02em;
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
    margin-top: clamp(0.68rem, 1.4vw, 0.95rem);
}

.woocommerce-cart .wp-block-woocommerce-cart.alignwide,
.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.woocommerce-cart .wc-block-cart,
.woocommerce-cart .wp-block-woocommerce-filled-cart-block {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 30vw, 390px);
    gap: clamp(0.8rem, 1.8vw, 1.2rem);
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.woocommerce-cart .wc-block-cart .wc-block-components-main,
.woocommerce-cart .wp-block-woocommerce-cart-items-block {
    min-width: 0;
}

.woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block {
    min-width: 0;
    position: sticky;
    top: calc(82px + 0.95rem);
    align-self: start;
}

.woocommerce-checkout .wc-block-checkout {
    display: block !important;
    width: 100%;
    max-width: 100%;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 30vw, 390px);
    align-items: start;
    gap: clamp(0.8rem, 1.8vw, 1.2rem);
    margin: 0 !important;
    width: 100%;
}

.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    padding-right: 0 !important;
}

.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    width: clamp(320px, 30vw, 390px) !important;
    max-width: 100%;
    padding-left: 0 !important;
    min-width: 0;
    position: sticky;
    top: calc(82px + 0.95rem);
    align-self: start;
}

.woocommerce-cart .wc-block-components-main,
.woocommerce-checkout .wc-block-components-main,
.woocommerce-cart .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-cart .wp-block-woocommerce-cart-items-block,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block,
.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.95) 0%, rgba(244, 236, 218, 0.95) 100%);
    border: 1px solid rgba(200, 164, 91, 0.4);
    border-radius: 16px;
    padding: clamp(0.82rem, 1.4vw, 1.04rem);
    box-shadow: 0 12px 26px rgba(10, 29, 25, 0.12);
}

.woocommerce-cart .wc-block-cart-items,
.woocommerce-checkout .wc-block-components-checkout-step {
    border: 1px solid rgba(207, 191, 143, 0.42);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
}

.woocommerce-checkout .wc-block-components-checkout-step {
    margin-bottom: 0.66rem;
}

.woocommerce-checkout .wc-block-components-checkout-step__heading {
    border-bottom: 1px solid rgba(109, 102, 64, 0.18);
    padding: 0.72rem 0.82rem;
}

.woocommerce-checkout .wc-block-components-checkout-step__content {
    padding: 0.78rem 0.82rem;
}

.woocommerce-cart .wc-block-components-sidebar .wc-block-components-panel,
.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel {
    border: 1px solid rgba(109, 102, 64, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.56);
}

.woocommerce-cart .wc-block-components-title,
.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-components-checkout-step__title {
    font-family: var(--orelle-font-display);
    color: var(--orelle-green);
}

.woocommerce-cart .wc-block-components-title,
.woocommerce-checkout .wc-block-components-title {
    margin-bottom: 0.45rem;
    font-size: clamp(1.34rem, 2.2vw, 1.8rem);
}

.woocommerce-cart .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-product-name {
    font-family: var(--orelle-font-display);
    color: var(--orelle-green);
    font-size: clamp(1.04rem, 1.35vw, 1.2rem);
    line-height: 1.22;
}

.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row,
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
    border: 1px solid rgba(207, 191, 143, 0.38);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.68);
    padding: 0.62rem 0.7rem;
    margin-bottom: 0.45rem;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: start;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-image {
    width: 56px;
    margin: 0;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-details {
    min-width: 0;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-price {
    justify-self: end;
    white-space: nowrap;
}

.woocommerce-cart .wc-block-cart-items__header,
.woocommerce-checkout .wc-block-components-order-summary__title {
    color: #5f563b;
    font-weight: 700;
}

.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-checkout .wc-block-components-product-price,
.woocommerce-checkout .wc-block-components-product-price__value,
.woocommerce-cart .wc-block-components-product-price__value,
.woocommerce-cart .wc-block-formatted-money-amount,
.woocommerce-checkout .wc-block-formatted-money-amount {
    color: #665d3d;
    font-weight: 700;
}

.woocommerce-cart .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    color: #4d4730;
    border-color: rgba(109, 102, 64, 0.3);
}

.woocommerce-cart .wc-block-components-totals-item,
.woocommerce-checkout .wc-block-components-totals-item {
    border-color: rgba(109, 102, 64, 0.2);
    color: #3c3722;
}

.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #163e35;
    font-weight: 800;
}

.woocommerce-cart .wc-block-components-quantity-selector,
.woocommerce-checkout .wc-block-components-quantity-selector {
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.35);
    background: rgba(255, 255, 255, 0.86);
    overflow: hidden;
}

.woocommerce-cart .wc-block-components-quantity-selector input,
.woocommerce-checkout .wc-block-components-quantity-selector input {
    min-height: 40px;
    color: #2d291a;
    font-weight: 700;
}

.woocommerce-cart .wc-block-cart-item__remove-link,
.woocommerce-checkout .wc-block-cart-item__remove-link,
.woocommerce-cart .wc-block-components-order-summary-item__remove-link {
    color: #8e4f33;
    font-weight: 700;
}

.woocommerce-cart .wc-block-components-text-input input,
.woocommerce-cart .wc-block-components-text-input textarea,
.woocommerce-cart .wc-block-components-combobox-control .components-combobox-control__input,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-text-input textarea,
.woocommerce-checkout .wc-block-components-combobox-control .components-combobox-control__input,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select {
    min-height: 44px;
    border-radius: 11px;
    border: 1px solid rgba(109, 102, 64, 0.34);
    background: rgba(255, 253, 248, 0.95);
    color: #2a2718;
    padding: 0.5rem 0.72rem;
}

.woocommerce-cart .wc-block-components-text-input input:focus,
.woocommerce-cart .wc-block-components-text-input textarea:focus,
.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-text-input textarea:focus,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select:focus {
    outline: none;
    border-color: rgba(173, 140, 70, 0.56);
    box-shadow: 0 0 0 2px rgba(199, 164, 91, 0.16);
}

.woocommerce-cart .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-checkbox label {
    color: #4f482f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.woocommerce-cart .wc-block-components-button:not(.is-link),
.woocommerce-checkout .wc-block-components-button:not(.is-link),
.woocommerce-cart .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-cart .wc-block-components-checkout-return-to-cart-button,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button,
.woocommerce-cart .wp-block-button__link,
.woocommerce-checkout .wp-block-button__link {
    border-radius: 12px;
    border: 1px solid rgba(195, 157, 84, 0.9);
    background: linear-gradient(180deg, #d7c383 0%, #bd9448 100%);
    color: #0f2b25;
    font-weight: 800;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-height: 44px;
    padding: 0.62rem 0.95rem;
    transition: filter var(--orelle-transition), transform var(--orelle-transition);
}

.woocommerce-cart .wc-block-components-button:not(.is-link):hover,
.woocommerce-checkout .wc-block-components-button:not(.is-link):hover,
.woocommerce-cart .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-cart .wp-block-button__link:hover,
.woocommerce-checkout .wp-block-button__link:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.woocommerce-cart .wc-block-components-checkout-return-to-cart-button,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    background: rgba(255, 255, 255, 0.54);
    color: #1c473d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.46rem;
    padding: 0.62rem 1.02rem 0.62rem 0.88rem;
    line-height: 1;
    letter-spacing: 0.035em;
}

.woocommerce-cart .wc-block-components-checkout-return-to-cart-button svg,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button svg {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 13px;
    height: 13px;
    margin-right: 0.02rem;
    padding: 2px;
    border-radius: 999px;
    background: rgba(28, 71, 61, 0.08);
    flex: 0 0 13px;
}

.rtl .woocommerce-cart .wc-block-components-checkout-return-to-cart-button svg,
.rtl .woocommerce-checkout .wc-block-components-checkout-return-to-cart-button svg {
    transform: scale(-1);
}

.woocommerce-cart .wc-block-components-button.is-link,
.woocommerce-checkout .wc-block-components-button.is-link,
.woocommerce-cart .wc-block-components-totals-coupon-link,
.woocommerce-checkout .wc-block-components-totals-coupon-link {
    color: #1d4b40;
    font-weight: 700;
}

.woocommerce-cart .wc-block-components-totals-coupon,
.woocommerce-checkout .wc-block-components-totals-coupon {
    border: 1px solid rgba(109, 102, 64, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.35rem 0.56rem 0.62rem;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-panel__button {
    display: none !important;
}

.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button {
    display: none !important;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-panel__button svg {
    display: none;
}

.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button svg {
    display: none;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-panel__content {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding-top: 0;
}

.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__content {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding-top: 0.1rem;
}

.woocommerce-cart .wc-block-components-totals-coupon {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-panel__content[hidden] {
    display: block !important;
}

.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__content[hidden] {
    display: block !important;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__form,
.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem;
    margin: 0;
    align-items: center;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-text-input {
    margin: 0;
}

.woocommerce-checkout .wc-block-components-totals-coupon {
    margin: 0.44rem 0 0.82rem;
    padding: 0.42rem 0.56rem 0.64rem;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-text-input input {
    min-height: 36px;
    border-color: rgba(109, 102, 64, 0.3);
    background: rgba(255, 255, 255, 0.84);
    font-size: 0.85rem;
}

.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button:not(.is-link),
.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-button:not(.is-link) {
    min-height: 36px;
    width: auto;
    padding-inline: 0.78rem;
    border-color: rgba(173, 140, 70, 0.56);
    background: linear-gradient(180deg, rgba(215, 195, 131, 0.76) 0%, rgba(190, 149, 72, 0.77) 100%);
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-cart .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner {
    border-radius: 12px;
    border: 1px solid rgba(109, 102, 64, 0.3);
    background: rgba(255, 255, 255, 0.72);
}

.woocommerce-cart .wc-block-components-validation-error,
.woocommerce-checkout .wc-block-components-validation-error {
    color: #8c4931;
    font-size: 0.78rem;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
    border-radius: 16px;
    border: 1px dashed rgba(109, 102, 64, 0.35);
    background: rgba(255, 252, 244, 0.75);
    padding: clamp(0.9rem, 2vw, 1.35rem);
    margin-top: 0.8rem;
}

.woocommerce-cart .wc-block-cart__empty-cart__title {
    color: #143f36;
    margin-bottom: 0.3rem;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-heading {
    color: #173f37;
}

.woocommerce-cart .wc-block-grid__products {
    gap: 0.72rem;
}

.woocommerce-cart .wc-block-grid__product {
    border-radius: 14px;
    border: 1px solid rgba(210, 195, 154, 0.66);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(244, 236, 218, 0.96) 100%);
    padding: 0.64rem;
}

.woocommerce-cart .wc-block-grid__product-title {
    font-family: var(--orelle-font-display);
    color: #143c34;
    font-size: 1.2rem;
}

.woocommerce-cart .wc-block-grid__product-price {
    color: #675f3f;
    font-weight: 700;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
    width: 100%;
    justify-content: center;
}

.woocommerce table.shop_table {
    border-radius: var(--orelle-radius-sm);
    border: 1px solid rgba(109, 102, 64, 0.22);
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: rgba(109, 102, 64, 0.12);
}

.select2-container--default .select2-selection--single,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border-radius: 12px;
    border: 1px solid rgba(109, 102, 64, 0.35);
    min-height: 44px;
    padding: 0.45rem 0.8rem;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin-inline: 0.2rem;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 999px;
    border: 1px solid rgba(109, 102, 64, 0.45);
    padding: 0.3rem 0.7rem;
    color: var(--orelle-green);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--orelle-green);
    color: var(--orelle-gold-light);
    border-color: var(--orelle-green);
}

@media (max-width: 1080px) {
    .woocommerce-cart .wc-block-cart,
    .woocommerce-cart .wp-block-woocommerce-filled-cart-block,
    .woocommerce-checkout .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .wc-block-cart,
    .woocommerce-cart .wp-block-woocommerce-filled-cart-block {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
    .woocommerce-cart .wp-block-woocommerce-cart-totals-block,
    .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
    .woocommerce-checkout .wc-block-checkout__sidebar,
    .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
        width: 100% !important;
        flex-basis: auto;
        position: static;
        top: auto;
    }
}

@media (max-width: 860px) {
    .woocommerce-cart .orelle-page-card,
    .woocommerce-checkout .orelle-page-card {
        padding: 0.84rem;
    }

    .woocommerce-cart .orelle-page-card > h1,
    .woocommerce-checkout .orelle-page-card > h1 {
        font-size: clamp(1.7rem, 7vw, 2.05rem);
    }

    .woocommerce-cart .wp-block-woocommerce-cart,
    .woocommerce-checkout .wp-block-woocommerce-checkout {
        margin-top: 0.62rem;
    }

    .woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
    .woocommerce-cart .wp-block-woocommerce-cart-totals-block,
    .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
    .woocommerce-checkout .wc-block-checkout__sidebar,
    .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
        border-radius: 14px;
        padding: 0.72rem;
    }

    .woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row,
    .woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
        padding: 0.58rem 0.58rem 0.62rem;
    }

    .woocommerce-cart .wc-block-components-product-name,
    .woocommerce-checkout .wc-block-components-product-name {
        font-size: 1.02rem;
    }

    .woocommerce-cart .wc-block-components-button:not(.is-link),
    .woocommerce-checkout .wc-block-components-button:not(.is-link),
    .woocommerce-cart .wc-block-components-checkout-place-order-button,
    .woocommerce-checkout .wc-block-components-checkout-place-order-button,
    .woocommerce-cart .wp-block-button__link,
    .woocommerce-checkout .wp-block-button__link {
        width: 100%;
        min-height: 42px;
        font-size: 0.72rem;
    }

    .woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__form,
    .woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__form {
        grid-template-columns: 1fr;
        gap: 0.48rem;
    }

    .woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button:not(.is-link),
    .woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-button:not(.is-link) {
        width: 100%;
    }

    .woocommerce-cart .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .orelle-shop-shell {
        grid-template-columns: 1fr;
    }

    .orelle-shop-filters {
        position: static;
        top: auto;
    }

    .orelle-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .orelle-shop-toolbar {
        grid-template-columns: auto 1fr;
    }

    .orelle-shop-toolbar-sort {
        grid-column: 1 / -1;
    }

    .orelle-shop-toolbar-sort .woocommerce-ordering {
        width: 100%;
    }

    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }

    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 0.95rem;
        padding: clamp(0.9rem, 2.7vw, 1.35rem);
    }

    .single-product div.product div.summary {
        position: static;
        top: auto;
    }

    .orelle-pdp-service-grid {
        grid-template-columns: 1fr;
    }

    .single-product .woocommerce-tabs .panel {
        padding: 0.88rem;
    }

    .orelle-related-shell {
        padding: 0.86rem;
    }

    .orelle-related-shell ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem;
    }

    .orelle-related-shell ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.17rem;
        padding: 0.5rem 0.66rem 0.08rem;
    }

    .orelle-related-shell ul.products li.product .price {
        padding: 0 0.66rem;
    }

    .orelle-related-shell ul.products li.product .button {
        margin: 0.44rem 0.66rem 0;
        width: calc(100% - 1.32rem);
    }

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

    .single-product .woocommerce-tabs .orelle-pdp-accordion-trigger {
        width: 100%;
        border: 1px solid rgba(109, 102, 64, 0.32);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.62);
        color: #214239;
        font-weight: 700;
        font-size: 0.84rem;
        letter-spacing: 0.02em;
        padding: 0.66rem 0.72rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.55rem;
        margin: 0 0 0.45rem;
        cursor: pointer;
    }

    .single-product .woocommerce-tabs .orelle-pdp-accordion-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 1px solid rgba(109, 102, 64, 0.35);
        font-size: 0.76rem;
        transition: transform var(--orelle-transition), background var(--orelle-transition);
    }

    .single-product .woocommerce-tabs .orelle-pdp-accordion-trigger[aria-expanded="true"] .orelle-pdp-accordion-icon {
        transform: rotate(45deg);
        background: rgba(200, 164, 91, 0.18);
    }

    .single-product .woocommerce-tabs .woocommerce-Tabs-panel {
        display: block !important;
        margin: 0 0 0.52rem !important;
    }

    .single-product .woocommerce-tabs .woocommerce-Tabs-panel.is-collapsed {
        display: none !important;
    }

    .orelle-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .orelle-composition-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .orelle-composition-card.is-sol {
        order: 1;
    }

    .orelle-composition-center {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        order: 2;
        margin: -0.2rem auto;
        width: clamp(104px, 22vw, 128px);
    }

    .orelle-composition-card.is-lua {
        order: 3;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    body.single-product {
        padding-bottom: calc(95px + env(safe-area-inset-bottom));
    }

    .orelle-shop-shell {
        position: relative;
    }

    .orelle-shop-filters {
        position: fixed;
        z-index: 90;
        left: 0.8rem;
        right: 0.8rem;
        top: 78px;
        bottom: 0.8rem;
        overflow: auto;
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--orelle-transition), opacity var(--orelle-transition);
    }

    .orelle-shop-shell.is-filters-open .orelle-shop-filters {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .orelle-shop-filters-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .orelle-header-topbar {
        display: none;
    }

    .orelle-header-main {
        padding: 0.45rem 0;
    }

    .orelle-header-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.8rem;
        position: relative;
    }

    .orelle-header-checkout-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.7rem;
    }

    .orelle-checkout-trust {
        grid-column: 1 / -1;
        justify-self: flex-start;
        white-space: normal;
    }

    .orelle-menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .orelle-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.45rem);
        width: 100%;
        background: rgba(8, 29, 25, 0.96);
        border: 1px solid rgba(207, 191, 143, 0.24);
        border-radius: 14px;
        box-shadow: 0 18px 30px rgba(5, 17, 15, 0.28);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: max-height var(--orelle-transition), opacity var(--orelle-transition), transform var(--orelle-transition), padding var(--orelle-transition);
    }

    body.menu-open .orelle-nav {
        max-height: min(56vh, 320px);
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        overflow-y: auto;
        padding: 0.35rem 0.85rem 0.75rem;
    }

    .orelle-menu,
    .orelle-menu-fallback {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.35rem 0 0.2rem;
    }

    .orelle-menu > li {
        width: 100%;
    }

    .orelle-menu > li.menu-item-has-children::after {
        display: none;
    }

    .orelle-menu > li > a {
        display: inline-flex;
        align-items: center;
    }

    .orelle-menu > li > .sub-menu {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        padding: 0.18rem 0 0.25rem 0.7rem;
        margin-top: 0.08rem;
    }

    .orelle-menu .sub-menu a {
        padding: 0.38rem 0;
        font-size: 0.87rem;
        color: rgba(245, 242, 232, 0.84);
    }

    .orelle-nav .orelle-menu-fallback {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .orelle-header-actions {
        gap: 0.4rem;
    }

    .orelle-account-link {
        display: none;
    }

    .orelle-hero-grid {
        grid-template-columns: 1fr;
    }

    .orelle-hero-art {
        order: -1;
    }

    .orelle-hero-art picture {
        width: min(420px, 88%);
    }

    .orelle-hero-art img {
        aspect-ratio: 3 / 4;
    }

    .orelle-categories-grid,
    .orelle-benefits-grid,
    .orelle-footer-grid {
        grid-template-columns: 1fr;
    }

    .orelle-footer-grid {
        gap: 1.1rem;
        padding: 1.6rem 0 1.35rem;
    }

    .orelle-footer-grid > section {
        justify-items: center;
        text-align: center;
        gap: 0.42rem;
    }

    .orelle-footer-brand {
        align-items: center;
        text-align: center;
        margin-inline: auto;
    }

    .orelle-footer ul,
    .orelle-footer-menu,
    .orelle-footer .orelle-menu-fallback {
        justify-items: center;
    }

    .orelle-footer-brand p {
        max-width: 32ch;
    }

    .orelle-footer-bottom .orelle-container {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .orelle-footer-checkout-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 0.74rem 0;
    }

    .orelle-footer-checkout-copy {
        font-size: 0.78rem;
    }

    .orelle-footer-checkout-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .orelle-composition-card {
        min-height: clamp(300px, 72vw, 500px);
    }

    .orelle-composition-panel {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.72rem;
    }

    .orelle-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .orelle-pdp-sticky-cta {
        display: grid;
    }
}

@media (max-width: 620px) {
    .orelle-filter-actions {
        grid-template-columns: 1fr;
    }

    .orelle-shop-toolbar {
        padding: 0.58rem 0.62rem;
    }

    .orelle-main {
        padding-top: 1.35rem;
    }

    .orelle-checkout-focus .orelle-main {
        padding-top: 1rem;
    }

    .orelle-header-topbar p {
        font-size: 0.7rem;
    }

    .orelle-brand-wordmark {
        font-size: 1.4rem;
    }

    .orelle-brand-tagline {
        display: none;
    }

    .orelle-brand-mark {
        width: 38px;
        height: 38px;
    }

    .orelle-header-checkout .orelle-header-main {
        padding: 0.42rem 0;
    }

    .orelle-header-checkout-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .orelle-header-checkout .orelle-brand {
        justify-content: center;
    }

    .orelle-checkout-trust {
        justify-self: center;
        text-align: center;
        font-size: 0.67rem;
        letter-spacing: 0.04em;
    }

    .orelle-checkout-back {
        width: 100%;
        font-size: 0.7rem;
    }

    .orelle-cart-label {
        display: none;
    }

    .single-product .woocommerce-breadcrumb {
        font-size: 0.76rem;
        gap: 0.12rem;
    }

    .single-product div.product {
        gap: 0.82rem;
        padding: 0.82rem;
    }

    .single-product div.product div.images {
        padding: 0.52rem;
        border-radius: 16px;
    }

    .orelle-pdp-purchase-anchor {
        top: -84px;
    }

    .orelle-pdp-topline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .single-product .product_title {
        font-size: clamp(1.65rem, 8vw, 2rem);
    }

    .orelle-pdp-purchase-notes {
        margin-top: -0.08rem;
    }

    .orelle-pdp-payment {
        font-size: 0.82rem;
    }

    .orelle-pdp-payment-sub {
        font-size: 0.72rem;
    }

    .orelle-pdp-collection-link {
        font-size: 0.68rem;
        padding: 0.3rem 0.56rem;
    }

    .orelle-pdp-highlights {
        grid-template-columns: 1fr;
    }

    .orelle-pdp-why {
        padding: 0.62rem 0.66rem;
    }

    .single-product div.product form.cart:not(.variations_form) {
        grid-template-columns: 1fr;
    }

    .single-product div.product form.cart .qty,
    .single-product div.product form.cart .button {
        min-height: 44px;
    }

    .single-product .woocommerce-tabs ul.tabs {
        gap: 0.4rem;
    }

    .orelle-pdp-sticky-cta {
        left: 0.55rem;
        right: 0.55rem;
        bottom: calc(0.5rem + env(safe-area-inset-bottom));
        border-radius: 14px;
        padding: 0.48rem 0.52rem;
        gap: 0.48rem;
    }

    .orelle-pdp-sticky-label {
        font-size: 0.64rem;
    }

    .orelle-pdp-sticky-price {
        font-size: 0.92rem;
    }

    .orelle-pdp-sticky-button {
        min-height: 42px;
        padding-inline: 0.85rem;
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }

    .orelle-related-shell {
        border-radius: 16px;
        padding: 0.72rem;
    }

    .orelle-related-shell .related.products > h2 {
        font-size: 1.44rem;
        margin-bottom: 0.62rem;
    }

    .orelle-related-intro {
        font-size: 0.86rem;
    }

    .orelle-related-shell ul.products {
        grid-template-columns: 1fr;
        gap: 0.62rem;
    }

    .orelle-related-shell ul.products li.product a img {
        aspect-ratio: 1 / 0.7;
    }

    .orelle-footer {
        margin-top: 1.4rem;
    }

    .orelle-footer-grid {
        gap: 0.95rem;
        padding: 1.35rem 0 1.1rem;
    }

    .orelle-footer-logo {
        width: min(180px, 62vw);
    }

    .orelle-footer-brand p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .orelle-footer h4 {
        margin-bottom: 0.35rem;
    }

    .orelle-footer-bottom {
        padding: 0.72rem 0 0.95rem;
    }

    .orelle-footer-bottom p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .orelle-products-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.22rem;
        padding: 0.72rem 0.75rem 0.12rem;
    }

    .woocommerce ul.products li.product .price {
        padding: 0 0.75rem;
        font-size: 0.92rem;
    }

    .woocommerce ul.products li.product .button {
        margin: 0.62rem 0.75rem 0;
        width: calc(100% - 1.5rem);
        font-size: 0.7rem;
        letter-spacing: 0.03em;
    }

    .orelle-composition-card {
        min-height: auto;
        display: grid;
        grid-template-rows: auto auto;
        background: linear-gradient(180deg, rgba(18, 33, 31, 0.96) 0%, rgba(12, 22, 20, 0.98) 100%);
    }

    .orelle-composition-card::before {
        display: none;
    }

    .orelle-composition-media {
        position: relative;
        inset: auto;
        aspect-ratio: 5 / 4;
    }

    .orelle-composition-media::after {
        background: linear-gradient(180deg, rgba(7, 8, 12, 0.02) 0%, rgba(8, 9, 12, 0.22) 100%);
    }

    .orelle-composition-glow {
        display: none;
    }

    .orelle-composition-panel {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.62rem;
        padding: 0.78rem 0.8rem 0.82rem;
        background: linear-gradient(165deg, rgba(10, 14, 20, 0.82) 0%, rgba(8, 12, 18, 0.92) 100%);
        backdrop-filter: blur(2px);
        box-shadow: 0 10px 20px rgba(6, 12, 14, 0.26);
    }

    .orelle-composition-panel h3 {
        font-size: clamp(1.26rem, 6vw, 1.52rem);
        max-width: 100%;
    }

    .orelle-composition-description {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .orelle-composition-link {
        padding: 0.44rem 0.75rem;
    }

    .orelle-composition-center {
        width: 92px;
        margin: -0.1rem auto;
    }

    .orelle-composition-center-subtitle {
        display: none;
    }
}

@media (max-width: 420px) {
    .orelle-products-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr;
    }
}

/* Phase 3: cart + checkout hard overrides */
.woocommerce-cart .orelle-main > .orelle-container,
.woocommerce-checkout .orelle-main > .orelle-container {
    width: min(1420px, calc(100vw - 2.4rem));
}

.woocommerce-cart .orelle-main,
.woocommerce-checkout .orelle-main {
    padding-top: 1.3rem;
    padding-bottom: 3rem;
}

.woocommerce-cart .orelle-page-card,
.woocommerce-checkout .orelle-page-card {
    padding: clamp(1.2rem, 2.3vw, 2rem);
    border-radius: 20px;
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
    width: 100%;
    max-width: none !important;
    margin-top: 0.9rem;
    font-size: 16px;
}

.woocommerce-cart .wc-block-cart,
.woocommerce-cart .wp-block-woocommerce-filled-cart-block,
.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: clamp(1rem, 2vw, 1.4rem);
    align-items: start;
    width: 100%;
    max-width: none !important;
    min-height: 0 !important;
}

.woocommerce-cart .wc-block-cart .wc-block-components-main,
.woocommerce-cart .wp-block-woocommerce-cart-items-block,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
}

.woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    align-self: start;
    position: sticky;
    top: calc(78px + 1rem);
}

.woocommerce-cart .wc-block-cart-items {
    width: 100%;
    max-width: none !important;
    min-height: 0 !important;
    border-radius: 16px;
    overflow: hidden;
}

.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__header {
    padding: 0.8rem 0.95rem;
    font-size: 0.88rem;
}

.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
    padding: 0.95rem;
}

.woocommerce-cart .wc-block-cart-item__product {
    padding: 0.95rem !important;
}

.woocommerce-cart .wc-block-cart-item__total {
    width: 168px;
    padding: 0.95rem 0.95rem 0.95rem 0 !important;
}

.woocommerce-cart .wc-block-cart-item__wrap {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.woocommerce-cart .wc-block-cart-item__image {
    width: 88px;
    min-width: 88px;
    margin: 0;
}

.woocommerce-cart .wc-block-cart-item__image img {
    width: 100%;
    margin: 0;
}

.woocommerce-cart .wc-block-components-product-name {
    font-size: 1.24rem;
    line-height: 1.22;
}

.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-cart .wc-block-formatted-money-amount,
.woocommerce-checkout .wc-block-formatted-money-amount {
    font-size: 1.08rem;
}

.woocommerce-checkout .wc-block-components-checkout-step {
    border-radius: 14px;
    overflow: hidden;
}

.woocommerce-checkout .wc-block-components-checkout-step__title {
    font-size: 2rem;
    line-height: 1.02;
}

.woocommerce-checkout .wc-block-components-checkout-step__heading {
    padding: 0.8rem 0.92rem;
}

.woocommerce-checkout .wc-block-components-checkout-step__content {
    padding: 0.85rem 0.92rem;
}

.woocommerce-checkout .wc-block-components-checkout-step__content > * + * {
    margin-top: 0.68rem;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form,
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.68rem !important;
    row-gap: 0.62rem !important;
    align-items: start;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form [class*="__country"],
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form [class*="__country"],
.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form [class*="__address_1"],
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form [class*="__address_1"],
.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form [class*="__address_2"],
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form [class*="__address_2"] {
    grid-column: 1 / -1;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form .wc-block-components-text-input,
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form .wc-block-components-text-input,
.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form .wc-block-components-select,
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form .wc-block-components-select,
.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form .wc-block-components-combobox,
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form .wc-block-components-combobox,
.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-address-form .wc-block-components-combobox-control,
.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-form .wc-block-components-combobox-control {
    margin: 0 !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-contact-information-block .wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: 1fr;
    row-gap: 0.55rem;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-contact-information-block .wc-block-components-address-form > * {
    grid-column: 1 / -1;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-image {
    width: 60px;
    margin: 0;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-details {
    min-width: 0;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-name {
    font-size: 1.12rem;
    line-height: 1.15;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-price {
    white-space: nowrap;
    justify-self: end;
}

/* Prevent duplicated price line inside summary item description. */
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-price {
    display: none !important;
}

.woocommerce-cart .wc-block-components-text-input input,
.woocommerce-cart .wc-block-components-text-input textarea,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-text-input textarea,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select,
.woocommerce-checkout .wc-block-components-combobox-control .components-combobox-control__input {
    min-height: 46px;
}

.woocommerce-cart .wc-block-components-button:not(.is-link),
.woocommerce-checkout .wc-block-components-button:not(.is-link),
.woocommerce-cart .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-cart .wp-block-button__link,
.woocommerce-checkout .wp-block-button__link {
    min-height: 46px;
    padding: 0.7rem 1.05rem;
    font-size: 0.76rem;
}

@media (max-width: 1180px) {
    .woocommerce-cart .orelle-main > .orelle-container,
    .woocommerce-checkout .orelle-main > .orelle-container {
        width: min(100%, calc(100vw - 1.5rem));
    }

    .woocommerce-cart .wc-block-cart,
    .woocommerce-cart .wp-block-woocommerce-filled-cart-block,
    .woocommerce-checkout .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
    .woocommerce-cart .wp-block-woocommerce-cart-totals-block,
    .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
    .woocommerce-checkout .wc-block-checkout__sidebar,
    .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
        position: static;
        top: auto;
    }
}

@media (max-width: 720px) {
    .woocommerce-cart .orelle-page-card,
    .woocommerce-checkout .orelle-page-card {
        padding: 0.9rem;
    }

    .woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
        padding: 0.72rem;
    }

    .woocommerce-cart .wc-block-cart-item__wrap {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 0.68rem;
    }

    .woocommerce-cart .wc-block-cart-item__image {
        width: 72px;
        min-width: 72px;
    }

    .woocommerce-cart .wc-block-cart-item__total {
        width: auto;
        padding: 0 0.72rem 0.72rem !important;
    }

    .woocommerce-checkout .wc-block-components-address-form {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 0.55rem;
    }

    .woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-price {
        grid-column: 2;
        justify-self: start;
    }
}

/* Phase 3.1: cart duplicate value + text compression fix */
.woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-name {
    display: block;
    max-width: none !important;
    width: 100%;
    margin-bottom: 0.22rem;
    font-size: 1rem;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: normal;
}

.woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-metadata {
    display: block;
    max-width: none !important;
    width: 100%;
    margin-top: 0;
}

/* Hide repeated unit price in item details; keep row total on the right column. */
.woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__prices {
    display: none !important;
}

/* Phase 4: my-account complete restyle */
.woocommerce-account .orelle-main {
    padding-top: 1.3rem;
    padding-bottom: 2.2rem;
}

.woocommerce-account .orelle-page-card {
    padding: clamp(1.1rem, 2.2vw, 1.8rem);
    border-radius: 20px;
}

.woocommerce-account .orelle-page-card > h1 {
    margin: 0 0 0.95rem;
}

.woocommerce-account .orelle-page-card > .woocommerce {
    margin-top: 0.7rem;
}

.woocommerce-account .woocommerce-notices-wrapper {
    margin-bottom: 0.8rem;
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    gap: clamp(0.85rem, 1.8vw, 1.2rem);
    align-items: start;
}

.woocommerce-account:not(.logged-in) .woocommerce {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}

.woocommerce-account .woocommerce > h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    line-height: 1.1;
    color: var(--orelle-green);
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    margin: 0.75rem 0 0;
    padding: clamp(0.92rem, 2vw, 1.2rem);
    border: 1px solid rgba(207, 191, 143, 0.42);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 8px 16px rgba(24, 31, 22, 0.06);
}

.woocommerce-account .woocommerce-form-login > p,
.woocommerce-account .woocommerce-form-register > p {
    margin-bottom: 0.66rem;
}

.woocommerce-account .woocommerce-LostPassword {
    margin-top: 0.55rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    position: sticky;
    top: calc(86px + 0.85rem);
    align-self: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0.48rem;
    list-style: none;
    border: 1px solid rgba(207, 191, 143, 0.42);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(245, 242, 232, 0.92), rgba(239, 232, 211, 0.9));
    box-shadow: var(--orelle-shadow-soft);
    display: grid;
    gap: 0.34rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link {
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 42px;
    padding: 0.48rem 0.7rem;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #23443a;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: border-color var(--orelle-transition), background var(--orelle-transition), transform var(--orelle-transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(109, 102, 64, 0.38);
    flex: 0 0 auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
    border-color: rgba(207, 191, 143, 0.62);
    background: rgba(255, 255, 255, 0.7);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
    border-color: rgba(207, 191, 143, 0.78);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 238, 220, 0.92));
    color: var(--orelle-green-deep);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a::before {
    background: var(--orelle-gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 91, 0.22);
}

.woocommerce-account .woocommerce-MyAccount-content {
    min-width: 0;
    border: 1px solid rgba(207, 191, 143, 0.38);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--orelle-shadow-soft);
    padding: clamp(0.9rem, 2vw, 1.2rem);
}

.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
    margin-top: 0;
}

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

.woocommerce-account .woocommerce-MyAccount-content p {
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    font-weight: 700;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
    margin: 0.4rem 0;
    padding: 0.82rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(207, 191, 143, 0.48);
    background: rgba(245, 242, 232, 0.86);
}

.woocommerce-account .woocommerce-message .button,
.woocommerce-account .woocommerce-info .button {
    margin-left: 0.55rem;
}

.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.48rem;
}

.woocommerce-account .woocommerce-Address-title h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.1;
}

.woocommerce-account .woocommerce-Address-title .edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.24rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(207, 191, 143, 0.64);
    background: rgba(255, 255, 255, 0.75);
    color: var(--orelle-green-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-Addresses {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.woocommerce-account .woocommerce-Address {
    border: 1px solid rgba(207, 191, 143, 0.38);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.46);
    padding: 0.76rem 0.82rem;
}

.woocommerce-account .woocommerce-Address address {
    margin: 0;
    font-style: normal;
    line-height: 1.55;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
    width: 100%;
    margin: 0.5rem 0 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(207, 191, 143, 0.35);
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
    padding: 0.72rem 0.74rem;
    font-size: 0.9rem;
    border-color: rgba(207, 191, 143, 0.3);
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account table.shop_table th {
    background: rgba(245, 242, 232, 0.8);
    color: #5f5839;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
}

.woocommerce-account .woocommerce-orders-table .button,
.woocommerce-account table.shop_table .button {
    min-height: 34px;
    padding: 0.34rem 0.74rem;
    font-size: 0.68rem;
}

.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields > form,
.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register {
    display: grid;
    gap: 0.6rem;
}

.woocommerce-account .woocommerce-form-row label {
    display: inline-block;
    margin-bottom: 0.34rem;
    color: #5e583b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-form-row .input-text,
.woocommerce-account .woocommerce-form-row textarea,
.woocommerce-account .woocommerce-form-row select {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(109, 102, 64, 0.42);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.58rem 0.72rem;
    font-size: 0.94rem;
}

.woocommerce-account fieldset {
    margin: 0.55rem 0 0;
    border: 1px solid rgba(207, 191, 143, 0.36);
    border-radius: 12px;
    padding: 0.72rem;
}

.woocommerce-account fieldset legend {
    padding: 0 0.38rem;
    color: var(--orelle-green);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-button,
.woocommerce-account .woocommerce-Button.button,
.woocommerce-account .button {
    min-height: 42px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.woocommerce-account .form-row .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-account .woocommerce-form-login .form-row:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
    margin-left: auto;
}

.woocommerce-account .woocommerce-pagination {
    margin-top: 0.75rem;
}

@media (max-width: 1080px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.42rem;
        padding: 0.5rem;
        scrollbar-width: thin;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation-link {
        flex: 0 0 auto;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation-link a {
        min-height: 38px;
        padding: 0.4rem 0.64rem;
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .woocommerce-account .orelle-page-card {
        padding: 0.9rem;
    }

    .woocommerce-account .orelle-page-card > h1 {
        font-size: clamp(1.7rem, 7vw, 2.05rem);
        margin-bottom: 0.7rem;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 0.78rem;
        border-radius: 14px;
    }

    .woocommerce-account .woocommerce-form-row .input-text,
    .woocommerce-account .woocommerce-form-row textarea,
    .woocommerce-account .woocommerce-form-row select {
        min-height: 44px;
    }

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

    .woocommerce-account .woocommerce-orders-table,
    .woocommerce-account table.shop_table {
        font-size: 0.84rem;
    }
}

@media (max-width: 560px) {
    .woocommerce-account .woocommerce-form-login .form-row:last-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
        margin-left: 0;
        width: 100%;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation-link a::before {
        display: none;
    }
}

/* Phase 4.1: my-account guest login visual/layout polish */
.woocommerce-account:not(.logged-in) .orelle-page-card > h1 {
    margin-bottom: 1.25rem;
    text-align: center;
}

.woocommerce-account:not(.logged-in) .woocommerce {
    width: min(100%, 700px);
    margin-inline: auto;
    display: block;
}

.woocommerce-account:not(.logged-in) .woocommerce > h2 {
    margin: 0 0 0.9rem;
    text-align: center;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login {
    display: grid;
    gap: 0.95rem;
    padding: clamp(1rem, 2.2vw, 1.4rem);
    width: min(100%, 760px);
    margin-inline: auto;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .form-row {
    margin: 0;
    float: none;
    width: 100%;
    clear: both;
    display: grid;
    gap: 0.46rem;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-form-row {
    margin: 0;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .form-row label {
    margin: 0;
    display: inline-block;
    color: #5f5839;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .input-text {
    width: 100%;
    display: block;
    min-height: 48px;
    padding: 0.62rem 0.74rem;
    line-height: 1.35;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .password-input {
    width: 100%;
    display: block;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .show-password-input {
    display: none !important;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .password-input button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login p.form-row:not(.woocommerce-form-row) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.72rem;
    padding-top: 0.06rem;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login p.form-row:not(.woocommerce-form-row) .woocommerce-form__label-for-checkbox {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    flex: 1 1 auto;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login p.form-row:not(.woocommerce-form-row) .woocommerce-form-login__submit {
    margin: 0;
    width: auto !important;
    min-width: 168px;
    padding-inline: 1.38rem;
    justify-content: center;
    flex: 0 0 auto;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-LostPassword {
    margin: 0;
    padding-top: 0.2rem;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-LostPassword a {
    color: var(--orelle-green-deep);
    font-weight: 700;
}

@media (max-width: 760px) {
    .woocommerce-account:not(.logged-in) .orelle-page-card > h1 {
        text-align: left;
    }

    .woocommerce-account:not(.logged-in) .woocommerce > h2 {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .woocommerce-account:not(.logged-in) .woocommerce-form-login p.form-row:not(.woocommerce-form-row) {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-account:not(.logged-in) .woocommerce-form-login p.form-row:not(.woocommerce-form-row) .woocommerce-form-login__submit {
        width: 100%;
    }
}
