/**
 * La Cortigiana - Luxury Editorial Single Product Styles
 * Scoped strictly to .lc-editorial-scope / .lc-editorial-product-page
 * Aesthetics: Italian Haute Lingerie Atelier (Turin)
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- Root & Scope Variables --- */
.lc-editorial-scope {
    --lc-font-serif: 'Cormorant Garamond', Garamond, 'Didot', 'Bodoni MT', Georgia, serif;
    --lc-font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --lc-color-bg: #FAF8F5;
    --lc-color-surface: #FFFFFF;
    --lc-color-surface-subtle: #F4EFEA;
    --lc-color-text-main: #141414;
    --lc-color-text-muted: #6B6560;
    --lc-color-text-light: #9C958E;
    --lc-color-border: #E8E2D9;
    --lc-color-border-dark: #141414;
    --lc-color-accent: #947250;
    --lc-color-accent-soft: rgba(148, 114, 80, 0.08);
    --lc-color-dark: #111111;
    --lc-color-white: #FFFFFF;
    
    --lc-space-xs: 6px;
    --lc-space-sm: 12px;
    --lc-space-md: 20px;
    --lc-space-lg: 32px;
    --lc-space-xl: 56px;
    --lc-space-2xl: 88px;
    
    --lc-radius-sm: 2px;
    --lc-radius-md: 4px;
    --lc-transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    
    font-family: var(--lc-font-sans);
    color: var(--lc-color-text-main);
    background-color: var(--lc-color-bg);
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Site Wrapper */
.lc-editorial-site-wrapper {
    max-width: 1380px;
    margin: 0 auto;
    padding: var(--lc-space-lg) var(--lc-space-md) var(--lc-space-2xl);
    box-sizing: border-box;
}

/* Hide Astra theme default single product clutter on product 2237 */
.lc-editorial-product-page .ast-single-post-order,
.lc-editorial-product-page .entry-header.ast-no-title,
.lc-editorial-product-page .ast-container > .ast-row > .ast-archive-description {
    display: none !important;
}

/* Remove default Woo quantity & clean form margins */
.lc-editorial-scope form.cart {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.lc-editorial-scope form.cart .quantity {
    display: none !important;
}

/* --- Hero Split Grid --- */
.lc-hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--lc-space-xl);
    align-items: start;
    margin-bottom: var(--lc-space-2xl);
}

/* Media Column (Left) */
.lc-hero-col-media {
    position: relative;
    width: 100%;
}

.lc-media-hero-container {
    width: 100%;
}

.lc-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #EDE8E1;
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.04);
}

.lc-media-frame video,
.lc-media-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-media-frame:hover img {
    transform: scale(1.025);
}

.lc-video-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lc-video-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E2BC82;
    animation: lcPulse 2s infinite ease-in-out;
}

@keyframes lcPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Hero Video Toggle Button */
.lc-hero-video-toggle {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lc-hero-video-toggle:hover {
    background: rgba(18, 18, 18, 0.9);
    transform: scale(1.05);
}

/* Media Sidecar Photography (Adjacent to Purchase Configurator) */
.lc-media-sidecars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.lc-media-frame--sidecar {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #EDE8E1;
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.lc-media-frame--sidecar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-media-frame--sidecar:hover img {
    transform: scale(1.025);
}

.lc-photo-role-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 5;
    background: rgba(18, 18, 18, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lc-role-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #E2BC82;
}

/* Hero Navigation / Lookbook Indicator Bar */
.lc-hero-nav-bar {
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
}

.lc-hero-lookbook-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(20, 19, 18, 0.03);
    border: 1px solid rgba(20, 19, 18, 0.08);
    border-radius: 30px;
    font-family: var(--lc-font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lc-color-text-muted);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-hero-lookbook-indicator:hover {
    background: rgba(20, 19, 18, 0.07);
    color: var(--lc-color-text-main);
    transform: translateY(1px);
}

.lc-hero-lookbook-indicator .lc-indicator-icon {
    display: flex;
    align-items: center;
    color: #B5935A;
}

.lc-hero-lookbook-indicator .lc-indicator-arrow {
    transition: transform 0.2s ease;
}

.lc-hero-lookbook-indicator:hover .lc-indicator-arrow {
    transform: translateY(2px);
}

/* Summary Column (Right, Sticky) */
.lc-hero-col-summary {
    position: sticky;
    top: 32px;
    padding: 8px 0 32px 20px;
    box-sizing: border-box;
}

/* Breadcrumbs */
.lc-breadcrumbs {
    margin-bottom: var(--lc-space-sm);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-color-text-light);
}

.lc-crumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.lc-crumb-list a {
    color: var(--lc-color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-crumb-list a:hover {
    color: var(--lc-color-text-main);
}

.lc-crumb-sep {
    color: var(--lc-color-border);
    font-size: 10px;
}

/* Atelier Tag */
.lc-atelier-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    font-weight: 600;
    margin-bottom: var(--lc-space-sm);
}

.lc-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--lc-color-accent);
}

