.glow-store {
    --glow-bg: #fbf7f2;
    --glow-surface: #fffdf9;
    --glow-surface-strong: #f3ece2;
    --glow-surface-deep: #eadfce;
    --glow-ink: #2f2418;
    --glow-copy: #6f5c49;
    --glow-muted: #9b846c;
    --glow-line: rgba(96, 72, 41, 0.14);
    --glow-line-strong: rgba(96, 72, 41, 0.22);
    --glow-gold: #c89a92;
    --glow-gold-strong: #b57c76;
    --glow-rose: #c89a92;
    --glow-shadow: 0 24px 60px rgba(130, 82, 74, 0.12);
    --glow-radius: 32px;
    --glow-radius-md: 24px;
    --glow-radius-sm: 18px;
}

.glow-store {
    background:
        radial-gradient(circle at top left, rgba(234, 206, 164, 0.24), transparent 35%),
        linear-gradient(180deg, #fffdf9 0%, #fbf7f2 100%);
    color: var(--glow-copy);
}

.glow-store main.site-main {
    padding-bottom: 40px;
}

.glow-store a,
.glow-store p,
.glow-store span,
.glow-store li,
.glow-store label,
.glow-store input,
.glow-store select,
.glow-store textarea,
.glow-store button {
    font-family: "Manrope", sans-serif;
}

.glow-store h1,
.glow-store h2,
.glow-store h3,
.glow-store h4,
.glow-store h5,
.glow-store h6 {
    font-family: "Cormorant Garamond", serif;
    color: var(--glow-ink);
    letter-spacing: -0.03em;
}

.glow-store .container {
    width: min(1200px, calc(100% - 32px));
}

.glow-store .btn,
.glow-store .btn-wrap a,
.glow-store .cart-link,
.glow-store .add-cart-btn,
.glow-store .view-btn,
.glow-store .wishlist-btn {
    min-height: 50px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.glow-store .btn:hover,
.glow-store .btn-wrap a:hover,
.glow-store .cart-link:hover,
.glow-store .add-cart-btn:hover,
.glow-store .view-btn:hover,
.glow-store .wishlist-btn:hover {
    transform: translateY(-2px);
}

.glow-store .btn-dark,
.glow-store .btn.btn-dark,
.glow-store .cart-link {
    background: var(--glow-gold);
    border: 1px solid transparent;
    color: #24180c;
    box-shadow: 0 18px 35px rgba(184, 132, 47, 0.18);
}

.glow-store .btn-dark:hover,
.glow-store .btn.btn-dark:hover,
.glow-store .cart-link:hover {
    background: var(--glow-ink);
    color: #fff;
}

.glow-store .btn-outline-dark,
.glow-store .btn-outline-light,
.glow-store .btn-outline-accent,
.glow-store .btn-wrap a,
.glow-store .view-btn,
.glow-store .wishlist-btn,
.glow-store .add-cart-btn {
    border: 1px solid var(--glow-line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--glow-ink);
    box-shadow: none;
}

.glow-store .btn-outline-dark:hover,
.glow-store .btn-outline-light:hover,
.glow-store .btn-outline-accent:hover,
.glow-store .btn-wrap a:hover,
.glow-store .view-btn:hover,
.glow-store .wishlist-btn:hover,
.glow-store .add-cart-btn:hover {
    border-color: var(--glow-ink);
    background: var(--glow-ink);
    color: #fff;
}

.glow-store .section-kicker,
.glow-store .categories,
.glow-store .lookbook-card__subtitle,
.glow-store .product-note,
.glow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--glow-gold-strong) !important;
}

.glow-store .section-kicker::before,
.glow-store .categories::before,
.glow-store .lookbook-card__subtitle::before,
.glow-store .product-note::before,
.glow-eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.glow-store .section-title {
    margin: 18px 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.96;
}

.glow-store .section-summary,
.glow-store .page-hero__copy {
    color: var(--glow-copy);
    font-size: 1rem;
    line-height: 1.8;
}

.glow-announcement {
    border-bottom: 1px solid var(--glow-line);
    background: rgba(255, 255, 255, 0.65);
}

.glow-announcement__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--glow-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glow-announcement__inner strong {
    color: var(--glow-ink);
}

.glow-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
}

.glow-header__shell {
    border-bottom: 1px solid var(--glow-line);
    background: rgba(251, 247, 242, 0.88);
}

.glow-nav {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.glow-nav__menu,
.glow-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.glow-nav__menu {
    justify-content: center;
    flex-wrap: wrap;
}

.glow-nav__menu a,
.glow-nav__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--glow-copy);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.glow-nav__menu a.is-active,
.glow-nav__menu a:hover,
.glow-nav__actions a:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--glow-ink);
    box-shadow: 0 10px 25px rgba(82, 58, 24, 0.08);
}

.glow-nav__actions .header-cart-link {
    position: relative;
}

.header-cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--glow-gold);
    color: #24180c;
    font-size: 0.7rem;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.brand-mark__image {
    width: auto;
    height: 84px;
    max-width: min(100%, 240px);
    object-fit: contain;
}

.brand-mark__tag {
    color: var(--glow-muted);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brand-mark--compact .brand-mark__image {
    height: 68px;
}

.glow-hero-slider {
    position: relative;
    width: 100%;
    background: var(--glow-bg);
}

.glow-main-swiper {
    width: 100%;
    height: clamp(600px, 85vh, 900px);
}

.glow-hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.glow-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0) 55%);
    z-index: 1;
}

.glow-hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: #ffffff !important;
}

.glow-hero-slide__title {
    margin: 16px 0 24px;
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 0.95;
    color: #ffffff !important;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.glow-hero-slide .glow-eyebrow {
    color: #ffffff !important;
    opacity: 0.9;
}

.glow-hero-slide__copy {
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.glow-hero-slide__actions {
    display: flex;
    gap: 16px;
}

.glow-hero-slide__actions .btn-outline-dark {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
}

.glow-hero-slide__actions .btn-outline-dark:hover {
    background: #ffffff !important;
    color: var(--glow-ink) !important;
}

/* Swiper Pagination */
.glow-main-swiper__controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
}

.glow-main-swiper__pagination {
    display: flex;
    gap: 12px;
}

.glow-main-swiper__pagination .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.4s ease;
}

.glow-main-swiper__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 60px;
}

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

.glow-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.glow-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glow-gold);
}

.glow-section {
    padding: 42px 0;
}

.glow-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.glow-category-grid,
.glow-product-grid,
.glow-story-grid,
.glow-contact-grid,
.glow-testimonial-grid,
.glow-social-grid,
.glow-guide-grid,
.glow-faq-grid,
.signature-band__grid,
.service-strip__grid {
    display: grid;
    gap: 18px;
}

