/*
Theme Name: Astra Child Jewelry
Description: Glowra Jewelry - Astra Child Theme
Template: astra
Version: 2.1.8
*/

/* ========================================================
   1. TOKENS / DESIGN SYSTEM
   ======================================================== */

:root {
    --color-primary: #a93119;
    --color-primary-hover: #cb492f;
    --color-primary-container: #cb492f;
    --color-primary-fixed: #ffdad3;

    --color-background: #fff8f5;
    --color-text-dark: #2d1600;
    --color-text-muted: #59413c;

    --color-surface: #ffeadb;
    --color-surface-light: rgba(255, 241, 232, 0.92);
    --color-surface-low: #fff1e8;
    --color-surface-high: #ffe3cd;
    --color-surface-card: #fffaf7;

    --color-outline: #8c716b;
    --color-outline-variant: #e0bfb8;
    --color-tertiary: #735c00;

    --font-heading: 'Noto Serif', serif;
    --font-body: 'Be Vietnam Pro', sans-serif;

    --container-width: 1280px;
    --header-desktop-height: 86px;
    --header-mobile-height: 70px;

    --radius-sm: 0.48rem;
    --radius-md: 0.65rem;
    --radius-lg: 0.9rem;
    --radius-xl: 1.25rem;

    --shadow-soft: 0 10px 28px rgba(45, 22, 0, 0.08);
    --shadow-warm: 0 14px 30px rgba(169, 49, 25, 0.16);

    /*
       SINGLE PRODUCT CONTROL PANEL
       Ajusta estos valores si quieres modificar distribución sin tocar todo el CSS.
    */
    --product-gallery-width: 560px;
    --product-summary-width: 500px;
    --product-purchase-width: 470px;
    --product-layout-gap: clamp(3rem, 5vw, 5.25rem);
}

/* ========================================================
   2. RESET GLOBAL
   ======================================================== */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

body {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: var(--font-body);
}