/* Title & Subtitle */
.lc-product-title {
    font-family: var(--lc-font-serif);
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--lc-color-text-main);
    margin: 0 0 12px 0;
    letter-spacing: -0.015em;
}

.lc-product-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--lc-color-text-muted);
    margin: 0 0 var(--lc-space-md) 0;
}

/* Price Section */
.lc-price-section {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--lc-color-border);
    border-bottom: 1px solid var(--lc-color-border);
    margin-bottom: var(--lc-space-md);
}

.lc-price-display {
    font-family: var(--lc-font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--lc-color-text-main);
    letter-spacing: -0.01em;
}

.lc-price-display del {
    color: var(--lc-color-text-light);
    font-size: 20px;
    margin-right: 8px;
    font-weight: 400;
}

.lc-price-display ins {
    text-decoration: none;
    color: var(--lc-color-text-main);
}

.lc-vat-notice {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--lc-color-text-light);
    text-transform: uppercase;
}

/* --- WAPF Configurator Styling & Cards --- */
.lc-configurator-shell {
    margin-bottom: var(--lc-space-sm);
}

.lc-editorial-scope .wapf-field-container {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.lc-editorial-scope .wapf-field-row {
    margin-bottom: 22px !important;
    border: none !important;
    padding: 0 !important;
}

/* Hide raw WAPF labels on select fields where custom step headers are present */
.lc-editorial-scope .wapf-field-select .wapf-field-label {
    display: none !important;
}

.lc-editorial-scope .wapf-field-label {
    font-family: var(--lc-font-sans) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--lc-color-text-main) !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.lc-editorial-scope .wapf-field-label abbr.required {
    color: var(--lc-color-accent);
    text-decoration: none;
    font-size: 14px;
}

.lc-editorial-scope .wapf-field-description {
    font-size: 11px;
    color: var(--lc-color-text-light);
    margin-top: 5px;
    letter-spacing: 0.02em;
}

/* Hide raw WAPF table-like totals row to avoid double price clutter */
.lc-editorial-scope .wapf-product-totals {
    display: none !important;
}

/* Step Headers */
.lc-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-top: 4px;
}

.lc-step-header--with-action {
    justify-content: space-between;
}

.lc-step-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #141312;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lc-step-info {
    display: flex;
    flex-direction: column;
}

.lc-step-title {
    font-family: var(--lc-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lc-color-text-main);
}

.lc-step-subtitle {
    font-size: 11px;
    color: var(--lc-color-text-light);
    letter-spacing: 0.01em;
    margin-top: 1px;
}

.lc-step-optional {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-color-text-light);
    background: rgba(20, 19, 18, 0.05);
    padding: 3px 8px;
    border-radius: 12px;
}

/* Size Guide Trigger Button */
.lc-size-guide-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--lc-color-border);
    border-radius: 20px;
    padding: 5px 12px;
    font-family: var(--lc-font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    cursor: pointer;
    transition: var(--lc-transition);
    white-space: normal;
    text-align: center;
    flex-shrink: 0;
}

.lc-size-guide-trigger:hover {
    border-color: var(--lc-color-accent);
    background: var(--lc-color-accent-soft);
    color: var(--lc-color-dark);
}