.glow-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.glow-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(47, 36, 24, 0.06);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 36, 24, 0.12);
    box-shadow:
        0 20px 40px -10px rgba(47, 36, 24, 0.1),
        0 10px 20px -5px rgba(47, 36, 24, 0.05);
}

.glow-category-card__visual-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #fdfaf7;
}

.glow-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-category-card:hover .glow-category-card__image {
    transform: scale(1.08);
}

.glow-category-card__content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex: 1;
}

.glow-category-card__title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.1;
}

.glow-category-card__title a {
    color: var(--glow-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.glow-category-card:hover .glow-category-card__title a {
    color: var(--glow-gold-strong);
}

.glow-category-card__footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(47, 36, 24, 0.06);
    display: flex;
    justify-content: flex-start;
}

.glow-category-card__action {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--glow-ink);
    transition: all 0.3s ease;
}

.glow-category-card__action-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.glow-category-card__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.glow-category-card:hover .glow-category-card__icon {
    transform: translateX(5px);
}

.glow-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glow-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
}

.glow-product-card__body {
    padding: 22px;
}

.glow-product-card__topline,
.glow-product-card__bottomline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.glow-product-card__title {
    margin: 10px 0 8px;
    font-size: 1.7rem;
    line-height: 0.95;
}

.glow-product-card__copy {
    margin: 0 0 18px;
    color: var(--glow-copy);
    font-size: 0.95rem;
    line-height: 1.7;
}

.glow-product-card__price {
    color: var(--glow-ink);
    font-size: 1.1rem;
    font-weight: 800;
}

.glow-product-card__compare {
    color: var(--glow-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.glow-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--glow-ink);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.glow-product-visual {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    padding: 26px;
    background: linear-gradient(145deg, var(--visual-start, #f8ebd8), var(--visual-end, #fff8ed));
}

.glow-product-visual--feature {
    min-height: 330px;
}

.glow-product-visual__halo {
    position: absolute;
    top: 30px;
    right: -10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.glow-product-visual__packshot {
    position: absolute;
    inset: auto 26px 30px auto;
    width: 126px;
    height: 170px;
}

.glow-product-visual__cap,
.glow-product-visual__bottle,
.glow-product-visual__compact,
.glow-product-visual__lip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.glow-product-visual__bottle {
    bottom: 0;
    width: 92px;
    height: 128px;
    border-radius: 26px 26px 22px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), var(--visual-accent, #d9b07a));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        0 18px 24px rgba(61, 43, 17, 0.15);
}

.glow-product-visual__cap {
    bottom: 112px;
    width: 64px;
    height: 48px;
    border-radius: 18px 18px 12px 12px;
    background: linear-gradient(180deg, #e9c38e, #b78638);
    box-shadow: 0 14px 20px rgba(61, 43, 17, 0.12);
}

.glow-product-visual--lips .glow-product-visual__packshot {
    width: 110px;
    height: 170px;
}

.glow-product-visual--lips .glow-product-visual__bottle {
    width: 44px;
    height: 122px;
    border-radius: 14px 14px 10px 10px;
}

.glow-product-visual--lips .glow-product-visual__cap {
    bottom: 106px;
    width: 44px;
    height: 68px;
    border-radius: 14px 14px 8px 8px;
}

.glow-product-visual--lips .glow-product-visual__bottle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 24px;
    height: 28px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: #8f4f48;
}

.glow-product-visual--compact .glow-product-visual__packshot {
    width: 148px;
    height: 120px;
}

.glow-product-visual--compact .glow-product-visual__compact {
    display: block;
    bottom: 0;
    width: 148px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f9e7d1, #d8b07a);
    box-shadow: 0 18px 24px rgba(61, 43, 17, 0.15);
}

.glow-product-visual--compact .glow-product-visual__bottle,
.glow-product-visual--compact .glow-product-visual__cap {
    display: none;
}

.glow-product-visual__meta {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 140px);
}

.glow-product-visual__brand {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--glow-ink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.glow-product-visual__title {
    display: block;
    color: var(--glow-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.15rem;
    font-weight: 600;
    line-height: 0.92;
}

.glow-product-visual__sub {
    display: block;
    margin-top: 8px;
    color: var(--glow-copy);
    font-size: 0.9rem;
}

.glow-product-visual__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.glow-product-visual__chips span {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--glow-ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glow-editorial {
    padding: 42px 0;
}

.glow-editorial__grid,
.glow-about__grid,
.glow-contact__grid,
.glow-product-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.glow-panel {
    padding: 30px;
    border-radius: 30px;
}

.glow-panel--image {
    min-height: 520px;
    background-size: cover;
    background-position: center;
}

.glow-panel--image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(37, 25, 13, 0.08), rgba(37, 25, 13, 0.36));
}

.glow-panel--image {
    position: relative;
    overflow: hidden;
}

.glow-panel--image>* {
    position: relative;
    z-index: 1;
}

.glow-panel__steps {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.glow-step {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 238, 226, 0.9));
    border: 1px solid var(--glow-line);
}

.glow-step strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--glow-ink);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.glow-step__count {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glow-gold);
    color: #24180c;
    font-size: 0.78rem;
}

.signature-band {
    padding: 18px 0 42px;
    background: transparent !important;
}

.signature-band__wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
}

.signature-band__intro,
.service-strip__intro {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid var(--glow-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 236, 224, 0.9));
    box-shadow: var(--glow-shadow);
}

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

.signature-band__card {
    padding: 26px;
    border-radius: 26px;
}

.signature-band__card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.glow-page-hero {
    padding: 46px 0 26px;
}

.glow-page-hero__shell {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    border: 1px solid var(--glow-line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 236, 224, 0.86)),
        var(--page-hero-image);
    box-shadow: var(--glow-shadow);
}

.glow-page-hero__shell--image {
    background:
        linear-gradient(90deg, rgba(255, 252, 246, 0.92) 0%, rgba(255, 252, 246, 0.84) 48%, rgba(255, 252, 246, 0.48) 100%),
        var(--page-hero-image);
    background-size: cover;
    background-position: center;
}