button {
    appearance: none;
    -webkit-appearance: none;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.ast-container,
.site-content .ast-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-content {
    padding: 0 !important;
}

.glowra-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.full-width-section {
    width: 100vw;
    display: flex;
    justify-content: center;
}

main.glowra-main {
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.woocommerce-page,
body.post-type-archive-product,
body.single-product,
body.glowra-woo-template {
    overflow-x: hidden !important;
    background: var(--color-background);
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

/* ========================================================
   3. UTILIDADES / EFECTOS
   ======================================================== */

.hidden-desktop {
    display: none !important;
}

.metallic-border {
    border: 1px solid rgba(172, 51, 28, 0.15) !important;
}

.soft-glow-shadow {
    box-shadow: 0 20px 40px -10px rgba(169, 49, 25, 0.1) !important;
}

.glowra-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.glowra-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* ========================================================
   4. BOTONES GLOBALES
   ======================================================== */

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(169, 49, 25, 0.3);
    color: #fff;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-text-dark);
}

/* ========================================================
   5. HEADER HOME
   ======================================================== */

.glowra-custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glowra-custom-header .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.menu-links {
    display: flex;
    gap: 2.5rem;
}

.menu-links a {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.header-icons button,
.header-icons a {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.glowra-custom-header.scrolled {
    background: var(--color-surface-light);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(172, 51, 28, 0.1);
    box-shadow: 0 4px 20px rgba(45, 22, 0, 0.05);
}

.glowra-custom-header.scrolled .menu-links a,
.glowra-custom-header.scrolled .header-icons {
    color: var(--color-text-dark);
}

.glowra-custom-header.scrolled .menu-links a:hover {
    color: var(--color-primary);
}

/* ========================================================
   6. HEADER GLOBAL SHOP / PRODUCT / CART
   ======================================================== */

.glowra-global-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: var(--header-desktop-height);
    z-index: 99999 !important;
    background: rgba(255, 248, 245, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(172, 51, 28, 0.12);
    box-shadow: 0 8px 28px rgba(45, 22, 0, 0.06);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.glowra-global-header.scrolled {
    background: rgba(255, 241, 232, 0.98);
    box-shadow: 0 10px 34px rgba(45, 22, 0, 0.1);
}

.glowra-header-inner {
    width: 100%;
    height: var(--header-desktop-height);
    min-height: var(--header-desktop-height);
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.glowra-mobile-menu-toggle,
.glowra-mobile-menu-toggle.hidden-desktop {
    display: none !important;
}

.glowra-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    width: 180px;
    max-width: 180px;
    overflow: visible;
}

.glowra-header-logo {
    width: auto !important;
    height: auto !important;
    max-width: 165px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    object-position: center !important;
}

.glowra-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    min-width: 0;
}

.glowra-nav-links a {
    color: var(--color-text-dark);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.glowra-nav-links a:hover {
    color: var(--color-primary);
}

.glowra-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
    color: var(--color-text-dark);
    flex-shrink: 0;
}

.glowra-header-icons button,
.glowra-header-icons a {
    background: transparent !important;
    border: none !important;
    color: inherit;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.glowra-header-icons button:hover,
.glowra-header-icons a:hover {
    color: var(--color-primary);
}

.glowra-header-icons .material-symbols-outlined {
    font-size: 26px;
    line-height: 1;
}

.glowra-cart-link {
    position: relative;
}

.glowra-cart-count {
    position: absolute;
    top: -9px;
    right: -10px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    display: inline-block;
}

.glowra-cart-count.is-empty {
    display: none;
}

/* ========================================================
   7. SEARCH DROPDOWN + SUGGESTIONS
   ======================================================== */

.glowra-header-search {
    position: absolute;
    top: calc(100% + 10px);
    right: 4rem;
    width: min(380px, calc(100vw - 2rem));
    background: var(--color-background);
    border: 1px solid rgba(172, 51, 28, 0.16);
    box-shadow: 0 20px 45px rgba(45, 22, 0, 0.12);
    border-radius: 16px;
    padding: 0.7rem;
    display: none !important;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 100000;
}

.glowra-header-search.is-open {
    display: flex !important;
}

.glowra-search-row {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 0.55rem;
    align-items: center;
    width: 100%;
}

.glowra-header-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 1px solid rgba(172, 51, 28, 0.16);
    background: #fff;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 0 0.95rem;
    border-radius: 12px;
    outline: none;
}

.glowra-header-search input[type="search"]:focus {
    border-color: rgba(169, 49, 25, 0.45);
    box-shadow: 0 0 0 3px rgba(169, 49, 25, 0.08);
}

.glowra-header-search input[type="search"]::placeholder {
    color: rgba(45, 22, 0, 0.45);
}

.glowra-header-search button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.glowra-header-search button:hover {
    background: var(--color-primary-hover);
}

.glowra-header-search button .material-symbols-outlined {
    font-size: 24px;
}

.glowra-search-suggestions {
    display: none;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
    padding-top: 0.35rem;
}

.glowra-search-suggestions.is-visible {
    display: block;
}

.glowra-search-suggestion {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.55rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: background 0.2s ease;
}

.glowra-search-suggestion:hover {
    background: rgba(255, 234, 219, 0.7);
}

.glowra-search-suggestion img {
    width: 54px;
    height: 66px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
}

.glowra-search-suggestion strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.glowra-search-suggestion small {
    display: block;
    margin-top: 0.2rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 600;
}

.glowra-search-empty {
    padding: 0.85rem;
    font-size: 0.84rem;
    color: var(--color-text-muted);
}

/* ========================================================
   8. HOME HERO
   ======================================================== */

.glowra-hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 22, 0, 0.4) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-text-box {
    max-width: 650px;
}

.hero-text-box h1 {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text-box p {
    font-size: 1.25rem;
    color: #fff8f5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin: 1rem 0 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ========================================================
   9. HOME CATEGORÍAS
   ======================================================== */

.collections-wrapper {
    padding: 6rem 0;
}

.section-heading p {
    font-style: italic;
    margin-top: 0.5rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.medium-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    display: block;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 22, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.card-overlay h3 {
    color: #fff;
}

/* ========================================================
   10. HOME BEST SELLERS
   ======================================================== */

.best-sellers-section {
    background: rgba(255, 241, 232, 0.4);
    padding: 7rem 0;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.link-view-all {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.product-image-box {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.5rem;
    display: block;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-item:hover .product-image-box img {
    transform: scale(1.05);
}

.add-to-cart-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    opacity: 0;
}

.product-item:hover .add-to-cart-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.add-to-cart-wrapper .btn-primary {
    width: 100%;
    padding: 1rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
    transition: color 0.3s;
}

.product-title:hover {
    color: var(--color-primary);
}

.product-price {
    color: var(--color-text-muted);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* ========================================================
   11. HOME STORY / GIFTS
   ======================================================== */

.story-wrapper {
    padding: 8rem 0;
}

.story-section {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.story-image-wrapper,
.story-content {
    width: 100%;
}

.story-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 1rem;
}

.gifts-wrapper {
    padding: 4rem 0 8rem;
}

.gifts-box {
    background: var(--color-surface);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gifts-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gifts-image {
    width: 100%;
    height: 400px;
}

.gifts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================================
   12. FOOTER HOME / GLOBAL
   ======================================================== */

.glowra-footer,
.glowra-global-footer {
    background: var(--color-text-dark);
    color: #fff8f5;
    padding: 6rem 0 2rem;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    clear: both;
    float: none !important;
    position: relative;
}

.glowra-footer .glowra-container,
.glowra-global-footer .glowra-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    align-items: start;
}

.footer-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-col:first-child p {
    max-width: 360px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.legal-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

/* ========================================================
   13. PÁGINAS LEGALES
   ======================================================== */

.glowra-legal-page main {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
    background: transparent;
}

.glowra-legal-page .entry-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
}

.glowra-legal-page .entry-content {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.glowra-legal-page .entry-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--color-text-dark);
}

.glowra-legal-page .entry-content p {
    margin-bottom: 1.5rem;
}

/* ========================================================
   14. SHOP ARCHIVE
   ======================================================== */

.glowra-shop-page {
    padding-top: var(--header-desktop-height);
    padding-bottom: 6rem;
    background: var(--color-background);
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-category-bar {
    width: 100%;
    background: var(--color-background);
    border-bottom: 1px solid rgba(172, 51, 28, 0.08);
    padding: 2rem 0;
}

.shop-hero {
    text-align: center;
    padding: 4rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(172, 51, 28, 0.05);
}

.glowra-breadcrumb {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.glowra-breadcrumb a {
    color: var(--color-text-dark);
}

.shop-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.shop-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.shop-subtitle {
    max-width: 660px;
    margin: 0 auto;
}

.category-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.category-chips a {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(172, 51, 28, 0.15);
    border-radius: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.category-chips a:hover,
.category-chips a.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(172, 51, 28, 0.1);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.shop-toolbar select {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.glowra-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
}

.shop-card {
    background: transparent;
    border: none;
    min-width: 0;
}

.card-image-wrapper {
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    background: #fff;
    margin-bottom: 1rem;
}

.product-image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-link .product-img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.45s ease, transform 0.8s ease;
}

.product-image-link .product-img-main {
    opacity: 1;
    z-index: 1;
}

.product-image-link .product-img-hover {
    opacity: 0;
    z-index: 2;
}

.shop-card:hover .product-image-link .product-img-main {
    opacity: 0;
}

.shop-card:hover .product-image-link .product-img-hover {
    opacity: 1;
    transform: scale(1.04);
}

.shop-card:hover .product-image-link .product-img-main:only-child {
    opacity: 1;
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 6;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    color: var(--color-primary);
}

.grid-add-to-cart {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 7;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 248, 245, 0.94);
    color: var(--color-text-dark);
    border: 1px solid rgba(172, 51, 28, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(45, 22, 0, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.grid-add-to-cart:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px) !important;
}

.grid-add-to-cart .material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
}

.grid-add-to-cart.added {
    background: var(--color-primary);
    color: #fff;
}

.grid-add-to-cart.loading {
    opacity: 0.65 !important;
    pointer-events: none;
}

.grid-add-to-cart.added::after {
    content: "Added";
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    background: var(--color-text-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(45, 22, 0, 0.16);
}

.card-image-wrapper .added_to_cart {
    display: none !important;
}

.card-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.card-title {
    font-size: 1.1rem;
    margin: 0.25rem 0;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.35;
}

.card-title a {
    color: var(--color-text-dark);
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-price {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.shop-empty-state {
    text-align: center;
    padding: 6rem 0;
}

.empty-icon {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

/* ========================================================
   15. SINGLE PRODUCT
   ======================================================== */

.glowra-single-product {
    padding-top: var(--header-desktop-height);
    padding-bottom: 7rem;
    background: var(--color-background);
    width: 100%;
    display: flex;
    justify-content: center;
}

.glowra-single-product .glowra-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.glowra-single-product .glowra-breadcrumb {
    margin: 3rem 0 2.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.glowra-single-product .glowra-breadcrumb a {
    color: var(--color-text-dark);
}

.glowra-single-product .glowra-breadcrumb span:last-child {
    color: var(--color-primary);
    font-weight: 700;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: var(--product-layout-gap);
    align-items: start;
    margin-bottom: 6rem;
}

.product-gallery {
    width: 100%;
    max-width: var(--product-gallery-width);
    min-width: 0;
    justify-self: start;
}

.main-image,
button.main-image,
.glowra-main-image-button {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 0 1.05rem;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: var(--radius-lg);
    background: transparent !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: zoom-in;
}

.main-image:focus,
.main-image:focus-visible,
.glowra-main-image-button:focus,
.glowra-main-image-button:focus-visible {
    outline: 2px solid rgba(169, 49, 25, 0.3) !important;
    outline-offset: 4px;
}

.main-image img,
.glowra-main-product-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: var(--radius-lg);
    background: transparent !important;
    transition: transform 0.55s ease;
}

.main-image:hover img,
.glowra-main-image-button:hover img {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.1rem 0 0.6rem;
}

.thumbnail-gallery::-webkit-scrollbar {
    display: none;
}

.thumb-wrapper {
    flex: 0 0 82px;
    width: 82px;
    height: 82px;
    min-width: 82px;
    min-height: 82px;
    aspect-ratio: 1;
    padding: 0 !important;
    border: 1px solid rgba(224, 191, 184, 0.9) !important;
    border-radius: 0.6rem;
    background: transparent !important;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.thumb-wrapper:hover,
.thumb-wrapper.is-active {
    border-color: var(--color-primary) !important;
}

.thumb-wrapper img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit;
}

.product-summary {
    width: 100%;
    max-width: var(--product-summary-width);
    padding-top: 0.55rem;
}

.glowra-single-product .product-cat {
    display: block;
    color: var(--color-primary);
    letter-spacing: 0.22em;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.glowra-single-product .product-title {
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 4.1vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--color-text-dark);
    margin: 0 0 1.05rem;
}

.glowra-single-product .product-price-wrapper,
.glowra-single-product .price {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 1.35rem;
}

.glowra-single-product .product-price-wrapper del,
.glowra-single-product .price del {
    color: var(--color-outline);
    font-size: 1.05rem;
    font-weight: 500;
    margin-left: 0.75rem;
    opacity: 0.75;
}

.glowra-single-product .product-description {
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--color-text-muted);
    max-width: var(--product-summary-width);
    margin-bottom: 1.5rem;
}

.glowra-single-product .product-badges,
.glowra-single-product .glowra-premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin: 0 0 1.7rem;
    padding: 0;
    border-bottom: none;
}

.glowra-single-product .product-badges .badge,
.glowra-single-product .glowra-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    background: var(--color-surface-high);
    border: 1px solid rgba(224, 191, 184, 0.75);
    color: var(--color-text-dark);
    border-radius: 999px;
    padding: 0.42rem 0.68rem;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.glowra-single-product .product-badges .material-symbols-outlined,
.glowra-single-product .glowra-badge .material-symbols-outlined {
    color: var(--color-tertiary);
    font-size: 0.9rem;
    line-height: 1;
}

.glowra-single-product .product-add-to-cart,
.glowra-single-product .glowra-purchase-box {
    width: 100%;
    max-width: var(--product-purchase-width);
    margin-top: 0.5rem;
}

.glowra-single-product .glowra-cart-form {
    display: grid !important;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 0.72rem;
    align-items: stretch;
    width: 100%;
    max-width: var(--product-purchase-width);
    margin: 0 !important;
}

.glowra-single-product .glowra-qty-control {
    height: 44px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    border: 1px solid var(--color-outline);
    border-radius: var(--radius-sm);
    background: #fff;
    overflow: hidden;
}

.glowra-single-product .glowra-qty-btn {
    width: 36px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.glowra-single-product .glowra-qty-btn:hover:not(:disabled) {
    background: var(--color-surface-low);
}

.glowra-single-product .glowra-qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.glowra-single-product .glowra-qty-btn .material-symbols-outlined {
    font-size: 1rem;
}

.glowra-single-product .glowra-qty-control input.qty {
    width: 100%;
    height: 44px;
    border: 0 !important;
    background: transparent !important;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    box-shadow: none !important;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.glowra-single-product .glowra-qty-control input.qty::-webkit-outer-spin-button,
.glowra-single-product .glowra-qty-control input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.glowra-single-product .glowra-add-cart-btn {
    height: 44px !important;
    width: 100% !important;
    border-radius: var(--radius-sm) !important;
    background: var(--color-primary-container) !important;
    color: #fff !important;
    border: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 10px 22px rgba(169, 49, 25, 0.15) !important;
    transition: all 0.25s ease !important;
    padding: 0 1rem !important;
    margin: 0 !important;
}

.glowra-single-product .glowra-add-cart-btn:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(169, 49, 25, 0.22) !important;
}

.glowra-single-product .glowra-add-cart-btn .material-symbols-outlined {
    color: inherit;
    font-size: 1rem;
}

.glowra-single-product .glowra-buy-now-button {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-primary) !important;
    background: transparent !important;
    color: var(--color-primary) !important;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0;
    padding: 0 1rem;
    text-transform: none;
    box-shadow: none !important;
}

.glowra-single-product .glowra-buy-now-button:hover {
    background: rgba(255, 218, 211, 0.45) !important;
    color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
    transform: none;
}

.glowra-single-product .trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--product-purchase-width);
    margin: 1.6rem 0 2rem;
    padding: 1.15rem 0 0;
    border-top: 1px solid rgba(224, 191, 184, 0.45);
    color: var(--color-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.glowra-single-product .trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glowra-single-product .trust-row .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 1.08rem;
}

.glowra-single-product .product-accordions {
    max-width: var(--product-purchase-width);
    margin-top: 2rem;
}

.glowra-single-product .accordion {
    border-bottom: 1px solid rgba(224, 191, 184, 0.55);
    padding: 1rem 0;
}

.glowra-single-product .accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.12rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.glowra-single-product .accordion summary::-webkit-details-marker {
    display: none;
}

.glowra-single-product .accordion-content {
    padding: 1.5rem 0 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.related-products {
    margin-top: 6rem;
}

.related-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.glowra-single-product .stock {
    display: none !important;
}

/* ========================================================
   16. MODAL DE IMAGEN SINGLE PRODUCT
   ======================================================== */

.glowra-image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(45, 22, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glowra-image-modal.is-open {
    display: flex;
}

.glowra-image-modal img {
    max-width: min(94vw, 1100px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.glowra-image-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 248, 245, 0.94);
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ========================================================
   17. GLOWRA CART PAGE
   ======================================================== */

.glowra-cart-page {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-desktop-height);
    padding-bottom: 7rem;
    background: var(--color-background);
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

.glowra-cart-page .glowra-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb */

.glowra-cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 3rem 0 2rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-outline);
}

.glowra-cart-breadcrumb a {
    color: var(--color-text-muted);
    transition: color 0.25s ease;
}

.glowra-cart-breadcrumb a:hover {
    color: var(--color-primary);
}

.glowra-cart-breadcrumb .material-symbols-outlined {
    font-size: 0.95rem;
    line-height: 1;
    color: var(--color-outline-variant);
}

.glowra-cart-breadcrumb span:last-child {
    color: var(--color-primary);
}

/* Header */

.glowra-cart-header {
    margin-bottom: 3.5rem;
}

.glowra-cart-title {
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--color-text-dark);
    margin: 0 0 0.45rem;
}

.glowra-cart-count-label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Layout */

.glowra-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.glowra-cart-items {
    width: 100%;
    min-width: 0;
}

.glowra-cart-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Cart Item */

.glowra-cart-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 2rem;
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.55);
}

.glowra-cart-item:last-child {
    margin-bottom: 0;
}

.glowra-cart-item-image {
    width: 150px;
    aspect-ratio: 4 / 5;
    border-radius: 0.72rem;
    overflow: hidden;
    background: var(--color-surface-low);
    border: 1px solid rgba(224, 191, 184, 0.55);
}

.glowra-cart-item-image a,
.glowra-cart-item-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.glowra-cart-item-image img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.glowra-cart-item-image:hover img {
    transform: scale(1.035);
}

.glowra-cart-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.25rem 0;
}

.glowra-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.glowra-cart-item-info {
    min-width: 0;
}

.glowra-cart-item-title {
    margin: 0 0 0.45rem;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-dark);
}

.glowra-cart-item-title a {
    color: inherit;
    transition: color 0.25s ease;
}

.glowra-cart-item-title a:hover {
    color: var(--color-primary);
}

.glowra-cart-item-meta,
.glowra-cart-item-meta p,
.glowra-cart-item-meta dl,
.glowra-cart-item-meta dt,
.glowra-cart-item-meta dd {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.glowra-cart-item-meta dl {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
}

.glowra-cart-item-meta dt {
    font-weight: 700;
}

.glowra-cart-remove {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-outline);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.glowra-cart-remove:hover {
    background: var(--color-surface-low);
    color: var(--color-primary);
}

.glowra-cart-remove .material-symbols-outlined {
    font-size: 1.25rem;
    line-height: 1;
}

.glowra-cart-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Quantity */

.glowra-cart-quantity {
    display: inline-grid;
    grid-template-columns: 34px 40px 34px;
    align-items: center;
    height: 36px;
    border: 1px solid rgba(224, 191, 184, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.glowra-cart-qty-btn {
    width: 34px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.glowra-cart-qty-btn:hover:not(:disabled) {
    background: var(--color-surface-low);
}

.glowra-cart-qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.glowra-cart-qty-btn .material-symbols-outlined {
    font-size: 1rem;
    line-height: 1;
}

.glowra-cart-quantity input.qty {
    width: 40px !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    box-shadow: none !important;
    appearance: textfield;
    -moz-appearance: textfield;
}

.glowra-cart-quantity input.qty::-webkit-outer-spin-button,
.glowra-cart-quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.glowra-cart-item-price {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    color: var(--color-text-dark);
    white-space: nowrap;
}

/* Actions */

.glowra-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.glowra-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.glowra-cart-update-button {
    min-height: 42px;
    padding: 0 1.25rem;
    border: 1px solid rgba(169, 49, 25, 0.22);
    border-radius: 0.55rem;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.glowra-cart-update-button:hover {
    background: var(--color-primary-fixed);
    border-color: var(--color-primary);
}

/* Summary */

.glowra-cart-summary {
    width: 100%;
    position: sticky;
    top: calc(var(--header-desktop-height) + 2rem);
}

.glowra-cart-summary-card {
    background: var(--color-surface-low);
    border: 1px solid rgba(224, 191, 184, 0.65);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(45, 22, 0, 0.07);
}

.glowra-cart-summary-title {
    margin: 0 0 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.65);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.glowra-cart-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.glowra-cart-summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-dark);
}

.glowra-cart-summary-line span:first-child {
    color: var(--color-text-muted);
}

.glowra-cart-summary-line small {
    display: block;
    max-width: 160px;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-style: italic;
    text-align: right;
}

.glowra-cart-divider,
.radiance-divider {
    height: 1px;
    width: 100%;
    margin: 1.5rem 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-outline-variant) 50%, transparent 100%);
}

.glowra-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.glowra-cart-total-label {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.glowra-cart-total-value {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 600;
    color: var(--color-primary);
}

.glowra-cart-checkout-button,
.glowra-cart-page .checkout-button {
    width: 100%;
    min-height: 52px;
    border: 0 !important;
    border-radius: 0.65rem !important;
    background: var(--color-primary-container) !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(169, 49, 25, 0.18);
    transition: all 0.25s ease;
}

.glowra-cart-checkout-button:hover,
.glowra-cart-page .checkout-button:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.glowra-cart-secure-note {
    margin: 1.25rem 0 0;
    color: var(--color-outline);
    font-size: 0.74rem;
    font-style: italic;
    text-align: center;
}

/* Empty Cart */

.glowra-cart-empty {
    max-width: 720px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--color-surface-low);
    border: 1px solid rgba(224, 191, 184, 0.65);
    border-radius: 1rem;
}

.glowra-cart-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 999px;
    background: var(--color-primary-fixed);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glowra-cart-empty-icon .material-symbols-outlined {
    font-size: 2rem;
}

.glowra-cart-empty h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-dark);
}

.glowra-cart-empty p {
    max-width: 460px;
    margin: 0 auto 2rem;
    color: var(--color-text-muted);
}

.glowra-cart-empty .button,
.glowra-cart-empty-button {
    min-height: 48px;
    padding: 0 1.6rem;
    border: 0 !important;
    border-radius: 0.6rem !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* WooCommerce Notices dentro del carrito */

.glowra-cart-page .woocommerce-notices-wrapper {
    margin: 1.5rem 0;
}

.glowra-cart-page .woocommerce-message,
.glowra-cart-page .woocommerce-info,
.glowra-cart-page .woocommerce-error {
    margin: 0 0 1.5rem !important;
    padding: 1rem 1.25rem !important;
    border-top: 0 !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: 0.75rem;
    background: var(--color-surface-low) !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body);
    box-shadow: none !important;
}

.glowra-cart-page .woocommerce-message::before,
.glowra-cart-page .woocommerce-info::before,
.glowra-cart-page .woocommerce-error::before {
    color: var(--color-primary);
}

/* Mobile Cart */

@media (max-width: 900px) {
    .glowra-cart-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .glowra-cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .glowra-cart-page {
        padding-top: var(--header-mobile-height);
        padding-bottom: 3rem;
    }

    .glowra-cart-page .glowra-container {
        padding: 0 1rem;
    }

    .glowra-cart-breadcrumb {
        margin: 2rem 0 1.5rem;
        font-size: 0.68rem;
    }

    .glowra-cart-header {
        margin-bottom: 2rem;
    }

    .glowra-cart-title {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .glowra-cart-count-label {
        font-size: 0.92rem;
    }

    .glowra-cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(224, 191, 184, 0.55);
        border-radius: 1rem;
        background: var(--color-surface-low);
        box-shadow: 0 8px 24px rgba(45, 22, 0, 0.045);
    }

    .glowra-cart-item-image {
        width: 92px;
        border-radius: 0.72rem;
    }

    .glowra-cart-item-content {
        gap: 1rem;
        padding: 0;
    }

    .glowra-cart-item-title {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .glowra-cart-item-meta,
    .glowra-cart-item-meta p,
    .glowra-cart-item-meta dl,
    .glowra-cart-item-meta dt,
    .glowra-cart-item-meta dd {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .glowra-cart-remove {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .glowra-cart-remove .material-symbols-outlined {
        font-size: 1.05rem;
    }

    .glowra-cart-item-bottom {
        align-items: center;
        gap: 0.8rem;
    }

    .glowra-cart-quantity {
        grid-template-columns: 28px 32px 28px;
        height: 32px;
        background: rgba(255, 255, 255, 0.55);
    }

    .glowra-cart-qty-btn {
        width: 28px;
        height: 32px;
    }

    .glowra-cart-qty-btn .material-symbols-outlined {
        font-size: 0.95rem;
    }

    .glowra-cart-quantity input.qty {
        width: 32px !important;
        height: 32px !important;
        min-height: 32px !important;
        font-size: 0.78rem !important;
    }

    .glowra-cart-item-price {
        font-size: 1rem;
        color: var(--color-primary);
    }

    .glowra-cart-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.5rem;
    }

    .glowra-cart-continue,
    .glowra-cart-update-button {
        width: 100%;
        justify-content: center;
    }

    .glowra-cart-summary-card {
        padding: 1.35rem;
        border-radius: 1rem;
    }

    .glowra-cart-summary-title {
        font-size: 1.35rem;
    }

    .glowra-cart-summary-line {
        font-size: 0.9rem;
    }

    .glowra-cart-total-label {
        font-size: 1.25rem;
    }

    .glowra-cart-total-value {
        font-size: 1.7rem;
    }

    .glowra-cart-checkout-button,
    .glowra-cart-page .checkout-button {
        min-height: 50px;
        font-size: 0.78rem !important;
    }
}

@media (max-width: 420px) {
    .glowra-cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 0.85rem;
        padding: 0.85rem;
    }

    .glowra-cart-item-image {
        width: 84px;
    }

    .glowra-cart-item-title {
        font-size: 0.95rem;
    }

    .glowra-cart-item-bottom {
        flex-wrap: wrap;
    }

    .glowra-cart-item-price {
        margin-left: auto;
    }
}
/* ========================================================
   18. WOOCOMMERCE OVERRIDES CONTROLADOS
   ======================================================== */

.woocommerce div.product form.cart {
    margin-bottom: 2rem;
}

.woocommerce table.variations {
    margin-bottom: 1.5rem;
    width: 100%;
    border: none;
}

.woocommerce table.variations td {
    padding: 0.5rem 0;
    border: none;
}

.woocommerce table.variations select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(172, 51, 28, 0.2);
    border-radius: var(--radius-md);
    background: transparent;
    font-family: var(--font-body);
}

.woocommerce .woocommerce-pagination {
    margin-top: 4rem;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    color: #fff;
}

/* ========================================================
   19. RESPONSIVE
   ======================================================== */

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .collections-grid {
        grid-template-columns: 4fr 8fr;
        height: 700px;
    }

    .medium-cards-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100%;
    }

    .story-section {
        flex-direction: row;
    }

    .story-image-wrapper,
    .story-content {
        width: 50%;
    }

    .story-content {
        padding-left: 3rem;
    }

    .gifts-box {
        flex-direction: row;
    }

    .gifts-content {
        width: 50%;
        padding: 6rem;
    }

    .gifts-image {
        width: 50%;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .glowra-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
        gap: 3rem;
    }

    .product-gallery {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hidden-mobile,
    .glowra-global-header .hidden-mobile {
        display: none !important;
    }

    .glowra-custom-header {
        height: var(--header-mobile-height);
        padding: 0 2rem;
    }

    .glowra-global-header {
        height: var(--header-mobile-height);
    }

    .glowra-header-inner {
        height: var(--header-mobile-height) !important;
        min-height: var(--header-mobile-height) !important;
        padding: 0 1rem;
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 0.8rem;
    }

    .glowra-logo-link {
        width: auto;
        max-width: 132px;
        overflow: visible;
    }

    .glowra-header-logo {
        width: auto !important;
        height: auto !important;
        max-width: 128px !important;
        max-height: 44px !important;
        object-fit: contain !important;
    }

    .glowra-header-icons {
        gap: 0.95rem;
    }

    .glowra-header-icons .material-symbols-outlined {
        font-size: 23px;
    }

    .glowra-header-search {
        top: calc(100% + 8px);
        left: 1rem;
        right: 1rem;
        width: auto;
        border-radius: 14px;
    }

    .glowra-search-row {
        grid-template-columns: 1fr 44px;
    }

    .glowra-header-search input[type="search"],
    .glowra-header-search button {
        height: 44px;
    }

    .medium-cards-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -2rem;
        padding: 0 2rem 2rem;
    }

    .medium-cards-wrapper::-webkit-scrollbar {
        display: none;
    }

    .medium-cards-wrapper .collection-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 400px;
    }

    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        margin: 0 -2rem;
        padding: 0 2rem 2rem;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .glowra-shop-page,
    .glowra-single-product,
    .glowra-cart-page {
        padding-top: var(--header-mobile-height);
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-chips {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem 0.5rem;
        margin-inline: -1rem;
        scroll-snap-type: x mandatory;
    }

    .category-chips::-webkit-scrollbar {
        display: none;
    }

    .category-chips a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .glowra-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .grid-add-to-cart {
        width: 40px;
        height: 40px;
        right: 0.65rem;
        bottom: 0.65rem;
    }

    .grid-add-to-cart .material-symbols-outlined {
        font-size: 20px;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .glowra-single-product .glowra-container,
    .glowra-cart-page .glowra-container {
        padding: 0 1rem;
    }

    .glowra-single-product .glowra-breadcrumb {
        margin: 1.75rem 0 1.6rem;
        font-size: 0.65rem;
        gap: 0.4rem;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .product-gallery {
        width: 100%;
        max-width: 100%;
        justify-self: auto;
    }

    .main-image,
    button.main-image,
    .glowra-main-image-button {
        width: 100%;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 0.85rem;
        border-radius: 0.75rem;
    }

    .main-image img,
    .glowra-main-product-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0.75rem;
    }

    .thumbnail-gallery {
        gap: 0.75rem;
        padding: 0 0 0.8rem;
    }

    .thumb-wrapper {
        flex: 0 0 74px;
        width: 74px;
        height: 74px;
        min-width: 74px;
        min-height: 74px;
        padding: 0 !important;
        border-radius: 0.55rem;
        background: transparent !important;
        overflow: hidden;
    }

    .thumb-wrapper img {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .product-summary {
        max-width: 100%;
        padding-top: 0;
    }

    .glowra-single-product .product-title {
        font-size: clamp(2.15rem, 10vw, 2.85rem);
    }

    .glowra-single-product .product-add-to-cart,
    .glowra-single-product .glowra-purchase-box {
        max-width: 100%;
        width: 100%;
    }

    .glowra-single-product .glowra-cart-form {
        display: grid !important;
        grid-template-columns: 104px minmax(0, 1fr) !important;
        gap: 0.58rem;
        max-width: 100%;
        width: 100%;
    }

    .glowra-single-product .glowra-qty-control,
    .glowra-single-product .glowra-qty-btn,
    .glowra-single-product .glowra-qty-control input.qty,
    .glowra-single-product .glowra-add-cart-btn,
    .glowra-single-product .glowra-buy-now-button {
        height: 42px !important;
    }

    .glowra-single-product .glowra-qty-control {
        grid-template-columns: 30px 1fr 30px;
    }

    .glowra-single-product .glowra-qty-btn {
        width: 30px;
    }

    .glowra-single-product .glowra-add-cart-btn,
    .glowra-single-product .glowra-buy-now-button {
        font-size: 0.78rem !important;
    }

    .glowra-single-product .glowra-add-cart-btn .material-symbols-outlined {
        font-size: 0.95rem;
    }

    .glowra-single-product .glowra-buy-now-button {
        grid-column: 1 / -1;
    }

    .glowra-single-product .product-badges,
    .glowra-single-product .glowra-premium-badges {
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .glowra-single-product .product-badges .badge,
    .glowra-single-product .glowra-badge {
        font-size: 0.58rem;
        padding: 0.4rem 0.62rem;
    }

    .glowra-single-product .trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        max-width: 100%;
    }

    .glowra-single-product .product-accordions {
        max-width: 100%;
    }

    .glowra-image-modal {
        padding: 1rem;
    }

    .glowra-image-modal img {
        max-width: 94vw;
        max-height: 82vh;
        border-radius: 0.75rem;
    }
}

@media (max-width: 380px) {
    .glowra-logo-link {
        max-width: 112px;
    }

    .glowra-header-logo {
        max-width: 108px !important;
        max-height: 40px !important;
    }

    .glowra-header-icons {
        gap: 0.72rem;
    }

    .glowra-single-product .glowra-cart-form {
        grid-template-columns: 98px minmax(0, 1fr) !important;
    }

    .glowra-single-product .glowra-add-cart-btn,
    .glowra-single-product .glowra-buy-now-button {
        font-size: 0.74rem !important;
    }
}

/* ========================================================
   18. GLOWRA CHECKOUT PAGE / SECURE CHECKOUT
   ======================================================== */

/* -----------------------------
   BASE
----------------------------- */

.glowra-checkout-page {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-desktop-height);
    padding-bottom: 7rem;
    background: var(--color-background);
    color: var(--color-text-dark);
}

.glowra-checkout-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3.25rem 2rem 0;
}

/* Oculta títulos nativos de Astra / WordPress */
body.woocommerce-checkout .entry-title,
.glowra-checkout-page .entry-title,
.glowra-checkout-page > h1 {
    display: none !important;
}

/* -----------------------------
   BREADCRUMB
----------------------------- */

.glowra-checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.glowra-checkout-breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
}

.glowra-checkout-breadcrumb a:hover {
    color: var(--color-primary);
}

.glowra-checkout-breadcrumb span:last-child {
    color: var(--color-primary);
}

.glowra-checkout-header {
    display: none !important;
}

/* -----------------------------
   WOOCOMMERCE NOTICES
----------------------------- */

.glowra-checkout-page .woocommerce-NoticeGroup,
.glowra-checkout-page .woocommerce-NoticeGroup-checkout {
    margin: 0 0 1.5rem;
}

.glowra-checkout-page .woocommerce-error,
.glowra-checkout-page .woocommerce-message,
.glowra-checkout-page .woocommerce-info {
    background: rgba(255, 234, 219, 0.72) !important;
    border: 0 !important;
    border-left: 3px solid var(--color-primary) !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    padding: 1rem 1.15rem !important;
    margin: 0 0 1.5rem !important;
    box-shadow: none !important;
    border-radius: 0.65rem;
}

.glowra-checkout-page .woocommerce-error li {
    margin: 0.15rem 0;
}

.glowra-checkout-page .woocommerce-form-coupon-toggle,
.glowra-checkout-page .woocommerce-form-login-toggle,
.glowra-checkout-page .checkout_coupon,
.glowra-checkout-page .woocommerce-form-login {
    display: none !important;
}

/* -----------------------------
   DESKTOP STEPS
----------------------------- */

.glowra-checkout-steps {
    max-width: 680px;
    margin: 2rem auto 3.6rem;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 1.1rem;
}

.glowra-checkout-step {
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--color-outline);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.glowra-checkout-step span {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-high);
    border: 1px solid var(--color-outline-variant);
    color: var(--color-text-dark);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    transition: all 0.22s ease;
}

.glowra-checkout-step strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    color: inherit;
}