/* Panty Style Visual Cards with Photos */
.lc-style-selector-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.lc-style-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    background: var(--lc-color-surface);
    cursor: pointer;
    transition: var(--lc-transition);
    user-select: none;
    position: relative;
    height: auto;
    min-height: 64px;
}

.lc-style-card:hover {
    border-color: #B8B0A5;
    background: var(--lc-color-surface-subtle);
}

.lc-style-card.is-selected {
    border-color: var(--lc-color-dark);
    background: #FFFFFF;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.lc-style-card-thumb-wrap {
    width: 54px;
    height: 54px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #EDE8E1;
}

.lc-style-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lc-style-card-body {
    flex: 1;
    min-width: 0;
}

.lc-style-card-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px 10px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.lc-style-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lc-color-text-main);
    white-space: normal;
    word-break: normal;
}

.lc-style-card-badge {
    font-size: 11px;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--lc-color-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.lc-style-card.is-selected .lc-style-card-badge {
    color: var(--lc-color-accent);
    font-weight: 700;
}

.lc-style-card-desc {
    display: block;
    font-size: 11px;
    color: var(--lc-color-text-muted);
    letter-spacing: 0.01em;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
}

.lc-style-radio-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--lc-color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lc-transition);
    flex-shrink: 0;
}

.lc-style-card.is-selected .lc-style-radio-indicator {
    border-color: var(--lc-color-dark);
}

.lc-style-radio-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lc-color-dark);
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-style-card.is-selected .lc-style-radio-indicator::after {
    transform: scale(1);
}

/* Structured Size Cards Grid (XS - XL with Measurements) */
.lc-size-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
    width: 100%;
}

.lc-size-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 3px 8px;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    background: var(--lc-color-surface);
    cursor: pointer;
    transition: var(--lc-transition);
    user-select: none;
    text-align: center;
    min-height: 62px;
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

.lc-size-card:hover {
    border-color: #141312;
    background: var(--lc-color-surface-subtle);
}

.lc-size-card.is-selected {
    background: #141312 !important;
    border-color: #141312 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.lc-size-card-code {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: inherit;
}

.lc-size-card-cm {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--lc-color-text-muted);
    margin-top: 3px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
}

.lc-size-card.is-selected .lc-size-card-cm {
    color: #EDE8E1;
}

.lc-size-card-in {
    font-size: 9px;
    letter-spacing: 0.01em;
    color: var(--lc-color-text-light);
    margin-top: 2px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
}

.lc-size-card.is-selected .lc-size-card-in {
    color: #D2CBC3;
}

/* Size Helper Hint */
.lc-size-helper-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--lc-color-text-muted);
    line-height: 1.4;
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(20, 19, 18, 0.03);
    border-radius: var(--lc-radius-sm);
}

.lc-size-helper-hint svg {
    color: var(--lc-color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Focus Pulse Animation when guided CTA directs customer to choose size */
@keyframes lcFocusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 147, 90, 0.7);
        border-color: #B5935A;
    }
    50% {
        box-shadow: 0 0 0 8px rgba(181, 147, 90, 0.25);
        border-color: #B5935A;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 147, 90, 0);
        border-color: transparent;
    }
}

.lc-focus-pulse {
    animation: lcFocusPulse 1.4s ease-out;
    border-radius: 4px;
}

/* Embroidery Guidance Notice Card */
.lc-embroidery-guidance {
    padding: 12px 14px;
    background: var(--lc-color-surface-subtle);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    margin-bottom: 14px;
    font-size: 11px;
    color: var(--lc-color-text-muted);
    line-height: 1.45;
}

.lc-embroidery-guidance-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--lc-color-text-main);
    margin-bottom: 4px;
    font-size: 11.5px;
}