.glow-page-hero__stats,
.glow-filter-pills,
.glow-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.glow-filter-pills span,
.glow-trust-pills span,
.glow-page-hero__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--glow-line);
    color: var(--glow-ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.glow-shop-grid {
    padding: 22px 0 42px;
}

.glow-shop-grid__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.glow-shop-grid__result {
    color: var(--glow-muted);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glow-product-page {
    padding: 48px 0 42px;
}

.glow-product-page__gallery,
.glow-product-page__info {
    display: grid;
    gap: 18px;
}

.glow-product-stage,
.glow-product-info-card,
.glow-contact-card,
.glow-story-card,
.glow-guide-card,
.glow-faq-card {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--glow-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--glow-shadow);
}

.glow-product-stage .glow-product-visual {
    border-radius: 24px;
}

.glow-product-page__info h1,
.glow-product-page__info .section-title {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.glow-price {
    display: flex;
    align-items: end;
    gap: 12px;
    margin: 10px 0 20px;
}

.glow-price strong {
    color: var(--glow-ink);
    font-size: 1.6rem;
}

.glow-price span {
    color: var(--glow-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.product-option-group,
.glow-form-block {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--glow-line);
    background: rgba(246, 239, 229, 0.62);
}

.product-option-group__label {
    display: block;
    margin-bottom: 14px;
    color: var(--glow-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color input,
.product-size input,
.checkout-payment__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-color,
.product-size {
    position: relative;
}

.product-color span,
.product-size span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--glow-line-strong);
    background: rgba(255, 255, 255, 0.88);
    color: var(--glow-ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.product-color__chip {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-color input:checked+.product-color__chip,
.product-color input:checked~.product-color__text,
.product-size input:checked+span {
    outline: none;
}

.product-color input:checked~span,
.product-size input:checked+span {
    border-color: var(--glow-gold-strong);
    box-shadow: 0 0 0 4px rgba(205, 163, 91, 0.14);
}

.product-atelier__meta,
.glow-feature-stack,
.glow-faq-grid {
    display: grid;
    gap: 14px;
}

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

.product-atelier__meta-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--glow-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 236, 224, 0.8));
    color: var(--glow-ink);
}

.glow-story-grid,
.glow-contact-grid,
.glow-testimonial-grid,
.glow-social-grid,
.glow-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glow-story-card h3,
.glow-contact-card h3,
.glow-testimonial-card h3,
.glow-social-card h3,
.glow-guide-card h3,
.glow-faq-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.glow-contact-card ul,
.glow-testimonial-card p:last-child {
    margin-bottom: 0;
}

.glow-testimonial-card,
.glow-social-card,
.service-strip__card {
    padding: 26px;
    border-radius: 26px;
}

.glow-testimonial-card__name {
    color: var(--glow-gold-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.glow-social-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.glow-social-card--image {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.glow-social-card--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 25, 13, 0.04), rgba(37, 25, 13, 0.4));
}

.glow-social-card--image>* {
    position: relative;
    z-index: 1;
    color: #fff;
}

.service-strip {
    padding: 18px 0 24px;
}

.service-strip hr {
    display: none;
}

.service-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-strip__card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--glow-ink);
    font-size: 1.05rem;
}

.service-strip__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--glow-gold);
    color: var(--glow-gold-strong);
    font-size: 1.2rem;
}

.glow-footer {
    padding: 26px 0 40px;
}

.glow-footer__newsletter,
.glow-footer__main {
    border-radius: 30px;
    border: 1px solid var(--glow-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--glow-shadow);
}

.glow-newsletter-spread {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--glow-surface);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 60px;
    min-height: 540px;
    border: 1px solid var(--glow-line);
}

.glow-newsletter-spread__image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.glow-newsletter-spread__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 253, 249, 0.15) 100%);
}

.glow-newsletter-spread__content {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #fdfaf7;
}

.glow-newsletter-spread__inner {
    max-width: 440px;
}

.glow-newsletter-spread__title {
    margin: 12px 0 20px;
    font-size: 3.2rem;
    line-height: 1.05;
    color: var(--glow-ink);
}

.glow-newsletter-spread__copy {
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--glow-copy);
    opacity: 0.8;
}

/* Editorial Form */
.glow-editorial-form__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glow-editorial-form input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glow-line-strong);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--glow-ink);
    transition: border-color 0.3s ease;
    outline: none;
}

.glow-editorial-form input:focus {
    border-bottom-color: var(--glow-gold-strong);
}

.glow-editorial-form__submit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    color: var(--glow-gold-strong);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.glow-editorial-form__submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.glow-editorial-form__submit:hover {
    color: var(--glow-ink);
}

.glow-editorial-form__submit:hover svg {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .glow-newsletter-spread {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .glow-newsletter-spread__image {
        height: 300px;
    }

    .glow-newsletter-spread__content {
        padding: 40px 30px;
    }

    .glow-newsletter-spread__title {
        font-size: 2.5rem;
    }
}

.glow-footer__main {
    padding: 30px;
}

.glow-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.7fr 0.9fr;
    gap: 20px;
}

.glow-footer__main h5 {
    margin: 0 0 14px;
    font-size: 1.25rem;
}

.glow-footer__main ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.glow-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--glow-line);
    color: var(--glow-muted);
    font-size: 0.84rem;
}

.glow-footer__cards {
    display: flex;
    align-items: center;
    gap: 10px;
}

.glow-footer__cards img {
    width: auto;
    height: 20px;
}

.glow-payment-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--glow-line);
    color: var(--glow-copy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.glow-guide-grid {
    margin-top: 28px;
}

.glow-guide-card {
    min-height: 100%;
}

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

.glow-faq-card p {
    margin: 0;
}

.cart-page,
.checkout-page {
    padding-top: 42px !important;
}

.cart-page__item,
.cart-page__summary,
.checkout-panel,
.checkout-summary,
.thank-you-panel {
    border-radius: 28px;
}

.cart-page__item,
.checkout-panel,
.checkout-summary,
.cart-page__summary {
    padding: 24px;
}

.cart-page__image img {
    border-radius: 18px;
}

.checkout-form .form-grid,
.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-payment {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
}

.checkout-payment__option {
    display: flex;
    align-items: start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--glow-line);
    background: rgba(246, 239, 229, 0.62);
}

.checkout-payment__option strong,
.checkout-summary__line strong,
.cart-page__summary-line strong {
    color: var(--glow-ink);
}

.thank-you-panel {
    padding: 28px;
}

.thank-you-panel__details {
    display: grid;
    gap: 14px;
}

.thank-you-panel__card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glow-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 236, 224, 0.8));
}