.glowra-checkout-step:hover,
.glowra-checkout-step:focus,
.glowra-checkout-step:focus-visible {
    background: transparent !important;
    color: var(--color-primary) !important;
    box-shadow: none !important;
    outline: none !important;
}

.glowra-checkout-step:hover span,
.glowra-checkout-step:focus span,
.glowra-checkout-step:focus-visible span {
    background: var(--color-primary-fixed) !important;
    border-color: rgba(169, 49, 25, 0.28);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.glowra-checkout-step.is-active {
    color: var(--color-primary) !important;
    background: transparent !important;
}

.glowra-checkout-step.is-active span {
    background: var(--color-primary-container) !important;
    color: #fff !important;
    border-color: var(--color-primary-container);
    box-shadow: 0 10px 24px rgba(169, 49, 25, 0.18);
}

.glowra-checkout-step.is-complete span {
    background: var(--color-primary-fixed);
    color: var(--color-primary);
    border-color: rgba(169, 49, 25, 0.22);
}

.glowra-checkout-step-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(224, 191, 184, 0.95) 50%,
        transparent 100%
    );
}

/* -----------------------------
   DESKTOP LAYOUT
----------------------------- */

.glowra-checkout-form {
    width: 100%;
    margin: 0;
}

@media (min-width: 1025px) {
    body.woocommerce-checkout,
    body.woocommerce-checkout .site,
    body.woocommerce-checkout #page,
    body.woocommerce-checkout .site-content,
    body.woocommerce-checkout .ast-container,
    body.woocommerce-checkout .entry-content,
    body.woocommerce-checkout .woocommerce,
    body.woocommerce-checkout .glowra-checkout-page,
    body.woocommerce-checkout .glowra-checkout-container,
    body.woocommerce-checkout .glowra-checkout-form,
    body.woocommerce-checkout form.woocommerce-checkout,
    body.woocommerce-checkout .glowra-checkout-layout {
        overflow: visible !important;
    }

    body.woocommerce-checkout .glowra-checkout-container {
        width: 100% !important;
        max-width: 1280px !important;
        margin: 0 auto !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    body.woocommerce-checkout .glowra-checkout-layout {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 460px !important;
        gap: clamp(2.5rem, 4vw, 4rem) !important;
        align-items: start !important;
    }

    body.woocommerce-checkout .glowra-checkout-main {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    body.woocommerce-checkout .glowra-checkout-summary {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 460px !important;
        min-width: 460px !important;
        max-width: 460px !important;
        align-self: start !important;
        justify-self: end !important;
        position: sticky !important;
        top: calc(var(--header-desktop-height) + 1rem) !important;
        height: fit-content !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        z-index: 20 !important;
    }
}

/* En desktop funciona por pasos */
.glowra-checkout-panel {
    display: none;
}

.glowra-checkout-panel.is-active {
    display: block;
}

/* Títulos móviles ocultos en desktop */
.glowra-mobile-checkout-step-title {
    display: none;
}

/* -----------------------------
   CARDS
----------------------------- */

.glowra-checkout-card,
.glowra-checkout-summary-card {
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 1.25rem;
    padding: clamp(1.4rem, 2.6vw, 2.25rem);
}

.glowra-checkout-card {
    background: rgba(255, 248, 245, 0.74);
    box-shadow: 0 18px 54px rgba(45, 22, 0, 0.035);
}

/* -----------------------------
   SECTION HEADINGS
----------------------------- */

.glowra-checkout-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding-bottom: 1.35rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.72);
}