.lc-embroidery-guidance-item svg {
    color: var(--lc-color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.lc-embroidery-guidance-note {
    margin: 0;
    font-size: 11px;
    color: var(--lc-color-text-muted);
    line-height: 1.4;
}

/* Custom Embroidery Textareas */
.lc-editorial-scope .wapf-field-input textarea {
    width: 100% !important;
    min-height: 64px !important;
    background: var(--lc-color-surface) !important;
    border: 1px solid var(--lc-color-border) !important;
    border-radius: var(--lc-radius-sm) !important;
    padding: 10px 14px !important;
    font-family: var(--lc-font-sans) !important;
    font-size: 13px !important;
    color: var(--lc-color-text-main) !important;
    outline: none !important;
    transition: var(--lc-transition) !important;
    box-sizing: border-box !important;
    resize: vertical !important;
    line-height: 1.4 !important;
}

.lc-editorial-scope .wapf-field-input textarea:focus {
    border-color: var(--lc-color-dark) !important;
    box-shadow: 0 0 0 1px var(--lc-color-dark) !important;
    background: #FFFFFF !important;
}

/* Purchase Summary Bar */
.lc-purchase-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--lc-color-surface-subtle);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    margin-top: 16px;
    margin-bottom: 4px;
    gap: 12px;
}

.lc-summary-details {
    flex: 1;
    min-width: 0;
}

.lc-summary-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lc-color-text-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.lc-summary-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lc-color-text-main);
    white-space: normal;
    overflow-wrap: break-word;
}

.lc-summary-price-box {
    text-align: right;
    flex-shrink: 0;
}

.lc-summary-price-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lc-color-text-muted);
}

.lc-summary-price-amount {
    font-family: var(--lc-font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--lc-color-dark);
    line-height: 1.1;
}

/* Add to Bag Button & States */
.lc-commerce-form-wrap button.single_add_to_cart_button {
    width: 100% !important;
    min-height: 56px !important;
    height: auto !important;
    padding: 14px 20px !important;
    background: var(--lc-color-dark) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--lc-radius-sm) !important;
    font-family: var(--lc-font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: var(--lc-transition) !important;
    margin-top: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Button state display control */
button.single_add_to_cart_button[data-lc-state="missing-size"] {
    background: #2D2A28 !important;
    color: #EFEBE6 !important;
    border: 1px dashed rgba(226, 188, 130, 0.6) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

button.single_add_to_cart_button[data-lc-state="missing-size"]:hover {
    background: #1F1C1B !important;
    border-color: #E2BC82 !important;
    transform: translateY(-1px);
}

button.single_add_to_cart_button[data-lc-state="missing-size"] .lc-cta-ready-content {
    display: none !important;
}

button.single_add_to_cart_button[data-lc-state="missing-size"] .lc-cta-incomplete-content {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

button.single_add_to_cart_button[data-lc-state="ready"] {
    background: #111111 !important;
    color: #FFFFFF !important;
    border: 1px solid transparent !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

button.single_add_to_cart_button[data-lc-state="ready"] .lc-cta-incomplete-content {
    display: none !important;
}

button.single_add_to_cart_button[data-lc-state="ready"] .lc-cta-ready-content {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lc-commerce-form-wrap button.single_add_to_cart_button:hover {
    background: #282828 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

.lc-commerce-form-wrap button.single_add_to_cart_button:active {
    transform: translateY(1px) !important;
}

.lc-cta-icon {
    color: #E2BC82;
    font-size: 14px;
}

.lc-cta-icon {
    color: #E2BC82;
    font-size: 14px;
}

/* Micro Guarantees */
.lc-micro-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--lc-color-border);
}

.lc-micro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--lc-color-text-muted);
}

.lc-micro-item svg {
    color: var(--lc-color-accent);
    flex-shrink: 0;
}

/* --- Section Dividers & General Section Headers --- */
.lc-section {
    padding: var(--lc-space-2xl) 0;
    border-top: 1px solid var(--lc-color-border);
}

.lc-section-header {
    margin-bottom: var(--lc-space-xl);
}

.lc-section-header--center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.lc-section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.lc-section-title {
    font-family: var(--lc-font-serif);
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 400;
    color: var(--lc-color-text-main);
    line-height: 1.25;
    margin: 0;
}

/* --- Editorial Gallery & Lookbook Stream --- */
.lc-editorial-gallery {
    padding-top: var(--lc-space-xl);
    scroll-margin-top: 40px;
}

.lc-gallery-lead {
    font-family: var(--lc-font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--lc-color-text-muted);
    max-width: 680px;
    margin: 10px auto 0;
    line-height: 1.5;
    text-align: center;
}

.lc-lookbook-flow {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.lc-lookbook-block {
    position: relative;
    width: 100%;
}

.lc-editorial-figure {
    margin: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #EDE8E1;
    border-radius: var(--lc-radius-sm);
}

.lc-editorial-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-panties-gallery-item video {
    display: block;
    width: 100%;
    max-height: 760px;
    background: #141312;
}

.lc-panties-gallery-item {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.lc-editorial-figure:hover .lc-editorial-img {
    transform: scale(1.025);
}

/* 1. Large Editorial Image & Detail Image */
.lc-lookbook-block--editorial-large .lc-editorial-figure,
.lc-lookbook-block--detail-large .lc-editorial-figure {
    max-width: 960px;
    margin: 0 auto;
}

/* 2. Two-Image Row */
.lc-lookbook-block--two-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

/* 4. Secondary Video (Motion Feature) */
.lc-lookbook-block--secondary-video {
    width: 100%;
}

.lc-secondary-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
    background: #141312;
}

.lc-secondary-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-secondary-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 19, 18, 0.85) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 5;
}

.lc-sec-video-tag {
    font-family: var(--lc-font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #E2BC82;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.lc-sec-video-heading {
    font-family: var(--lc-font-serif);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    color: #FAF8F5;
    margin: 0;
}

.lc-sec-audio-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lc-sec-audio-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 5. Additional Images Grid */
.lc-lookbook-block--additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

/* Visual Role Badges on Photos */
.lc-photo-role-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 5;
    background: rgba(20, 19, 18, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FAF8F5;
    font-family: var(--lc-font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lc-role-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #E2BC82;
}

/* --- Product Story --- */
.lc-story-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lc-story-heading {
    font-family: var(--lc-font-serif);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    color: var(--lc-color-text-main);
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.lc-lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--lc-color-text-main);
    margin-bottom: 28px;
}

.lc-quote-block {
    margin: 36px 0;
    padding: 24px 32px;
    background: var(--lc-color-surface);
    border-left: 3px solid var(--lc-color-accent);
    border-radius: var(--lc-radius-sm);
    text-align: left;
}

.lc-quote-block blockquote {
    margin: 0;
    font-family: var(--lc-font-serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--lc-color-text-main);
}

.lc-story-body p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--lc-color-text-muted);
    margin-bottom: 16px;
}