@media (max-width: 1100px) {

    .glow-hero__grid,
    .glow-editorial__grid,
    .glow-about__grid,
    .glow-contact__grid,
    .glow-product-page__grid,
    .signature-band__wrap,
    .glow-footer__newsletter,
    .glow-footer__grid {
        grid-template-columns: 1fr;
    }

    .glow-product-grid,
    .glow-category-grid,
    .service-strip__grid,
    .signature-band__grid,
    .glow-story-grid,
    .glow-contact-grid,
    .glow-testimonial-grid,
    .glow-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glow-social-grid {
        grid-template-columns: 1fr;
    }

    .glow-nav {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .glow-nav__menu {
        order: 3;
    }
}

@media (max-width: 760px) {
    .glow-store .container {
        width: min(100%, calc(100% - 20px));
    }

    .glow-announcement__inner,
    .glow-section__header,
    .glow-shop-grid__header,
    .glow-footer__meta,
    .glow-footer__newsletter form {
        flex-direction: column;
        align-items: start;
    }

    .glow-hero__content,
    .glow-page-hero__shell,
    .glow-panel,
    .glow-product-card__body,
    .glow-product-stage,
    .glow-product-info-card,
    .glow-story-card,
    .glow-contact-card,
    .glow-guide-card,
    .glow-faq-card,
    .glow-social-card,
    .signature-band__intro,
    .signature-band__card,
    .service-strip__card,
    .glow-footer__newsletter,
    .glow-footer__main,
    .cart-page__item,
    .checkout-panel,
    .checkout-summary,
    .cart-page__summary,
    .thank-you-panel {
        padding: 22px;
    }

    .glow-hero__content h1 {
        font-size: 3.3rem;
    }

    .glow-hero__visuals,
    .glow-product-grid,
    .glow-category-grid,
    .glow-story-grid,
    .glow-contact-grid,
    .glow-testimonial-grid,
    .glow-guide-grid,
    .glow-faq-grid,
    .service-strip__grid,
    .signature-band__grid,
    .product-atelier__meta,
    .checkout-form .form-grid,
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .glow-hero__stats {
        grid-template-columns: 1fr;
    }

    .brand-mark__image {
        height: 70px;
    }

    .glow-footer__newsletter input {
        min-width: 0;
        width: 100%;
    }

    .glow-hero {
        padding-top: 32px;
    }
}

/* Minimalist Refinement
--------------------------------------------------------------*/
.glow-store {
    --glow-bg: #faf8f4;
    --glow-surface: #fffdf9;
    --glow-surface-strong: #f6f1ea;
    --glow-surface-deep: #efe8de;
    --glow-copy: #65584a;
    --glow-muted: #93816c;
    --glow-line: rgba(73, 56, 33, 0.12);
    --glow-line-strong: rgba(73, 56, 33, 0.18);
    --glow-gold: #c89a92;
    --glow-gold-strong: #b57c76;
    --glow-shadow: none;
}

.glow-store {
    background: var(--glow-bg);
}

.glow-announcement {
    display: none;
}

.glow-store .section-kicker::before,
.glow-store .categories::before,
.glow-store .lookbook-card__subtitle::before,
.glow-store .product-note::before,
.glow-eyebrow::before {
    display: none;
}

.glow-store .section-kicker,
.glow-store .categories,
.glow-store .lookbook-card__subtitle,
.glow-store .product-note,
.glow-eyebrow {
    gap: 0;
    letter-spacing: 0.18em;
}

.glow-store .btn,
.glow-store .btn-wrap a,
.glow-store .cart-link,
.glow-store .add-cart-btn,
.glow-store .view-btn,
.glow-store .wishlist-btn {
    min-height: 46px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    box-shadow: none !important;
}

.glow-store .btn-dark,
.glow-store .btn.btn-dark,
.glow-store .cart-link {
    background: var(--glow-ink);
    color: #fff;
}

.glow-store .btn-dark:hover,
.glow-store .btn.btn-dark:hover,
.glow-store .cart-link:hover {
    background: var(--glow-gold-strong);
    color: #fff;
}

.glow-header {
    backdrop-filter: none;
}

.glow-header__shell {
    background: rgba(250, 248, 244, 0.96);
}

.glow-nav {
    min-height: 76px;
}

.glow-nav__menu a,
.glow-nav__actions a {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.glow-nav__menu a.is-active,
.glow-nav__menu a:hover,
.glow-nav__actions a:hover {
    color: var(--glow-ink);
    opacity: 1;
}

.brand-mark__image {
    height: 72px;
}

.brand-mark__tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
}

.glow-hero {
    padding: 34px 0 18px;
}

.glow-news {
    padding: 26px 0 10px;
}

.glow-news__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.glow-news__header p {
    margin: 0;
    color: var(--glow-muted);
    font-size: 0.92rem;
}

.glow-news-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--glow-line);
    background-size: cover;
    background-position: center;
}

.glow-news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 22, 14, 0.62) 0%, rgba(30, 22, 14, 0.18) 55%, rgba(30, 22, 14, 0.06) 100%);
}

.glow-news-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 420px;
    max-width: 640px;
    padding: 28px;
    color: #fff;
}

.glow-news-card__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.glow-news-card__title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.glow-news-card__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
}

.glow-news-card.is-light::before {
    background: linear-gradient(90deg, rgba(255, 252, 247, 0.78) 0%, rgba(255, 252, 247, 0.34) 55%, rgba(255, 252, 247, 0.12) 100%);
}

.glow-news-card.is-light .glow-news-card__content {
    color: var(--glow-ink);
}

.glow-news-card.is-light .glow-news-card__badge {
    background: rgba(47, 36, 24, 0.08);
    color: var(--glow-ink);
}

.glow-news-card.is-light .glow-news-card__title {
    color: var(--glow-ink);
}

.glow-news-card.is-light .glow-news-card__copy {
    color: rgba(47, 36, 24, 0.8);
}

.glow-news-card.is-dark::before {
    background: linear-gradient(90deg, rgba(30, 22, 14, 0.68) 0%, rgba(30, 22, 14, 0.24) 55%, rgba(30, 22, 14, 0.08) 100%);
}

.glow-hero__grid {
    gap: 18px;
}

.glow-hero__content,
.glow-hero-card,
.glow-hero-note,
.glow-category-card,
.glow-panel,
.glow-product-card,
.glow-story-card,
.glow-feature-card,
.glow-contact-card,
.glow-testimonial-card,
.glow-social-card,
.glow-guide-card,
.glow-faq-card,
.signature-band__card,
.service-strip__card,
.cart-page__summary,
.checkout-summary,
.checkout-panel,
.thank-you-panel,
.cart-page__item,
.signature-band__intro,
.glow-footer__newsletter,
.glow-footer__main,
.glow-product-stage,
.glow-product-info-card {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 22px;
}

.glow-hero__content,
.glow-page-hero__shell,
.glow-panel,
.glow-product-card__body,
.glow-product-stage,
.glow-product-info-card,
.glow-story-card,
.glow-contact-card,
.glow-guide-card,
.glow-faq-card,
.glow-social-card,
.signature-band__intro,
.signature-band__card,
.service-strip__card,
.glow-footer__newsletter,
.glow-footer__main,
.cart-page__item,
.checkout-panel,
.checkout-summary,
.cart-page__summary,
.thank-you-panel {
    padding: 24px;
}