.glowra-checkout-section-heading > .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 1.28rem;
    margin-top: 0.35rem;
}

.glowra-checkout-section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.4vw, 2.45rem);
    line-height: 1.15;
    color: var(--color-text-dark);
    margin: 0 0 0.4rem;
}

.glowra-checkout-section-heading p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

/* -----------------------------
   CUSTOMER DETAILS / FIELDS
----------------------------- */

.glowra-checkout-fields-grid {
    display: block;
}

.glowra-checkout-page .woocommerce-billing-fields h3,
.glowra-checkout-page .woocommerce-shipping-fields h3,
.glowra-checkout-page #ship-to-different-address {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.72);
    color: var(--color-text-dark);
}

.glowra-checkout-page .woocommerce-billing-fields__field-wrapper,
.glowra-checkout-page .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.95rem 1rem;
}

.glowra-checkout-page .form-row {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
    grid-column: span 12;
}

.glowra-checkout-page #billing_first_name_field,
.glowra-checkout-page #billing_last_name_field,
.glowra-checkout-page #shipping_first_name_field,
.glowra-checkout-page #shipping_last_name_field {
    grid-column: span 6;
}

.glowra-checkout-page #billing_city_field,
.glowra-checkout-page #billing_state_field,
.glowra-checkout-page #billing_postcode_field,
.glowra-checkout-page #shipping_city_field,
.glowra-checkout-page #shipping_state_field,
.glowra-checkout-page #shipping_postcode_field {
    grid-column: span 4;
}

.glowra-checkout-page #billing_phone_field,
.glowra-checkout-page #billing_email_field {
    grid-column: span 6;
}