/* --- Materials & Specifications --- */
.lc-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lc-spec-card {
    background: var(--lc-color-surface);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    padding: 32px 24px;
    transition: var(--lc-transition);
}

.lc-spec-card:hover {
    border-color: var(--lc-color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.lc-spec-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.lc-spec-value {
    font-size: 13px;
    line-height: 1.6;
    color: var(--lc-color-text-main);
    margin: 0;
}

/* --- Maker Block (Atelier Olga) --- */
.lc-editorial-scope .lc-maker-section {
    background: #141312 !important;
    color: #FFFFFF !important;
    border-radius: var(--lc-radius-sm);
    padding: 56px 40px !important;
    margin: 64px 0 !important;
    border: none !important;
}

.lc-maker-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--lc-space-xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.lc-maker-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--lc-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lc-maker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-maker-content {
    display: flex;
    flex-direction: column;
}

.lc-editorial-scope .lc-maker-section .lc-maker-title {
    font-family: var(--lc-font-serif);
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 400;
    color: #FFFFFF !important;
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.lc-maker-tagline {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E2BC82;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.lc-editorial-scope .lc-maker-section .lc-maker-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #D6D0C7 !important;
    margin: 0 0 24px 0;
}

.lc-maker-signature {
    font-family: var(--lc-font-serif);
    font-size: 16px;
    font-style: italic;
    color: #A89F93;
}

/* --- Delivery & Discretion Trust Cards --- */
.lc-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lc-delivery-card {
    background: var(--lc-color-surface);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    padding: 34px 28px;
    transition: var(--lc-transition);
}

.lc-delivery-card:hover {
    border-color: var(--lc-color-dark);
}

.lc-delivery-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lc-color-surface-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lc-color-accent);
    margin-bottom: 20px;
}

.lc-delivery-card-title {
    font-family: var(--lc-font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--lc-color-text-main);
    margin: 0 0 10px 0;
}

.lc-delivery-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--lc-color-text-muted);
    margin: 0;
}