.glow-hero__content h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.94;
    max-width: 10ch;
}

.glow-hero__copy {
    max-width: 520px;
    font-size: 0.98rem;
}

.glow-hero__actions {
    margin: 24px 0 0;
}

.glow-hero__stats {
    margin-top: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glow-stat {
    padding: 14px 16px;
    border-radius: 16px;
    background: transparent;
}

.glow-hero__visuals {
    grid-template-columns: 1fr;
}

.glow-hero__stack {
    grid-template-columns: 1fr;
}

.glow-hero-note--muted,
.glow-panel--tone,
.glow-social-card--tone {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 236, 228, 0.9));
}

.glow-hero-card,
.glow-panel--image,
.glow-social-card--image {
    min-height: 320px;
}

.glow-hero-card::before,
.glow-panel--image::before,
.glow-social-card--image::before {
    background: linear-gradient(180deg, rgba(37, 25, 13, 0.02), rgba(37, 25, 13, 0.22));
}

.glow-hero-card__content {
    padding: 20px;
}

.glow-hero-card__badge {
    margin-bottom: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.14em;
}

.glow-hero-card__title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.glow-section,
.glow-editorial,
.glow-page-hero,
.glow-product-page {
    padding-top: 28px;
    padding-bottom: 28px;
}

.glow-section__header {
    margin-bottom: 18px;
}

.glow-category-grid,
.glow-product-grid,
.glow-story-grid,
.glow-contact-grid,
.glow-testimonial-grid,
.glow-social-grid,
.glow-guide-grid,
.glow-faq-grid,
.signature-band__grid,
.service-strip__grid {
    gap: 14px;
}

.glow-category-card,
.signature-band__card,
.service-strip__card {
    padding: 20px;
}

.glow-category-card__pill,
.glow-filter-pills span,
.glow-trust-pills span,
.glow-page-hero__stats span,
.glow-product-visual__chips span {
    background: transparent;
    border: 1px solid var(--glow-line);
    color: var(--glow-copy);
}

.glow-product-card {
    overflow: hidden;
    border-color: rgba(73, 56, 33, 0.1);
}

.glow-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px 22px 20px;
}

.glow-product-card__title {
    margin: 10px 0 10px;
    font-size: 1.3rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.glow-product-card__copy {
    margin: 0 0 18px;
    color: var(--glow-copy);
    font-size: 0.9rem;
    line-height: 1.65;
}

.glow-product-visual {
    min-height: 250px;
    padding: 22px;
    background: linear-gradient(180deg, var(--visual-start, #f7f1e7), var(--visual-end, #fdfaf5));
}

.glow-product-visual--feature {
    min-height: 250px;
}

.glow-product-visual__halo {
    display: none;
}

.glow-product-visual__meta {
    max-width: calc(100% - 132px);
}

.glow-product-visual__brand {
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    color: var(--glow-muted);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
}

.glow-product-visual__eyebrow {
    display: inline-flex;
    color: var(--glow-ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glow-product-visual__chips {
    margin-top: 18px;
}

.glow-product-visual__packshot {
    right: 20px;
    bottom: 20px;
}

.glow-product-card__topline {
    align-items: center;
    margin-bottom: 2px;
}

.glow-product-card__topline .product-note {
    color: var(--glow-gold-strong) !important;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
}

.glow-product-card__topline .product-note::before {
    display: none;
}

.glow-product-card__compare {
    font-size: 0.84rem;
}

.glow-product-card__bottomline {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(73, 56, 33, 0.08);
}

.glow-product-card__price-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.glow-product-card__price {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.glow-product-card__cta {
    gap: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
}

.glow-product-card--feature .glow-product-card__title {
    font-size: 1.45rem;
}

.glow-product-card--feature .glow-product-visual {
    min-height: 260px;
}

.glow-product-card--feature .glow-product-visual__packshot {
    transform: scale(0.96);
    transform-origin: bottom right;
}

.glow-page-hero__shell,
.glow-page-hero__shell--image {
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 253, 249, 0.86)),
        var(--page-hero-image);
    background-size: cover;
    background-position: center;
}

.glow-news .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.glow-news .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(47, 36, 24, 0.18);
    opacity: 1;
}

.glow-news .swiper-pagination-bullet-active {
    background: var(--glow-ink);
}

.glow-price strong {
    font-size: 1.45rem;
}

.product-option-group,
.glow-form-block,
.checkout-payment__option,
.product-atelier__meta-card,
.thank-you-panel__card,
.glow-step {
    background: transparent;
    border-radius: 16px;
}

.glow-panel__steps {
    gap: 12px;
}

.signature-band {
    padding-top: 0;
}

.service-strip__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    background: transparent;
    border: 1px solid var(--glow-line);
    font-size: 1rem;
}

.glow-footer {
    padding-top: 18px;
}

.glow-footer__newsletter {
    margin-bottom: 12px;
}

.glow-footer__newsletter h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.glow-footer__newsletter form {
    justify-content: flex-start;
}

.glow-footer__newsletter input {
    min-height: 46px;
}

.glow-footer__meta {
    margin-top: 18px;
    padding-top: 14px;
}

@media (max-width: 1100px) {
    .glow-hero__stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .glow-news__header {
        flex-direction: column;
        align-items: start;
    }

    .glow-news-card,
    .glow-news-card__content {
        min-height: 340px;
    }

    .brand-mark__image {
        height: 64px;
    }

    .glow-hero__content h1 {
        font-size: 3rem;
    }
}

/* Product Card Redesign (Editorial Edition)
--------------------------------------------------------------*/
.glow-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(47, 36, 24, 0.06);
    border-radius: 2px;
    /* Sharp, editorial edges or very slight rounding */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 36, 24, 0.12);
    box-shadow:
        0 20px 40px -10px rgba(47, 36, 24, 0.1),
        0 10px 20px -5px rgba(47, 36, 24, 0.05);
}

.glow-product-card__visual-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #fdfaf7;
}

.glow-product-visual {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Full screen */
    background: #fdfaf7;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.glow-product-visual-swiper {
    width: 100%;
    height: 100%;
}

.glow-product-visual__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-product-visual__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.glow-product-card:hover .glow-product-visual__image {
    transform: scale(1.1);
}

.glow-product-visual__footer {
    position: relative;
    z-index: 3;
    margin-top: auto;
}

.glow-product-visual__chips {
    display: flex;
    gap: 6px;
    opacity: 0.8;
}

.glow-chip {
    font-family: 'Manrope', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--glow-ink);
    border-bottom: 1px solid rgba(47, 36, 24, 0.2);
    padding-bottom: 2px;
}

.glow-product-card__content {
    display: flex;
    flex-direction: column;
    padding: 32px;
    flex: 1;
}