.glowra-checkout-page #billing_address_1_field,
.glowra-checkout-page #billing_address_2_field,
.glowra-checkout-page #shipping_address_1_field,
.glowra-checkout-page #shipping_address_2_field,
.glowra-checkout-page #billing_company_field,
.glowra-checkout-page #shipping_company_field,
.glowra-checkout-page #billing_country_field,
.glowra-checkout-page #shipping_country_field,
.glowra-checkout-page #order_comments_field {
    grid-column: span 12;
}

.glowra-checkout-page label {
    display: block;
    margin-bottom: 0.42rem;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.glowra-checkout-page .required {
    color: var(--color-primary) !important;
}

.glowra-checkout-page input.input-text,
.glowra-checkout-page textarea,
.glowra-checkout-page select,
.glowra-checkout-page .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 46px;
    border: 1px solid rgba(224, 191, 184, 0.95) !important;
    border-radius: 0.55rem !important;
    background: rgba(255, 255, 255, 0.78) !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    box-shadow: none !important;
    padding: 0.78rem 0.9rem !important;
}

.glowra-checkout-page textarea {
    min-height: 92px;
    resize: vertical;
}

.glowra-checkout-page input.input-text:focus,
.glowra-checkout-page textarea:focus,
.glowra-checkout-page select:focus,
.glowra-checkout-page .select2-container--open .select2-selection--single {
    border-color: rgba(169, 49, 25, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(169, 49, 25, 0.08) !important;
    outline: none !important;
}

.glowra-checkout-page .select2-container {
    width: 100% !important;
}

.glowra-checkout-page .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    padding: 0 0.9rem !important;
}

.glowra-checkout-page .select2-container .select2-selection__rendered {
    padding-left: 0 !important;
    color: var(--color-text-dark) !important;
    line-height: 46px !important;
}

.glowra-checkout-page .select2-container .select2-selection__arrow {
    height: 46px !important;
}

.glowra-checkout-page .woocommerce-account-fields,
.glowra-checkout-page .woocommerce-shipping-fields {
    margin-top: 1.65rem;
}

.glowra-checkout-page .woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.glowra-checkout-page input[type="checkbox"],
.glowra-checkout-page input[type="radio"] {
    accent-color: var(--color-primary);
}

.glowra-checkout-page .glowra-field-error input.input-text,
.glowra-checkout-page .glowra-field-error textarea,
.glowra-checkout-page .glowra-field-error select,
.glowra-checkout-page .glowra-field-error .select2-selection--single {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(169, 49, 25, 0.1) !important;
    background: rgba(255, 218, 211, 0.18) !important;
}

/* -----------------------------
   STEP ACTION BUTTONS
----------------------------- */

.glowra-checkout-panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(224, 191, 184, 0.62);
}

.glowra-checkout-panel-actions-split {
    justify-content: space-between;
}

.glowra-checkout-next-button,
.glowra-checkout-back-button {
    min-height: 50px;
    border-radius: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1.35rem;
    transition: all 0.22s ease;
}

.glowra-checkout-next-button {
    background: var(--color-primary-container);
    color: #fff;
    border: 1px solid var(--color-primary-container);
    box-shadow: 0 14px 28px rgba(169, 49, 25, 0.16);
}

.glowra-checkout-next-button:hover,
.glowra-checkout-next-button:focus {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.glowra-checkout-back-button {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(169, 49, 25, 0.36);
}

.glowra-checkout-back-button:hover,
.glowra-checkout-back-button:focus {
    background: rgba(255, 218, 211, 0.34);
    color: var(--color-primary-hover);
}

/* -----------------------------
   SHIPPING STEP
----------------------------- */

.glowra-checkout-shipping-methods {
    margin-top: 1rem;
}

.glowra-checkout-shipping-methods ul,
.glowra-checkout-shipping-methods li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.glowra-checkout-shipping-methods li {
    background: rgba(255, 234, 219, 0.58);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 0.85rem;
    padding: 1rem 1.15rem !important;
    margin-bottom: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.glowra-checkout-shipping-methods label {
    margin: 0 !important;
    font-size: 0.92rem;
    font-weight: 700;
}

.glowra-checkout-shipping-empty {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: rgba(255, 234, 219, 0.58);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 0.85rem;
    padding: 1.15rem;
}

.glowra-checkout-shipping-empty .material-symbols-outlined {
    color: var(--color-primary);
}

.glowra-checkout-shipping-empty strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-text-dark);
}

.glowra-checkout-shipping-empty p {
    margin: 0;
    font-size: 0.88rem;
}

/* -----------------------------
   ORDER SUMMARY
----------------------------- */

body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order,
body.woocommerce-checkout .glowra-checkout-review-order,
body.woocommerce-checkout .glowra-checkout-summary-card {
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 460px !important;
    min-width: 0 !important;
    position: relative !important;
    transform: none !important;
    inset: auto !important;
}

.glowra-checkout-summary-card {
    width: 100%;
    background: rgba(255, 234, 219, 0.46);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(45, 22, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - var(--header-desktop-height) - 2rem);
}

.glowra-checkout-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 0 1.25rem;
    padding: 0 0 1.1rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.78);
}

.glowra-checkout-summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.glowra-checkout-summary-kicker .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 1rem;
}

.glowra-checkout-summary-head h2 {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    line-height: 1.08;
    max-width: 260px;
    margin: 0;
    color: var(--color-text-dark);
}

.glowra-checkout-summary-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 248, 245, 0.86);
    border: 1px solid rgba(224, 191, 184, 0.78);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.glowra-checkout-summary-items {
    width: 100%;
    max-height: 210px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 auto;
}

.glowra-checkout-summary-items::-webkit-scrollbar {
    width: 4px;
}

.glowra-checkout-summary-items::-webkit-scrollbar-thumb {
    background: rgba(169, 49, 25, 0.28);
    border-radius: 999px;
}

.glowra-checkout-summary-items::-webkit-scrollbar-track {
    background: transparent;
}

.glowra-checkout-summary-item {
    width: 100%;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    grid-template-areas: none;
    gap: 0.9rem;
    align-items: center;
}

.glowra-checkout-summary-image {
    width: 82px;
    min-width: 82px;
    aspect-ratio: 4 / 5;
    border-radius: 0.65rem;
    overflow: hidden;
    background: var(--color-surface-low);
    border: 1px solid rgba(224, 191, 184, 0.65);
    grid-area: auto;
}

.glowra-checkout-summary-image a,
.glowra-checkout-summary-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.glowra-checkout-summary-image img {
    object-fit: cover;
    object-position: center;
}

.glowra-checkout-summary-product {
    grid-area: auto;
    min-width: 0;
    width: 100%;
}

.glowra-checkout-summary-product h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    margin: 0 0 0.25rem;
    color: var(--color-text-dark);
}

.glowra-checkout-summary-product h3 a {
    color: inherit;
    text-decoration: none;
}

.glowra-checkout-summary-meta {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.glowra-checkout-summary-meta p,
.glowra-checkout-summary-meta dl,
.glowra-checkout-summary-meta dt,
.glowra-checkout-summary-meta dd {
    margin: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.glowra-checkout-summary-qty {
    display: inline-block;
    margin-top: 0.2rem;
    color: var(--color-outline);
    font-size: 0.7rem;
    font-weight: 700;
}

.glowra-checkout-summary-price {
    grid-area: auto;
    color: var(--color-primary);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    margin: 0;
}

.glowra-checkout-summary-divider {
    height: 1px;
    width: 100%;
    margin: 1.35rem 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(224, 191, 184, 0.9) 50%,
        transparent 100%
    );
}

.glowra-checkout-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
}

.glowra-checkout-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

.glowra-checkout-summary-line span {
    color: var(--color-text-muted);
}

.glowra-checkout-summary-line strong {
    color: var(--color-text-dark);
    font-weight: 800;
    text-align: right;
}

.glowra-checkout-summary-line em {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-style: italic;
    text-align: right;
    max-width: 160px;
    line-height: 1.45;
}

.glowra-checkout-summary-line-stacked {
    display: block;
}

.glowra-checkout-summary-line-stacked > span {
    display: block;
    margin-bottom: 0.55rem;
}

.glowra-checkout-summary-shipping ul,
.glowra-checkout-summary-shipping li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.glowra-checkout-summary-shipping li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--color-text-dark);
}

.glowra-checkout-summary-shipping label {
    margin: 0 !important;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.glowra-checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.glowra-checkout-summary-total span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.glowra-checkout-summary-total strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
    text-align: right;
}

.glowra-checkout-summary-total strong small,
.glowra-checkout-summary-total strong .includes_tax {
    display: block;
    margin-top: 0.25rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
}

.glowra-checkout-summary .shop_table,
.glowra-checkout-summary .woocommerce-checkout-review-order-table {
    display: none !important;
}

/* -----------------------------
   PAYMENT
----------------------------- */

.glowra-checkout-payment-area {
    margin-top: 1rem;
}

.glowra-checkout-page #payment {
    background: transparent !important;
    border-radius: 0 !important;
}

.glowra-checkout-page #payment ul.payment_methods {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 0 1rem !important;
}

.glowra-checkout-page #payment ul.payment_methods li {
    background: rgba(255, 234, 219, 0.48);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 0.85rem;
    padding: 1rem !important;
    margin-bottom: 0.85rem !important;
}

.glowra-checkout-page #payment div.payment_box {
    background: rgba(255, 248, 245, 0.8) !important;
    color: var(--color-text-muted) !important;
    border-radius: 0.75rem !important;
    margin: 1rem 0 0 !important;
}

.glowra-checkout-page #payment div.payment_box::before {
    display: none !important;
}

.glowra-checkout-page #payment .place-order {
    padding: 1rem 0 0 !important;
    margin: 0 !important;
}

.glowra-checkout-page #place_order,
.glowra-checkout-page button#place_order {
    width: 100%;
    min-height: 56px;
    border-radius: 0.7rem !important;
    background: var(--color-primary-container) !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(169, 49, 25, 0.2) !important;
}

.glowra-checkout-page #place_order:hover {
    background: var(--color-primary) !important;
}