/* --- FAQ Accordion --- */
.lc-faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.lc-faq-list {
    border-top: 1px solid var(--lc-color-border);
}

.lc-faq-item {
    border-bottom: 1px solid var(--lc-color-border);
}

.lc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--lc-color-text-main);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}

.lc-faq-question::-webkit-details-marker {
    display: none;
}

.lc-faq-question:hover {
    color: var(--lc-color-accent);
}

.lc-faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lc-faq-icon::before,
.lc-faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--lc-color-text-muted);
    transition: transform 0.25s ease;
}

.lc-faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.lc-faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.lc-faq-item[open] .lc-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.lc-faq-answer {
    padding: 0 0 24px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--lc-color-text-muted);
}

.lc-faq-answer p {
    margin: 0;
}

/* --- Curated Related Products --- */
.lc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lc-related-card {
    background: var(--lc-color-surface);
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--lc-transition);
}

.lc-related-card:hover {
    border-color: var(--lc-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.lc-related-thumb-link {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #EDE8E1;
}

.lc-related-thumb-wrap img,
.lc-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lc-related-card:hover .lc-related-img {
    transform: scale(1.04);
}

.lc-related-meta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.lc-related-title {
    font-family: var(--lc-font-serif);
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.lc-related-title a {
    color: var(--lc-color-text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-related-title a:hover {
    color: var(--lc-color-accent);
}

.lc-related-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--lc-color-text-muted);
    margin: 0;
}

.lc-related-btn {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 10px;
    display: inline-block;
}

/* --- Mobile Sticky Bottom CTA Bar --- */
.lc-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(232, 226, 217, 0.85);
    padding: 12px 18px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(115%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-mobile-sticky-bar.is-visible {
    transform: translateY(0);
}

.lc-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto;
}

.lc-sticky-price-wrap {
    display: flex;
    flex-direction: column;
}

.lc-sticky-price-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lc-color-text-light);
    font-weight: 600;
}

.lc-sticky-price {
    font-family: var(--lc-font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--lc-color-dark);
}

.lc-sticky-cta-btn {
    min-height: 46px;
    height: auto;
    padding: 10px 16px;
    background: #111111 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--lc-radius-sm);
    font-family: var(--lc-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: var(--lc-transition);
    box-sizing: border-box;
}

.lc-sticky-cta-btn:active {
    transform: scale(0.98);
}

.lc-sticky-cta-btn[data-lc-state="missing-size"] {
    background: #2D2A28 !important;
    color: #EFEBE6 !important;
    border: 1px dashed rgba(226, 188, 130, 0.6) !important;
}

.lc-sticky-cta-btn[data-lc-state="missing-size"] .lc-sticky-ready-text {
    display: none !important;
}

.lc-sticky-cta-btn[data-lc-state="missing-size"] .lc-sticky-incomplete-text {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lc-sticky-cta-btn[data-lc-state="ready"] {
    background: #111111 !important;
    color: #FFFFFF !important;
}

.lc-sticky-cta-btn[data-lc-state="ready"] .lc-sticky-incomplete-text {
    display: none !important;
}

.lc-sticky-cta-btn[data-lc-state="ready"] .lc-sticky-ready-text {
    display: inline !important;
}

/* Delivery date callout in peace of mind section */
.lc-delivery-date-callout {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--lc-color-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    line-height: 1.45;
    color: var(--lc-color-text-muted);
}

.lc-delivery-date-callout strong {
    color: var(--lc-color-dark);
    font-size: 11.5px;
}

/* TranslatePress floating switcher adjustment so it doesn't collide with sticky CTA */
.lc-editorial-product-page .trp-floating-switcher {
    bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 99999 !important;
}

@media (min-width: 992px) {
    .lc-mobile-sticky-bar {
        display: none !important;
    }
    .lc-editorial-product-page .trp-floating-switcher {
        bottom: 14px !important;
    }
}

/* --- Size Guide Accessible Modal --- */
.lc-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background: rgba(15, 14, 13, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-sizing: border-box;
}

.lc-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.lc-modal-open {
    overflow: hidden !important;
}

.lc-modal-dialog {
    background: #FAF8F5;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-sm);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
    padding: 32px;
    position: relative;
    box-sizing: border-box;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lc-modal-backdrop.is-open .lc-modal-dialog {
    transform: scale(1) translateY(0);
}

.lc-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lc-color-border);
}

.lc-modal-tag {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lc-color-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.lc-modal-title {
    font-family: var(--lc-font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--lc-color-dark);
    margin: 0;
    line-height: 1.2;
}

.lc-modal-close-btn {
    background: none;
    border: 1px solid var(--lc-color-border);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lc-color-text-muted);
    transition: var(--lc-transition);
    flex-shrink: 0;
}

.lc-modal-close-btn:hover {
    background: var(--lc-color-dark);
    color: #FFFFFF;
    border-color: var(--lc-color-dark);
}

.lc-guide-howto {
    margin-bottom: 20px;
}

.lc-guide-howto h4 {
    font-family: var(--lc-font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    color: var(--lc-color-text-main);
}

.lc-guide-howto p {
    font-size: 13px;
    color: var(--lc-color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.lc-guide-table-wrap {
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px solid var(--lc-color-border);
    border-radius: 2px;
    overflow: hidden;
}

.lc-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.lc-guide-table th {
    background: #F4EFEA;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    padding: 11px 16px;
    border-bottom: 1px solid var(--lc-color-border);
    color: var(--lc-color-text-main);
    font-size: 11px;
}

.lc-guide-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--lc-color-border);
    color: var(--lc-color-text-muted);
}

.lc-guide-table tr:last-child td {
    border-bottom: none;
}

.lc-guide-table td strong {
    color: var(--lc-color-text-main);
}

.lc-guide-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(181, 147, 90, 0.08);
    border-left: 3px solid var(--lc-color-accent);
    border-radius: 2px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--lc-color-text-muted);
}

.lc-guide-note svg {
    color: var(--lc-color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .lc-hero-split-grid {
        grid-template-columns: 1fr;
        gap: var(--lc-space-lg);
    }
    
    .lc-hero-col-summary {
        position: static;
        padding-left: 0;
    }
    
    .lc-maker-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lc-maker-media {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .lc-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lc-delivery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lc-editorial-site-wrapper {
        padding: var(--lc-space-md) var(--lc-space-sm) 90px;
    }
    
    .lc-lookbook-flow {
        gap: 16px;
    }
    
    .lc-lookbook-block--two-row,
    .lc-lookbook-block--additional-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .lc-secondary-video-card {
        aspect-ratio: 4 / 5;
    }
    
    .lc-size-cards-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .lc-size-card {
        padding: 8px 2px 7px;
        min-height: 52px;
    }

    .lc-size-card-code {
        font-size: 12px;
    }

    .lc-size-card-cm {
        font-size: 9px;
    }

    .lc-size-card-in {
        font-size: 8px;
    }

    .lc-modal-dialog {
        padding: 22px 18px;
    }
    
    .lc-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lc-specs-grid {
        grid-template-columns: 1fr;
    }
    .lc-spec-card {
        padding: 18px 16px;
    }
    .lc-editorial-site-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 360px) {
    .lc-sticky-inner {
        gap: 8px;
    }
    .lc-sticky-price-wrap {
        min-width: 55px;
    }
    .lc-sticky-price {
        font-size: 15px;
    }
    .lc-sticky-cta-btn {
        padding: 8px 10px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }
    .lc-size-cards-grid {
        gap: 4px;
    }
    .lc-size-card {
        padding: 6px 1px;
    }
}

/* 2026-09-25 — Variant-aware custom panties selector */
.lc-style-selector-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:0 0 9px;
}
.lc-style-card{
  appearance:none;
  -webkit-appearance:none;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:0;
  min-width:0;
  min-height:0;
  height:auto;
  padding:0;
  overflow:hidden;
  border:1px solid var(--lc-color-border);
  border-radius:0;
  background:#fff;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  box-shadow:none;
}
.lc-style-card:hover{
  background:#fff;
  border-color:#a9a199;
}
.lc-style-card.is-selected{
  background:#fff;
  border-color:#151514;
  box-shadow:inset 0 0 0 1px #151514;
}
.lc-style-card-thumb-wrap{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  border-radius:0;
  background:#ece8e2;
}
.lc-style-card-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}
.lc-style-card-body{
  display:block;
  padding:10px 10px 12px;
}
.lc-style-card-title-row{
  display:block;
  margin:0;
}
.lc-style-card-title{
  display:block;
  font-family:var(--lc-font-serif);
  font-size:16px;
  font-weight:500;
  line-height:1.08;
  letter-spacing:-.02em;
}
.lc-style-card-badge{
  display:block;
  margin-top:5px;
  color:#817a73;
  font-size:9px;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lc-style-card-desc{
  display:block;
  margin-top:7px;
  color:var(--lc-color-text-muted);
  font-size:10px;
  line-height:1.35;
}
.lc-style-radio-indicator{
  position:absolute;
  top:9px;
  right:9px;
  width:18px;
  height:18px;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(5px);
}
.lc-style-card.is-selected .lc-style-radio-indicator{
  border-color:#151514;
  background:#151514;
}
.lc-style-card.is-selected .lc-style-radio-indicator::after{
  width:6px;
  height:6px;
  background:#fff;
}
.lc-style-photo-note{
  margin:0 0 16px;
  color:#837c75;
  font-size:10px;
  line-height:1.45;
}
.lc-selected-style-preview{
  display:none;
}
.lc-style-image-changing{
  opacity:.22!important;
  transition:opacity .12s ease!important;
}
.lc-media-frame img,
.lc-custom-style-gallery-item img{
  transition:opacity .16s ease,transform .6s cubic-bezier(.2,.8,.2,1);
}

/* Style-specific lookbook */
.lc-custom-style-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.lc-custom-style-gallery-item{
  margin:0;
  background:#ece8e2;
}
.lc-custom-style-gallery-item img{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.lc-custom-style-gallery-item figcaption{
  padding:10px 2px 0;
  color:#807970;
  font-size:9px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.lc-custom-style-gallery .lc-gallery-lead strong{
  color:#2d2926;
  font-weight:600;
}

@media(max-width:768px){
  .lc-style-selector-cards{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
  }
  .lc-style-card-thumb-wrap{aspect-ratio:3/4}
  .lc-style-card-body{padding:8px 6px 9px}
  .lc-style-card-title{font-size:11px;line-height:1.1}
  .lc-style-card-badge{font-size:8px}
  .lc-style-card-desc{display:none}
  .lc-style-radio-indicator{
    top:6px;
    right:6px;
    width:15px;
    height:15px;
  }
  .lc-style-photo-note{
    margin-top:2px;
    margin-bottom:12px;
    font-size:9px;
  }
  .lc-selected-style-preview{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:10px;
    margin:0 0 20px;
    padding:0 0 14px;
    border-bottom:1px solid var(--lc-color-border);
  }
  .lc-selected-style-preview__media{
    width:100%;
    aspect-ratio:4/5;
    overflow:hidden;
    background:#ece8e2;
  }
  .lc-selected-style-preview__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .lc-selected-style-preview__copy{
    display:flex;
    flex-direction:column;
    gap:3px;
  }
  .lc-selected-style-preview__eyebrow{
    color:#8a837c;
    font-size:8px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
  }
  .lc-selected-style-preview__copy strong{
    font-family:var(--lc-font-serif);
    font-size:21px;
    font-weight:500;
    line-height:1.1;
  }
  .lc-selected-style-preview__copy>span:last-child{
    color:var(--lc-color-text-muted);
    font-size:11px;
    line-height:1.4;
  }
  .lc-custom-style-gallery-grid{
    grid-template-columns:1fr 1fr;
    gap:7px;
  }
  .lc-custom-style-gallery-item figcaption{
    padding-top:7px;
    font-size:8px;
  }
}

@media(max-width:390px){
  .lc-style-card-title{font-size:10px}
  .lc-style-card-body{padding-left:5px;padding-right:5px}
}