.glow-product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.glow-product-card__category {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--glow-gold-strong);
}

.glow-product-card__compare {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--glow-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.glow-product-card__title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.glow-product-card__title a {
    color: var(--glow-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.glow-product-card:hover .glow-product-card__title a {
    color: var(--glow-gold-strong);
}

.glow-product-card__details {
    margin: 16px 0 24px;
}

.glow-product-card__excerpt {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--glow-copy);
    opacity: 0.85;
}

.glow-product-card__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(47, 36, 24, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glow-product-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.glow-product-card__price {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--glow-ink);
}

.glow-product-card__currency {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--glow-muted);
}

.glow-product-card__action {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--glow-ink);
    transition: all 0.3s ease;
}

.glow-product-card__action-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.glow-product-card__icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.glow-product-card:hover .glow-product-card__icon {
    transform: translateX(5px);
}

/* Feature Mode Adjustments */
.glow-product-card--feature {
    border-color: rgba(47, 36, 24, 0.1);
}

.glow-product-card--feature .glow-product-card__title {
    font-size: 2.4rem;
}

@media (max-width: 768px) {
    .glow-product-card__content {
        padding: 24px;
    }

    .glow-product-card__title {
        font-size: 1.75rem;
    }

    .glow-product-visual {
        padding: 24px;
    }
}

/* Product Detail Page (Redesign)
--------------------------------------------------------------*/
.glow-product-view {
    padding: 60px 0;
}

.glow-product-view__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 60px;
    align-items: start;
}

.glow-product-view__gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

.glow-product-view__stage {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--glow-line);
    width: 100%;
}

.glow-product-view__stage .glow-product-visual {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
}

.glow-product-view__details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.glow-detail-chip {
    padding: 16px 20px;
    background: var(--glow-surface-strong);
    border: 1px solid var(--glow-line);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--glow-ink);
    text-align: center;
}

.glow-product-view__editorial {
    display: grid;
    gap: 40px;
    padding: 40px;
    background: var(--glow-surface);
    border-radius: 8px;
    border: 1px solid var(--glow-line);
}

.glow-editorial-block__title {
    margin: 8px 0 16px;
    font-size: 2rem;
    line-height: 1.1;
}

/* Info & Sticky Sidebar */
.glow-product-view__info {
    position: sticky;
    top: 120px;
}

.glow-product-header {
    margin-bottom: 40px;
}

.glow-product-title {
    margin: 8px 0 16px;
    font-size: 3.5rem;
    line-height: 1;
}

.glow-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--glow-ink);
}

.glow-product-price__current {
    font-weight: 500;
}

.glow-product-price__old {
    font-size: 1.4rem;
    color: var(--glow-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.glow-product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--glow-copy);
    max-width: 45ch;
}

/* Purchase Form */
.glow-purchase-form {
    display: grid;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glow-line);
}

.glow-option-group__label {
    display: block;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--glow-muted);
}

.glow-shade-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.glow-shade-pill {
    flex: 0 0 auto;
    cursor: pointer;
    position: relative;
}

.glow-shade-pill input,
.glow-size-pill input {
    position: absolute;
    opacity: 0;
}

.glow-shade-pill__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid var(--glow-line);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.glow-shade-pill__swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glow-shade-pill__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--glow-copy);
}

.glow-shade-pill input:checked+.glow-shade-pill__inner {
    border-color: var(--glow-ink);
    background: var(--glow-ink);
}

.glow-shade-pill input:checked+.glow-shade-pill__inner .glow-shade-pill__name {
    color: #ffffff;
}

/* Size Pills */
.glow-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.glow-size-pill__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 40px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid var(--glow-line);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.glow-size-pill input:checked+.glow-size-pill__inner {
    background: var(--glow-ink);
    border-color: var(--glow-ink);
    color: #ffffff;
}

.glow-purchase-actions {
    margin-top: 10px;
}

.glow-trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--glow-line);
}

.glow-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--glow-muted);
}

.glow-trust-badge i {
    color: var(--glow-gold-strong);
}

/* Responsive */
@media (max-width: 1100px) {
    .glow-product-view__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glow-product-view__info {
        position: static;
    }

    .glow-product-title {
        font-size: 2.8rem;
    }
}

/* Minimalist Editorial Filter Bar */
.glow-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
    padding: 24px 0;
    border-top: 1px solid var(--glow-line);
    border-bottom: 1px solid var(--glow-line);
}

.glow-filter-group {
    display: flex;
    align-items: baseline;
    gap: 40px;
}

.glow-filter-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glow-ink);
    min-width: 100px;
    flex-shrink: 0;
}

.glow-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.glow-filter-chip {
    font-size: 0.85rem;
    color: var(--glow-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.glow-filter-chip:hover {
    color: var(--glow-muted);
    /* No color change on hover */
}

.glow-filter-chip.is-active {
    color: var(--glow-ink);
    border-bottom-color: var(--glow-gold-strong);
    font-weight: 700;
}

@media (max-width: 991px) {
    .glow-filter-group {
        flex-direction: column;
        gap: 12px;
    }

    .glow-filter-chips {
        gap: 20px;
    }
}

/* Filter Animation */
.glow-product-card {
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.glow-product-card.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.is-hidden {
    display: none !important;
}

#shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    min-height: 400px;
    /* Prevent layout jump */
}

/* Refined Filter Staggered Animation */
.glow-product-card {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.glow-product-card.is-animating-out {
    opacity: 0;
    transform: scale(0.95);
}

.glow-product-card.is-hidden {
    display: none !important;
}

#shop-grid {
    transition: min-height 0.3s ease;
}

/* Redesigned Navigation & Larger Logo */
.glow-header__logo .brand-mark__image {
    height: 100px;
    /* Substantially larger brand presence */
    width: auto;
}

.glow-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glow-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.glow-nav__menu {
    display: flex;
    gap: 32px;
}

.glow-nav__menu a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--glow-ink);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.glow-nav__badge {
    background: var(--glow-gold-strong);
    color: #ffffff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 1;
}

/* Burger Menu */
.glow-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.glow-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--glow-ink);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .glow-burger {
        display: flex;
    }

    .glow-nav__menu {
        position: fixed;
        inset: 0;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 40px;
    }

    .glow-nav__menu.is-open {
        transform: translateX(0);
    }

    .glow-nav__menu a {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }

    .glow-nav__right-desktop {
        display: none;
    }

    .glow-header__logo .brand-mark__image {
        height: 60px;
    }

    .glow-burger.is-active span:first-child {
        transform: translateY(7.5px) rotate(45deg);
    }

    .glow-burger.is-active span:last-child {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

.glow-nav__right-desktop {
    display: flex;
    align-items: center;
}

/* Redesigned Minimalist Footer */
.glow-footer-redesign {
    padding: 100px 0 60px;
    background: #ffffff;
    border-top: 1px solid var(--glow-line);
}

.glow-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 80px;
}