.glowra-checkout-page .woocommerce-terms-and-conditions-wrapper {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* -----------------------------
   SECURE NOTE
----------------------------- */

.glowra-checkout-secure-note {
    margin: 1.35rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(224, 191, 184, 0.55);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.glowra-checkout-secure-note .material-symbols-outlined {
    font-size: 1rem;
    color: var(--color-tertiary);
}

/* -----------------------------
   EMPTY CHECKOUT
----------------------------- */

.glowra-checkout-empty {
    max-width: 620px;
    margin: 4rem auto 0;
    text-align: center;
    background: rgba(255, 234, 219, 0.48);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
}

.glowra-checkout-empty > .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 3rem;
}

.glowra-checkout-empty h2 {
    margin: 1rem 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 2.4rem;
}

.glowra-checkout-empty p {
    margin: 0 auto 1.5rem;
    max-width: 440px;
}

.glowra-checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.5rem;
    border-radius: 0.65rem;
    background: var(--color-primary-container);
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================================================
   CHECKOUT RESPONSIVE
   ======================================================== */

@media (max-width: 1024px) {
    .glowra-checkout-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .glowra-checkout-summary,
    .glowra-checkout-main {
        grid-column: auto;
        grid-row: auto;
    }

    .glowra-checkout-summary {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .glowra-checkout-page {
        padding-top: var(--header-mobile-height);
        padding-bottom: 4rem;
    }

    .glowra-checkout-container {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        padding: 1rem 1rem 3.5rem;
    }

    .glowra-checkout-breadcrumb,
    .glowra-checkout-steps {
        display: none !important;
    }

    .glowra-checkout-layout {
        display: flex !important;
        flex-direction: column;
        gap: 1.35rem;
        width: 100%;
    }

    .glowra-checkout-summary {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: static;
    }

    .glowra-checkout-main {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        width: 100%;
    }

    .glowra-checkout-panel,
    .glowra-checkout-panel.is-active {
        display: block !important;
        margin: 0;
    }

    .glowra-checkout-card,
    .glowra-checkout-summary-card {
        width: 100%;
        max-width: 100%;
        border-radius: 0.95rem;
        border: 1px solid rgba(224, 191, 184, 0.85);
        box-shadow: 0 10px 28px rgba(45, 22, 0, 0.035);
    }

    .glowra-checkout-card {
        padding: 1rem;
        background: rgba(255, 248, 245, 0.78);
    }

    .glowra-checkout-summary-card {
        padding: 1rem;
        margin: 0;
        background: rgba(255, 234, 219, 0.55);
        max-height: none;
        overflow: visible;
    }

    .glowra-mobile-checkout-step-title {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 0 0 0.8rem;
    }

    .glowra-mobile-checkout-step-title span {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: var(--color-primary);
        color: #fff;
        border: 1px solid rgba(115, 20, 0, 0.35);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 0.82rem;
        font-style: italic;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 8px 18px rgba(169, 49, 25, 0.18);
        flex: 0 0 28px;
    }

    .glowra-mobile-checkout-step-title h2 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 1.35rem;
        line-height: 1.1;
        color: var(--color-text-dark);
        font-weight: 700;
    }

    .glowra-checkout-section-heading {
        align-items: flex-start;
        gap: 0.72rem;
        padding-bottom: 1rem;
        margin-bottom: 1.1rem;
    }

    .glowra-checkout-section-heading h2 {
        font-size: 1.5rem;
        line-height: 1.15;
    }

    .glowra-checkout-section-heading p {
        font-size: 0.8rem;
        line-height: 1.45;
        max-width: 230px;
    }

    .glowra-checkout-page .woocommerce-billing-fields h3,
    .glowra-checkout-page .woocommerce-shipping-fields h3,
    .glowra-checkout-page #ship-to-different-address {
        font-size: 1.18rem;
        line-height: 1.2;
        margin: 0 0 1rem;
        padding-bottom: 0.75rem;
    }

    .glowra-checkout-page .woocommerce-billing-fields__field-wrapper,
    .glowra-checkout-page .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
    }

    .glowra-checkout-page .form-row,
    .glowra-checkout-page #billing_first_name_field,
    .glowra-checkout-page #billing_last_name_field,
    .glowra-checkout-page #shipping_first_name_field,
    .glowra-checkout-page #shipping_last_name_field,
    .glowra-checkout-page #billing_city_field,
    .glowra-checkout-page #billing_state_field,
    .glowra-checkout-page #billing_postcode_field,
    .glowra-checkout-page #shipping_city_field,
    .glowra-checkout-page #shipping_state_field,
    .glowra-checkout-page #shipping_postcode_field,
    .glowra-checkout-page #billing_phone_field,
    .glowra-checkout-page #billing_email_field,
    .glowra-checkout-page #billing_address_1_field,
    .glowra-checkout-page #billing_address_2_field,
    .glowra-checkout-page #shipping_address_1_field,
    .glowra-checkout-page #shipping_address_2_field,
    .glowra-checkout-page #billing_company_field,
    .glowra-checkout-page #shipping_company_field,
    .glowra-checkout-page #billing_country_field,
    .glowra-checkout-page #shipping_country_field,
    .glowra-checkout-page #order_comments_field {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .glowra-checkout-page label {
        font-size: 0.72rem;
        margin-bottom: 0.35rem;
    }

    .glowra-checkout-page input.input-text,
    .glowra-checkout-page textarea,
    .glowra-checkout-page select,
    .glowra-checkout-page .select2-container .select2-selection--single {
        min-height: 44px;
        font-size: 0.86rem !important;
        padding: 0.68rem 0.78rem !important;
    }

    .glowra-checkout-panel-actions,
    .glowra-checkout-panel-actions-split {
        display: none !important;
    }

    .glowra-checkout-summary-head {
        align-items: flex-start;
        margin-bottom: 1rem;
        padding-bottom: 0.85rem;
    }

    .glowra-checkout-summary-kicker {
        font-size: 0.75rem;
        margin-bottom: 0.35rem;
    }

    .glowra-checkout-summary-head h2 {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .glowra-checkout-summary-count {
        min-height: 24px;
        padding: 0.24rem 0.52rem;
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }

    .glowra-checkout-summary-items {
        max-height: none;
        overflow: visible;
        padding-right: 0;
        gap: 0.9rem;
    }

    .glowra-checkout-summary-item {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
            "image product"
            "image price";
        gap: 0.3rem 0.72rem;
    }

    .glowra-checkout-summary-image {
        width: 58px;
        min-width: 58px;
        border-radius: 0.5rem;
    }

    .glowra-checkout-summary-product h3 {
        font-size: 0.72rem;
        line-height: 1.25;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.035em;
    }

    .glowra-checkout-summary-meta {
        font-size: 0.64rem;
    }

    .glowra-checkout-summary-qty {
        font-size: 0.62rem;
    }

    .glowra-checkout-summary-price {
        margin-top: 0.1rem;
        font-size: 0.78rem;
        text-align: left;
        white-space: nowrap;
    }

    .glowra-checkout-summary-divider {
        margin: 0.95rem 0;
    }

    .glowra-checkout-summary-lines {
        gap: 0.55rem;
    }

    .glowra-checkout-summary-line {
        font-size: 0.76rem;
        gap: 0.8rem;
    }

    .glowra-checkout-summary-line em {
        max-width: 135px;
        line-height: 1.45;
        font-size: 0.72rem;
    }

    .glowra-checkout-summary-total {
        align-items: center;
    }

    .glowra-checkout-summary-total span {
        font-size: 0.95rem;
        font-family: var(--font-heading);
    }

    .glowra-checkout-summary-total strong {
        font-size: 1.15rem;
        font-family: var(--font-body);
    }

    .glowra-checkout-secure-note {
        justify-content: center;
        font-size: 0.62rem;
        margin-top: 0.85rem;
        padding-top: 0.7rem;
    }

    .glowra-checkout-shipping-methods,
    .glowra-checkout-payment-area {
        margin-top: 0.5rem;
    }

    .glowra-checkout-shipping-empty {
        padding: 1rem;
        border-radius: 0.85rem;
    }

    .glowra-checkout-shipping-empty strong {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .glowra-checkout-shipping-empty p {
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .glowra-checkout-page #payment ul.payment_methods li {
        padding: 1rem !important;
        border-radius: 0.85rem;
    }

    .glowra-checkout-page #payment .place-order {
        padding-top: 0.75rem !important;
    }

    .glowra-checkout-page #place_order,
    .glowra-checkout-page button#place_order {
        min-height: 54px;
        border-radius: 999px !important;
        font-size: 0.78rem !important;
    }
}