.glow-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.glow-footer-tagline {
    font-size: 0.9rem;
    color: var(--glow-muted);
    font-style: italic;
}

.glow-footer-social {
    display: flex;
    gap: 24px;
}

.glow-footer-social a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--glow-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.glow-footer-social a:hover {
    color: var(--glow-gold-strong);
}

.glow-footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.glow-footer-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glow-ink);
    margin-bottom: 24px;
}

.glow-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glow-footer-list li {
    font-size: 0.9rem;
    color: var(--glow-muted);
}

.glow-footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.glow-footer-list a:hover {
    color: var(--glow-ink);
}

.glow-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glow-line);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.glow-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--glow-muted);
}

.glow-footer-legal-links {
    display: flex;
    gap: 20px;
}

.glow-footer-legal-links a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.glow-footer-manifesto {
    max-width: 400px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--glow-muted);
    text-align: right;
}

@media (max-width: 991px) {
    .glow-footer-redesign {
        padding: 60px 0 40px;
    }

    .glow-footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .glow-footer-nav-group {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glow-footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .glow-footer-manifesto {
        text-align: left;
        max-width: 100%;
    }
}

/* Mobile Layout Refinements */
@media (max-width: 991px) {

    /* Header & Content Offset */
    .glow-header {
        position: relative !important;
        /* Remove sticky on mobile to prevent overlap */
    }

    /* Hero Slider Adjustments */
    .glow-main-swiper {
        height: 85vh !important;
        /* Immersive vertical fill */
    }

    .glow-hero-slide__title {
        font-size: 2.2rem;
    }

    .glow-main-swiper__pagination .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    /* 2-Column Grids for better mobile density */
    .glow-category-grid,
    .glow-product-grid,
    #shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .glow-product-card__title {
        font-size: 1.1rem;
    }

    .glow-product-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Filter Bar visibility */
    .glow-filter-bar {
        margin-top: 20px;
        padding: 15px;
    }

    .glow-filter-chips {
        gap: 12px;
    }

    .glow-filter-chip {
        font-size: 0.75rem;
    }

    /* Footer Fixes */
    .glow-footer-manifesto {
        text-align: left;
        max-width: 100%;
        font-size: 0.8rem;
        word-break: break-word;
    }

    .glow-footer-brand .brand-mark__image {
        height: 120px;
    }

    .glow-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .glow-footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .glow-footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .glow-category-grid,
    .glow-product-grid,
    #shop-grid {
        grid-template-columns: 1fr !important;
        /* Back to 1 col for very small screens */
    }
}

/* Dedicated Mobile Footer - Redo from Scratch */
@media (max-width: 991px) {
    .glow-footer-redesign {
        padding: 40px 20px;
        background: #ffffff;
        text-align: center;
    }

    .glow-footer-top {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Reset gaps to use border-separated blocks */
    }

    .glow-footer-brand {
        padding-bottom: 40px;
        margin-bottom: 0;
        border-bottom: 1px solid var(--glow-line);
        width: 100%;
    }

    .glow-footer-brand .brand-mark__image {
        height: 100px;
        margin: 0 auto;
    }

    .glow-footer-tagline {
        margin-top: 12px;
        font-size: 0.85rem;
    }

    .glow-footer-social {
        margin-top: 24px;
        justify-content: center;
        gap: 30px;
    }

    .glow-footer-nav-group {
        display: block;
        /* Stack blocks */
        width: 100%;
    }

    .glow-footer-column {
        padding: 30px 0;
        border-bottom: 1px solid var(--glow-line);
    }

    .glow-footer-title {
        margin-bottom: 20px;
        font-size: 0.75rem;
        color: var(--glow-ink);
    }

    .glow-footer-list {
        gap: 16px;
    }

    .glow-footer-list li {
        font-size: 1rem;
    }

    .glow-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 40px;
        border-top: none;
        gap: 32px;
    }

    .glow-footer-manifesto {
        text-align: center;
        font-size: 0.8rem;
        max-width: 280px;
        margin: 0 auto;
        font-style: italic;
    }

    .glow-footer-legal-links {
        justify-content: center;
        margin-top: 10px;
    }
}

/* New About Page - Editorial Overhaul */
.glow-about-hero {
    padding: 120px 0 80px;
    background: #fdfaf7;
    text-align: center;
}

.glow-about-hero__shell {
    max-width: 800px;
    margin: 0 auto;
}

.glow-about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 24px 0;
    color: var(--glow-ink);
}

.glow-about-hero__copy {
    font-size: 1.25rem;
    color: var(--glow-muted);
    line-height: 1.6;
}

.glow-manifesto-section {
    padding: 100px 0;
}

.glow-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.glow-manifesto-blocks {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.glow-manifesto-block h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glow-ink);
    margin-bottom: 12px;
}

.glow-manifesto-block p {
    color: var(--glow-muted);
    line-height: 1.6;
}

.glow-manifesto-image-wrap {
    background: #f4decd;
    padding: 60px;
    border-radius: 2px;
}

.glow-manifesto-image {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
}

.glow-ritual-spread {
    padding-bottom: 100px;
}

.glow-ritual-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--glow-bg);
    min-height: 500px;
}

.glow-ritual-image {
    background-size: cover;
    background-position: center;
}

.glow-ritual-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.glow-ritual-title {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

.glow-ritual-copy {
    color: var(--glow-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.glow-founder-section {
    padding: 100px 0;
    background: #ffffff;
}

.glow-founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.glow-founder-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.glow-founder-title {
    font-size: 2.5rem;
    margin: 20px 0;
}

.glow-founder-text {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--glow-ink);
    margin-bottom: 24px;
}

.glow-founder-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (max-width: 991px) {
    .glow-about-hero {
        padding: 80px 20px;
    }

    .glow-manifesto-grid,
    .glow-ritual-card,
    .glow-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glow-ritual-content {
        padding: 40px 30px;
    }

    .glow-manifesto-image-wrap {
        padding: 30px;
    }
}

/* Collective Section Styles */
.glow-collective-section {
    padding: 100px 0;
    background: #ffffff;
}

.glow-collective-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.glow-collective-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.glow-collective-title {
    font-size: 2.5rem;
    margin: 20px 0;
}

.glow-collective-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--glow-muted);
    margin-bottom: 40px;
}

.glow-collective-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glow-line);
    padding-top: 40px;
}

.glow-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--glow-ink);
    margin-bottom: 4px;
}

.glow-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--glow-muted);
}