@media (max-width: 380px) {
    .glowra-checkout-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .glowra-checkout-summary-item {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .glowra-checkout-summary-image {
        width: 52px;
        min-width: 52px;
    }

    .glowra-mobile-checkout-step-title h2 {
        font-size: 1.25rem;
    }
}

/* ========================================================
   20. GLOWRA STATIC / POLICY PAGES
   Terms, Privacy, Refund & Returns
   ======================================================== */

/* -----------------------------
   PAGE BASE
----------------------------- */

.glowra-legal-page:not(.glowra-jewelry-care-page) {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-desktop-height);
    background:
        radial-gradient(circle at top left, rgba(255, 218, 211, 0.28), transparent 34%),
        linear-gradient(180deg, var(--color-background) 0%, rgba(255, 241, 232, 0.64) 100%);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* -----------------------------
   HERO
----------------------------- */

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero {
    padding: 3.25rem 0 2.25rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 0 0 2.15rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb a:hover {
    color: var(--color-primary);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb span {
    color: var(--color-text-muted);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb span:last-child {
    color: var(--color-primary);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content {
    max-width: 780px;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-kicker {
    margin: 0 0 0.8rem;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content h1 {
    margin: 0;
    max-width: 860px;
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--color-text-dark);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content > p:not(.glowra-legal-kicker) {
    max-width: 680px;
    margin: 1.15rem 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-updated {
    display: inline-flex;
    align-items: center;
    margin-top: 1.3rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 999px;
    background: rgba(255, 248, 245, 0.72);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--color-outline);
}

/* -----------------------------
   CONTENT
----------------------------- */

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-content-section {
    padding: 1rem 0 6.5rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card {
    position: relative;
    width: 100%;
    padding: clamp(1.5rem, 4vw, 3.25rem);
    border: 1px solid rgba(224, 191, 184, 0.86);
    border-radius: 1.35rem;
    background: rgba(255, 248, 245, 0.78);
    box-shadow: 0 24px 70px rgba(45, 22, 0, 0.055);
    overflow: hidden;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: clamp(1.5rem, 4vw, 3.25rem);
    right: clamp(1.5rem, 4vw, 3.25rem);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(169, 49, 25, 0.3) 50%,
        transparent 100%
    );
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card p,
.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card li {
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.82;
    color: var(--color-text-muted);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card p {
    margin: 0 0 1.1rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card p:first-child {
    font-size: 1.02rem;
    color: var(--color-text-dark);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card strong {
    color: var(--color-text-dark);
    font-weight: 800;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(169, 49, 25, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card a:hover {
    color: var(--color-primary-hover);
    border-color: rgba(169, 49, 25, 0.55);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card h2 {
    margin: 2.35rem 0 0.85rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(224, 191, 184, 0.58);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--color-text-dark);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card h2:first-of-type {
    margin-top: 1.35rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card h3 {
    margin: 1.35rem 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--color-text-dark);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card ul,
.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card ol {
    margin: 0.6rem 0 1.35rem;
    padding-left: 1.25rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card li {
    margin-bottom: 0.55rem;
    padding-left: 0.15rem;
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card li::marker {
    color: var(--color-primary);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-contact-box {
    margin-top: 1.5rem;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 0.95rem;
    background: rgba(255, 234, 219, 0.52);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--font-body);
    color: var(--color-text-muted);
}

.glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-contact-box strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

/* -----------------------------
   PAGE VARIATIONS
----------------------------- */

.glowra-terms-page .glowra-legal-hero-content h1 {
    max-width: 880px;
}

.glowra-privacy-page .glowra-legal-hero-content h1,
.glowra-shipping-page .glowra-legal-hero-content h1,
.glowra-contact-page .glowra-legal-hero-content h1,
.glowra-club-page .glowra-legal-hero-content h1 {
    max-width: 820px;
}

/* -----------------------------
   MOBILE
----------------------------- */

@media (max-width: 768px) {
    .glowra-legal-page:not(.glowra-jewelry-care-page) {
        padding-top: var(--header-mobile-height);
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero {
        padding: 2.15rem 0 1.35rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-breadcrumb {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.1em;
        gap: 0.38rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-kicker {
        font-size: 0.68rem;
        margin-bottom: 0.6rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
        line-height: 0.96;
        letter-spacing: -0.045em;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content > p:not(.glowra-legal-kicker) {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-top: 0.9rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-updated {
        font-size: 0.68rem;
        margin-top: 1rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-content-section {
        padding: 0.6rem 0 4.5rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card {
        padding: 1.15rem;
        border-radius: 1rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card::before {
        left: 1.15rem;
        right: 1.15rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card p,
    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card li {
        font-size: 0.88rem;
        line-height: 1.72;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card h2 {
        font-size: 1.32rem;
        margin-top: 1.75rem;
        padding-top: 1.1rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card h3 {
        font-size: 1.08rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card ul,
    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card ol {
        padding-left: 1.05rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-contact-box {
        padding: 1rem;
        border-radius: 0.85rem;
    }
}

@media (max-width: 380px) {
    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero {
        padding-top: 2rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-card {
        padding: 1rem;
    }

    .glowra-legal-page:not(.glowra-jewelry-care-page) .glowra-legal-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ========================================================
   21. GLOWRA JEWELRY CARE PAGE
   Visual Care Manual + Clear Icons
   ======================================================== */

/* -----------------------------
   PAGE BASE
----------------------------- */

.glowra-jewelry-care-page {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-desktop-height);
    background:
        radial-gradient(circle at top right, rgba(255, 218, 211, 0.32), transparent 34%),
        linear-gradient(180deg, var(--color-background) 0%, rgba(255, 241, 232, 0.72) 100%);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.glowra-jewelry-care-page .glowra-legal-container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* -----------------------------
   HERO
----------------------------- */

.glowra-jewelry-care-page .glowra-legal-hero {
    padding: 3.25rem 0 2.25rem;
}

.glowra-jewelry-care-page .glowra-legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 0 0 2.15rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.glowra-jewelry-care-page .glowra-legal-breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.glowra-jewelry-care-page .glowra-legal-breadcrumb a:hover {
    color: var(--color-primary);
}

.glowra-jewelry-care-page .glowra-legal-breadcrumb span:last-child {
    color: var(--color-primary);
}

.glowra-jewelry-care-page .glowra-legal-kicker {
    margin: 0 0 0.8rem;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.glowra-jewelry-care-page .glowra-legal-hero-content {
    max-width: 840px;
}

.glowra-jewelry-care-page .glowra-legal-hero-content h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--color-text-dark);
}

.glowra-jewelry-care-page .glowra-legal-hero-content > p:not(.glowra-legal-kicker) {
    max-width: 680px;
    margin: 1.15rem 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.glowra-jewelry-care-page .glowra-legal-updated {
    display: inline-flex;
    align-items: center;
    margin-top: 1.3rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(169, 49, 25, 0.22);
    border-radius: 999px;
    background: rgba(255, 234, 219, 0.58);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* -----------------------------
   INTRO
----------------------------- */

.glowra-care-guide-section {
    padding: 0.5rem 0 4.5rem;
}

.glowra-care-intro-card {
    max-width: 820px;
    margin: 0 0 2rem;
    padding: 1.35rem 1.55rem;
    border: 1px solid rgba(224, 191, 184, 0.82);
    border-radius: 1.1rem;
    background: rgba(255, 248, 245, 0.76);
    box-shadow: 0 18px 48px rgba(45, 22, 0, 0.04);
}

.glowra-care-intro-card p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* -----------------------------
   CARE GRID
----------------------------- */

.glowra-care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.glowra-care-item {
    position: relative;
    min-height: 310px;
    padding: 2rem 1.55rem 1.7rem;
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at top, rgba(255, 234, 219, 0.52), transparent 48%),
        rgba(255, 248, 245, 0.78);
    box-shadow: 0 20px 58px rgba(45, 22, 0, 0.045);
    text-align: center;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glowra-care-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.4rem;
    right: 1.4rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(169, 49, 25, 0.26) 50%,
        transparent 100%
    );
}

.glowra-care-item:hover {
    transform: translateY(-4px);
    border-color: rgba(169, 49, 25, 0.24);
    box-shadow: 0 26px 70px rgba(45, 22, 0, 0.07);
}

/* -----------------------------
   CLEAR CARE ICONS
   Replaces unclear inline SVG visually.
----------------------------- */

.glowra-jewelry-care-page .glowra-care-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.68), transparent 48%),
        rgba(255, 234, 219, 0.58);
    border: 1px solid rgba(224, 191, 184, 0.68);
    color: rgba(165, 143, 124, 0.98);
    line-height: 1;
}

/* Hide the unclear SVG only inside Jewelry Care cards */
.glowra-jewelry-care-page .glowra-care-icon svg {
    display: none !important;
}

/* Material icon base */
.glowra-jewelry-care-page .glowra-care-icon::before {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 3.7rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
    color: currentColor;
}

/* 1. Clean with a soft cloth */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(1) .glowra-care-icon::before {
    content: "dry_cleaning";
}

/* 2. Remove before sleeping */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(2) .glowra-care-icon::before {
    content: "bedtime";
}

/* 3. Avoid perfume / skincare contact */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(3) .glowra-care-icon::before {
    content: "spa";
}

/* 4. Remove before working out */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(4) .glowra-care-icon::before {
    content: "fitness_center";
}

/* 5. Remove before bathing */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(5) .glowra-care-icon::before {
    content: "bathtub";
}

/* 6. Store neatly */
.glowra-jewelry-care-page .glowra-care-grid .glowra-care-item:nth-child(6) .glowra-care-icon::before {
    content: "inventory_2";
}

/* -----------------------------
   CARE ITEM TEXT
----------------------------- */

.glowra-care-item h2 {
    max-width: 280px;
    margin: 0 auto 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text-dark);
}

.glowra-care-item p {
    max-width: 290px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* -----------------------------
   EXTRA TIPS
----------------------------- */

.glowra-care-tips-section {
    padding: 0 0 4.5rem;
}

.glowra-care-tips-card {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(224, 191, 184, 0.85);
    border-radius: 1.35rem;
    background: rgba(255, 234, 219, 0.48);
    box-shadow: 0 24px 70px rgba(45, 22, 0, 0.055);
}

.glowra-care-tips-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--color-text-dark);
}

.glowra-care-tips-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.glowra-care-tip {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(224, 191, 184, 0.72);
    border-radius: 0.95rem;
    background: rgba(255, 248, 245, 0.7);
}

.glowra-care-tip > .material-symbols-outlined {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 218, 211, 0.48);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}

.glowra-care-tip h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.glowra-care-tip p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* -----------------------------
   CLOSING NOTE
----------------------------- */

.glowra-care-note-section {
    padding: 0 0 6.5rem;
}

.glowra-care-note {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(224, 191, 184, 0.85);
    border-bottom: 1px solid rgba(224, 191, 184, 0.85);
    text-align: center;
}

.glowra-care-note p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.22;
    color: var(--color-text-dark);
}

/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 1024px) {
    .glowra-care-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glowra-care-tips-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .glowra-jewelry-care-page {
        padding-top: var(--header-mobile-height);
    }

    .glowra-jewelry-care-page .glowra-legal-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .glowra-jewelry-care-page .glowra-legal-hero {
        padding: 2.15rem 0 1.35rem;
    }

    .glowra-jewelry-care-page .glowra-legal-breadcrumb {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.1em;
        gap: 0.38rem;
    }

    .glowra-jewelry-care-page .glowra-legal-kicker {
        font-size: 0.68rem;
        margin-bottom: 0.6rem;
    }

    .glowra-jewelry-care-page .glowra-legal-hero-content h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
        line-height: 0.96;
        letter-spacing: -0.045em;
    }

    .glowra-jewelry-care-page .glowra-legal-hero-content > p:not(.glowra-legal-kicker) {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-top: 0.9rem;
    }

    .glowra-jewelry-care-page .glowra-legal-updated {
        font-size: 0.68rem;
        margin-top: 1rem;
    }

    .glowra-care-guide-section {
        padding: 0.25rem 0 3rem;
    }

    .glowra-care-intro-card {
        margin-bottom: 1.2rem;
        padding: 1rem;
        border-radius: 0.95rem;
    }

    .glowra-care-intro-card p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .glowra-care-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .glowra-care-item {
        min-height: auto;
        padding: 1.45rem 1rem 1.35rem;
        border-radius: 1rem;
    }

    .glowra-jewelry-care-page .glowra-care-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 0.95rem;
    }

    .glowra-jewelry-care-page .glowra-care-icon::before {
        font-size: 3rem;
    }

    .glowra-care-item h2 {
        font-size: 1.24rem;
        margin-bottom: 0.55rem;
    }

    .glowra-care-item p {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .glowra-care-tips-section {
        padding-bottom: 3rem;
    }

    .glowra-care-tips-card {
        padding: 1.15rem;
        border-radius: 1rem;
        gap: 1.35rem;
    }

    .glowra-care-tips-heading h2 {
        font-size: 2.15rem;
    }

    .glowra-care-tip {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 0.78rem;
        padding: 0.9rem;
    }

    .glowra-care-tip > .material-symbols-outlined {
        width: 36px;
        height: 36px;
        font-size: 1.08rem;
    }

    .glowra-care-tip h3 {
        font-size: 0.86rem;
    }

    .glowra-care-tip p {
        font-size: 0.76rem;
    }

    .glowra-care-note-section {
        padding-bottom: 4.5rem;
    }

    .glowra-care-note {
        padding: 1.4rem 0.5rem;
    }

    .glowra-care-note p {
        font-size: 1.45rem;
        line-height: 1.25;
    }
}

@media (max-width: 380px) {
    .glowra-jewelry-care-page .glowra-legal-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .glowra-jewelry-care-page .glowra-legal-hero {
        padding-top: 2rem;
    }

    .glowra-care-item {
        padding: 1.25rem 0.85rem;
    }

    .glowra-jewelry-care-page .glowra-care-icon {
        width: 68px;
        height: 68px;
    }

    .glowra-jewelry-care-page .glowra-care-icon::before {
        font-size: 2.65rem;
    }

    .glowra-care-tips-card {
        padding: 1rem;
    }
}

/* ========================================================
   22. GLOWRA MY ACCOUNT / LOGIN PAGE
   Compact Login + Secondary Register
   ======================================================== */

.glowra-account-page {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-desktop-height);
    background:
        radial-gradient(circle at top right, rgba(255, 218, 211, 0.2), transparent 34%),
        linear-gradient(180deg, var(--color-background) 0%, rgba(255, 241, 232, 0.58) 100%);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.glowra-account-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* -----------------------------
   HERO
----------------------------- */

.glowra-account-hero {
    padding: 2rem 0 1.1rem;
}

.glowra-account-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 0 0 1.1rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.glowra-account-breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
}

.glowra-account-breadcrumb a:hover,
.glowra-account-breadcrumb span:last-child {
    color: var(--color-primary);
}

.glowra-account-kicker {
    margin: 0 0 0.45rem;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.glowra-account-hero-content {
    max-width: 640px;
}

.glowra-account-hero-content h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4.5vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--color-text-dark);
}

.glowra-account-hero-content p {
    max-width: 620px;
    margin: 0.75rem 0 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.glowra-account-content-section {
    padding: 0.35rem 0 5rem;
}

.glowra-account-content {
    width: 100%;
}

/* -----------------------------
   AUTH SINGLE CARD
----------------------------- */

.glowra-account-auth,
.glowra-account-auth-single {
    width: 100%;
    max-width: 620px;
    margin: 0;
}

.glowra-account-auth-card {
    width: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(224, 191, 184, 0.86);
    border-radius: 1rem;
    background: rgba(255, 248, 245, 0.78);
    box-shadow: 0 18px 48px rgba(45, 22, 0, 0.045);
    overflow: hidden;
}

.glowra-login-card {
    max-width: 620px;
}

/* -----------------------------
   CARD HEADING
----------------------------- */

.glowra-auth-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.05rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.62);
}

.glowra-auth-card-heading > .material-symbols-outlined {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 218, 211, 0.52);
    color: var(--color-primary);
    font-size: 1.05rem;
    flex: 0 0 32px;
}

.glowra-auth-card-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.38rem;
    line-height: 1.15;
    color: var(--color-text-dark);
}

.glowra-auth-card-heading p {
    margin: 0.22rem 0 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* -----------------------------
   FORMS
----------------------------- */

.glowra-account-page .woocommerce-form,
.glowra-account-page form.login,
.glowra-account-page form.register {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.glowra-account-page .woocommerce-form-row,
.glowra-account-page .form-row {
    margin: 0 0 0.85rem !important;
    padding: 0 !important;
}

.glowra-account-page label {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.glowra-account-page .required {
    color: var(--color-primary);
}

.glowra-account-page input.input-text,
.glowra-account-page input[type="text"],
.glowra-account-page input[type="email"],
.glowra-account-page input[type="password"] {
    width: 100% !important;
    min-height: 44px !important;
    border: 1px solid rgba(224, 191, 184, 0.95) !important;
    border-radius: 0.52rem !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    box-shadow: none !important;
    padding: 0.7rem 0.82rem !important;
}

.glowra-account-page input:focus {
    border-color: rgba(169, 49, 25, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(169, 49, 25, 0.08) !important;
    outline: none !important;
}

/* -----------------------------
   FORM ACTIONS
----------------------------- */

.glowra-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 0.95rem;
    flex-wrap: wrap;
}

.glowra-remember-me {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    margin: 0 !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
}

.glowra-remember-me input {
    width: 14px !important;
    height: 14px !important;
    min-height: 14px !important;
    padding: 0 !important;
}

.glowra-lost-password-link {
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.glowra-account-button,
.glowra-account-page .button {
    width: 100%;
    min-height: 46px;
    border: 0 !important;
    border-radius: 0.62rem !important;
    background: var(--color-primary-container) !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase !important;
    box-shadow: 0 12px 26px rgba(169, 49, 25, 0.15) !important;
}

.glowra-account-button:hover,
.glowra-account-page .button:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* -----------------------------
   SECONDARY REGISTER
----------------------------- */

.glowra-register-secondary {
    margin-top: 1.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(224, 191, 184, 0.62);
}

.glowra-register-secondary-head {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.glowra-register-secondary-head > .material-symbols-outlined {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 218, 211, 0.52);
    color: var(--color-primary);
    font-size: 1.05rem;
    flex: 0 0 32px;
}

.glowra-register-secondary-head h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.15;
    color: var(--color-text-dark);
}

.glowra-register-secondary-head p {
    margin: 0.2rem 0 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.glowra-register-details {
    border: 1px solid rgba(224, 191, 184, 0.72);
    border-radius: 0.8rem;
    background: rgba(255, 234, 219, 0.32);
    overflow: hidden;
}

.glowra-register-details summary {
    cursor: pointer;
    padding: 0.85rem 0.95rem;
    list-style: none;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.glowra-register-details summary::-webkit-details-marker {
    display: none;
}

.glowra-register-details summary::after {
    content: "+";
    float: right;
    font-size: 1rem;
    line-height: 1;
}

.glowra-register-details[open] summary::after {
    content: "–";
}

.glowra-register-details .glowra-register-form {
    padding: 0 0.95rem 0.95rem !important;
}

.glowra-register-note {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.85rem;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(224, 191, 184, 0.78);
    border-radius: 0.75rem;
    background: rgba(255, 234, 219, 0.5);
}

.glowra-register-note .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.glowra-register-note p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.glowra-account-page .woocommerce-privacy-policy-text {
    margin: 0.85rem 0 1rem !important;
}

.glowra-account-page .woocommerce-privacy-policy-text p {
    margin: 0 !important;
    font-size: 0.76rem !important;
    line-height: 1.55 !important;
    color: var(--color-text-muted) !important;
}

/* -----------------------------
   LOGGED-IN DASHBOARD
----------------------------- */

.glowra-account-dashboard {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.4rem;
    align-items: start;
}

.glowra-account-sidebar {
    position: sticky;
    top: calc(var(--header-desktop-height) + 1.25rem);
}

.glowra-account-profile-card {
    padding: 1rem;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(224, 191, 184, 0.86);
    border-radius: 0.95rem;
    background: rgba(255, 234, 219, 0.5);
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.glowra-account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.glowra-account-avatar .material-symbols-outlined {
    font-size: 1.25rem;
}

.glowra-account-profile-card .glowra-account-kicker {
    margin-bottom: 0.2rem;
    font-size: 0.58rem;
}

.glowra-account-profile-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    line-height: 1.2;
}

.glowra-account-content-card {
    width: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(224, 191, 184, 0.86);
    border-radius: 1rem;
    background: rgba(255, 248, 245, 0.78);
    box-shadow: 0 18px 48px rgba(45, 22, 0, 0.045);
    overflow: hidden;
}

.glowra-account-page .woocommerce-MyAccount-navigation {
    width: 100%;
    float: none;
}

.glowra-account-page .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(224, 191, 184, 0.86);
    border-radius: 0.95rem;
    background: rgba(255, 248, 245, 0.78);
    overflow: hidden;
}

.glowra-account-page .woocommerce-MyAccount-navigation li {
    margin: 0;
    border-bottom: 1px solid rgba(224, 191, 184, 0.56);
}

.glowra-account-page .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: 0;
}

.glowra-account-page .woocommerce-MyAccount-navigation a {
    display: flex;
    padding: 0.78rem 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.glowra-account-page .woocommerce-MyAccount-navigation li.is-active a,
.glowra-account-page .woocommerce-MyAccount-navigation a:hover {
    background: rgba(255, 218, 211, 0.42);
    color: var(--color-primary);
}

.glowra-account-page .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
}

.glowra-account-content-card p,
.glowra-account-content-card li,
.glowra-account-content-card address {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.68;
    color: var(--color-text-muted);
}

.glowra-account-content-card a {
    color: var(--color-primary);
    font-weight: 800;
}

/* -----------------------------
   WOO NOTICES / EMPTY STATES
----------------------------- */

.glowra-account-page .woocommerce-message,
.glowra-account-page .woocommerce-info,
.glowra-account-page .woocommerce-error {
    margin: 0 !important;
    padding: 1rem !important;
    border: 1px solid rgba(224, 191, 184, 0.72) !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: 0.8rem !important;
    background: rgba(255, 234, 219, 0.52) !important;
    color: var(--color-text-dark) !important;
    box-shadow: none !important;
    display: block !important;
}

.glowra-account-page .woocommerce-info::before,
.glowra-account-page .woocommerce-message::before,
.glowra-account-page .woocommerce-error::before {
    display: none !important;
    content: none !important;
}

.glowra-account-page .woocommerce-info .button,
.glowra-account-page .woocommerce-message .button {
    margin-top: 0.85rem !important;
}

/* -----------------------------
   TABLES
----------------------------- */

.glowra-account-page table.shop_table {
    border: 1px solid rgba(224, 191, 184, 0.86) !important;
    border-radius: 0.85rem !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
}

.glowra-account-page table.shop_table th,
.glowra-account-page table.shop_table td {
    border-color: rgba(224, 191, 184, 0.56) !important;
    font-family: var(--font-body);
    font-size: 0.82rem;
}

/* -----------------------------
   MOBILE
----------------------------- */

@media (max-width: 900px) {
    .glowra-account-dashboard {
        grid-template-columns: 1fr;
    }

    .glowra-account-sidebar {
        position: static;
    }

    .glowra-account-auth,
    .glowra-account-auth-single,
    .glowra-login-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .glowra-account-page {
        padding-top: var(--header-mobile-height);
    }

    .glowra-account-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .glowra-account-hero {
        padding: 1.85rem 0 1rem;
    }

    .glowra-account-breadcrumb {
        margin-bottom: 0.85rem;
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.1em;
        gap: 0.38rem;
    }

    .glowra-account-kicker {
        font-size: 0.64rem;
        margin-bottom: 0.5rem;
    }

    .glowra-account-hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 0.96;
    }

    .glowra-account-hero-content p {
        font-size: 0.86rem;
        line-height: 1.6;
        margin-top: 0.7rem;
    }

    .glowra-account-content-section {
        padding: 0.25rem 0 4rem;
    }

    .glowra-account-auth-card,
    .glowra-account-content-card {
        padding: 1rem;
        border-radius: 0.95rem;
    }

    .glowra-auth-card-heading {
        gap: 0.7rem;
        margin-bottom: 0.95rem;
        padding-bottom: 0.85rem;
    }

    .glowra-auth-card-heading h2 {
        font-size: 1.22rem;
    }

    .glowra-auth-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.6rem;
    }

    .glowra-account-button,
    .glowra-account-page .button {
        min-height: 46px;
        font-size: 0.74rem !important;
    }

    .glowra-register-secondary-head h3 {
        font-size: 1.12rem;
    }

    .glowra-account-profile-card {
        padding: 0.95rem;
    }

    .glowra-account-page .woocommerce-MyAccount-navigation a {
        padding: 0.78rem 0.85rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 380px) {
    .glowra-account-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .glowra-account-auth-card,
    .glowra-account-content-card {
        padding: 0.9rem;
    }
}