@media (max-width: 991px) {
    .glow-collective-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glow-collective-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* Footer Background Logo Accent */
.glow-footer-redesign {
    position: relative;
    overflow: hidden;
}

.glow-footer-redesign::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 900px;
    height: 900px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: grayscale(1);
    pointer-events: none;
    z-index: 0;
    transform: none;
    /* Removed tilt */
}

.glow-footer-redesign .container {
    position: relative;
    z-index: 1;
}

/* Mobile Specific Footer Watermark Adjustment */
@media (max-width: 991px) {
    .glow-footer-redesign::after {
        top: 20px;
        bottom: auto;
        left: 50%;
        width: 100%;
        height: 100%;
        /* Cover full footer area */
        background-position: center top;
        opacity: 0.05;
        transform: translateX(-50%);
        z-index: 0;
    }

    .glow-footer-redesign {
        padding-top: 60px;
        /* Reset to normal padding */
    }
}

/* Logo Drawing Preloader */
.preloader-wrapper {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.glow-drawing-logo {
    display: block;
    margin: 0 auto;
    width: 80%; /* Prominent on mobile */
    max-width: 900px;
    height: auto;
    overflow: visible;
}

@media (min-width: 992px) {
    .glow-drawing-logo {
        width: 60vw; /* Natural luxury scale on desktop */
    }
}

.glow-logo-path {
    font-family: 'Cormorant Garamond', serif, Georgia, serif;
    font-size: 140px; /* Larger font for two-line layout */
    font-weight: 500;
    fill: transparent;
    stroke: #d7a88a;
    stroke-width: 2px;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawLogo 3.5s ease-in-out forwards;
    letter-spacing: 4px; /* Natural luxury spacing */
}

@keyframes drawLogo {
    0% {
        stroke-dashoffset: 3000;
        fill: rgba(215, 168, 138, 0);
    }
    50% {
        stroke-dashoffset: 0;
        fill: rgba(215, 168, 138, 0);
    }
    100% {
        stroke-dashoffset: 0;
        fill: rgba(215, 168, 138, 1);
    }
}

/* Luxury Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.99);
    filter: blur(8px);
    transition: 
        opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
/* Boutique Contact Redesign */
.glow-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.glow-contact-info .section-title {
    margin-bottom: 24px;
}

.glow-contact-channels {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.glow-contact-channel strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glow-gold-strong);
    margin-bottom: 6px;
}

.glow-contact-channel a, 
.glow-contact-channel span {
    font-size: 1.2rem;
    color: var(--glow-ink);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
}

.glow-contact-form-wrap {
    background: var(--glow-surface);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--glow-line);
    box-shadow: var(--glow-shadow);
}

.glow-boutique-form .glow-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.glow-boutique-form .glow-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.glow-boutique-form label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--glow-muted);
}

.glow-boutique-form input,
.glow-boutique-form select,
.glow-boutique-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--glow-line-strong);
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--glow-ink);
    transition: all 0.3s ease;
}

.glow-boutique-form input:focus,
.glow-boutique-form select:focus,
.glow-boutique-form textarea:focus {
    outline: none;
    border-color: var(--glow-gold);
    box-shadow: 0 0 0 4px rgba(200, 154, 146, 0.1);
}

@media (max-width: 992px) {
    .glow-contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .glow-contact-form-wrap {
        padding: 30px;
    }
    
    .glow-boutique-form .glow-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Minimalist Boutique Inquiry Form */
.glow-contact-section {
    padding: 100px 0;
    background: var(--glow-bg);
}

.glow-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.glow-form-header {
    margin-bottom: 60px;
}

.glow-form-header .section-title {
    margin-top: 12px;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
}

.glow-minimal-form {
    background: var(--glow-surface);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--glow-line);
    box-shadow: var(--glow-shadow);
    text-align: left;
}

.glow-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.glow-input-group {
    margin-bottom: 20px;
}

.glow-minimal-form input,
.glow-minimal-form select,
.glow-minimal-form textarea {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--glow-line-strong);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--glow-ink);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-minimal-form input:focus,
.glow-minimal-form select:focus,
.glow-minimal-form textarea:focus {
    outline: none;
    border-color: var(--glow-gold);
    background: #fffdf9;
    box-shadow: 0 10px 30px rgba(200, 154, 146, 0.1);
}

.glow-minimal-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239b846c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.glow-form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-wide {
    min-width: 280px;
}

@media (max-width: 768px) {
    .glow-minimal-form {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .glow-form-grid {
        grid-template-columns: 1fr;
    }
    
    .glow-contact-section {
        padding: 60px 0;
    }
}

/* Editorial Boutique Form - Radical Redesign */
.glow-editorial-contact {
    padding: 120px 0;
    background: #fffdf9;
}

.glow-editorial-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.glow-editorial-header {
    margin-bottom: 80px;
}

.editorial-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-top: 20px;
    line-height: 0.9;
}

.glow-editorial-form {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.glow-editorial-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glow-editorial-field label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    color: var(--glow-gold-strong);
    font-style: italic;
}

.glow-editorial-field input,
.glow-editorial-field select,
.glow-editorial-field textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--glow-line-strong) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    font-size: 2.2rem !important;
    font-family: "Cormorant Garamond", serif !important;
    color: var(--glow-ink) !important;
    transition: border-color 0.4s ease !important;
    box-shadow: none !important;
}

.glow-editorial-field input:focus,
.glow-editorial-field select:focus,
.glow-editorial-field textarea:focus {
    outline: none !important;
    border-color: var(--glow-gold) !important;
}

.glow-editorial-field input::placeholder,
.glow-editorial-field textarea::placeholder {
    color: var(--glow-surface-deep) !important;
}

.glow-editorial-footer {
    margin-top: 40px;
}

.glow-editorial-btn {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    color: var(--glow-ink);
    cursor: pointer;
    transition: all 0.4s ease;
}

.glow-editorial-btn svg {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.glow-editorial-btn:hover {
    color: var(--glow-gold-strong);
}

.glow-editorial-btn:hover svg {
    transform: translateX(15px);
}

@media (max-width: 768px) {
    .glow-editorial-field label {
        font-size: 1.4rem;
    }
    
    .glow-editorial-field input,
    .glow-editorial-field select,
    .glow-editorial-field textarea {
        font-size: 1.6rem !important;
    }
    
    .glow-editorial-btn {
        font-size: 1.8rem;
    }
}

/* Mobile Fix for Editorial Button */
@media (max-width: 768px) {
    .glow-editorial-btn {
        font-size: 1.6rem;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid var(--glow-line-strong);
        padding-bottom: 15px;
    }
    
    .glow-editorial-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Ensure preloader content is centered */
.preloader-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
