/* ===== V4 LANDING PAGE & TRANSITION STYLES ===== */
/* Wrapper - Handled by section container in WP */
#landing-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #050505;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    z-index: 1000;
}

/* Aggressively Hide Standard Theme Elements when Landing is Active */
/* Aggressively Hide Standard Theme Elements when Landing is Active */
body.landing-mode #masthead,
body.landing-mode #colophon,
body.landing-mode .announcement-bar,
body.landing-mode .announcement-marquee,
body.landing-mode .main-header,
body.landing-mode .header-top-bar,
body.landing-mode .top-bar,
body.landing-mode .site-header,
body.landing-mode .woocommerce-store-notice,
body.landing-mode header.site-header,
body.landing-mode nav.site-navigation,
body.landing-mode .header-wrapper,
body.landing-mode .wp-block-group.has-background {
    /* Often used for banners */
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Also hide the landing page custom header */
body.landing-mode .lp-header,
.lp-header {
    display: none !important;
}

/* Custom header visibility removed */

/* Backgrounds & Visuals */
.lp-bg-layer {
    position: absolute;
    inset: -50px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(200, 169, 126, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 90, 43, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #080604 0%, #000000 100%);
    z-index: 0;
}

.lp-grain-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}

.lp-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.lp-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
}

/* Header */
.lp-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    z-index: 100;
}

.lp-brand {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lp-header-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lp-icon-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.lp-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.lp-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--color-gold, #C8A97E);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TOP Marquee */
.lp-marquee-top {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(45%, 450px);
    max-width: calc(100% - 300px);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.12) 0%, rgba(200, 169, 126, 0.06) 100%);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 50px;
    padding: 0.35rem 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: lp-scroll 12s linear infinite;
}

.lp-marquee-item {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(200, 169, 126, 0.9);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 1rem;
}

@keyframes lp-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Center Stage */
.lp-center-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 100px 2rem 1.5rem;
}

/* Content Box */
.lp-content-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    max-width: 950px;
    width: 100%;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Visual Section */
.lp-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
    min-height: 350px;
}

.lp-product-float {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Fade-in-up animation on load */
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Entry button area helper text */
.lp-entry-hint {
    font-size: 0.7rem;
    color: rgba(200, 169, 126, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    text-align: center;
}

.lp-product-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-product-container.fade-out {
    opacity: 0;
    transform: scale(0.8) rotateY(20deg) translateX(-100px);
}

.lp-product-container.active {
    opacity: 1;
    transform: scale(1) rotateY(0) translateX(0);
}

.lp-product-img {
    width: 340px;
    height: 420px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.lp-product-img:hover {
    transform: scale(1.12);
}

.lp-product-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    pointer-events: none;
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Controls Panel */
.lp-controls {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Switcher Tabs */
.lp-switcher {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.75rem;
    position: relative;
    align-items: center;
}

.lp-tab {
    position: relative;
    background: none;
    border: none;
    color: #555;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lp-tab:hover {
    color: #888;
}

.lp-tab.active {
    color: var(--color-gold, #C8A97E);
}

.lp-tab-indicator {
    position: absolute;
    bottom: -0.75rem;
    height: 2px;
    background: var(--color-gold, #C8A97E);
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
    width: 0;
}

/* Details */
.lp-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.lp-title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #bbb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-subtitle {
    font-size: 1rem;
    color: var(--color-gold, #C8A97E);
    margin: 0;
    letter-spacing: 0.03em;
}

.lp-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Config & Subscribe */
.lp-config {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.lp-config-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    min-width: 45px;
}

.lp-pills {
    display: flex;
    gap: 0.35rem;
}

.lp-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lp-pill:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-pill.selected {
    background: var(--color-gold, #C8A97E);
    border-color: var(--color-gold, #C8A97E);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.25);
}

.lp-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(200, 169, 126, 0.04);
    border: 1px solid rgba(200, 169, 126, 0.12);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.lp-subscribe.active {
    border-color: #C8A97E;
    background: rgba(200, 169, 126, 0.12);
}

.lp-sub-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.lp-sub-desc {
    font-size: 0.65rem;
    color: #666;
}

.lp-toggle {
    width: 38px;
    height: 20px;
    background: #333;
    border-radius: 20px;
    position: relative;
    transition: background 0.3s;
}

.lp-toggle-knob {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

/* Price Display with Strike-through support */
.lp-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lp-currency {
    font-size: 0.9rem;
    color: var(--color-gold, #C8A97E);
    margin-right: 0;
}

.lp-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.lp-amount.strikethrough {
    text-decoration: line-through;
    color: #777;
    font-size: 1.2rem;
}

.lp-amount.highlight {
    color: var(--color-gold, #C8A97E);
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
}

.lp-cta {
    flex: 1;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border: none;
    color: #000;
    padding: 0.8rem 1.25rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lp-cta:hover {
    background: linear-gradient(135deg, var(--color-gold, #C8A97E) 0%, #b8956e 100%);
}

/* Enter Full Experience Button - Premium Animated Version */
.lp-entry {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    margin-top: 1rem;
}

.lp-enter-btn {
    position: relative;
    background: linear-gradient(135deg, var(--color-gold, #C8A97E) 0%, #b8956e 100%);
    border: none;
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 4px 20px rgba(200, 169, 126, 0.4),
        0 0 40px rgba(200, 169, 126, 0.2);
    overflow: hidden;
    animation: btn-pulse 2.5s ease-in-out infinite, btn-float 3s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(200, 169, 126, 0.4),
            0 0 40px rgba(200, 169, 126, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(200, 169, 126, 0.6),
            0 0 60px rgba(200, 169, 126, 0.4),
            0 0 80px rgba(200, 169, 126, 0.2);
    }
}

@keyframes btn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.lp-enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.lp-enter-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.8), transparent, rgba(200, 169, 126, 0.5));
    z-index: -1;
    opacity: 0.5;
    animation: ring-glow 2s ease-in-out infinite alternate;
}

@keyframes ring-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.02); }
}

.lp-enter-btn:hover {
    background: linear-gradient(135deg, #e0c4a0 0%, #C8A97E 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(200, 169, 126, 0.6), 0 0 80px rgba(200, 169, 126, 0.4);
    animation: none;
}

.lp-enter-btn:hover::before {
    animation: shimmer 1.5s infinite;
}

.lp-enter-btn .arrow {
    width: 18px;
    height: 18px;
    animation: arrow-bounce 1.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.lp-enter-btn:hover .arrow {
    animation: arrow-bounce 0.8s ease-in-out infinite;
}\n\n/* Transition  */
#transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#transition-overlay.hidden {
    display: none;
}

#transition-beans img {
    mix-blend-mode: multiply;
    filter: brightness(1.2) contrast(1.1);
}

/* Transition Background */
.transition-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #0a0805 0%, #000 100%);
    z-index: 0;
}

/* Floating Coffee Beans Container */
.lp-coffee-beans {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

/* CSS-Only Coffee Bean (no white background) */
.css-coffee-bean {
    position: absolute;
    background: linear-gradient(135deg, #8B5A2B 0%, #5D3A1A 50%, #3D2512 100%);
    border-radius: 50% / 60%;
    box-shadow:
        inset -3px -3px 8px rgba(0, 0, 0, 0.4),
        inset 2px 2px 6px rgba(139, 90, 43, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Bean center line */
.css-coffee-bean::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 45%;
    width: 10%;
    height: 70%;
    background: linear-gradient(180deg, #3D2512 0%, #2A1A0D 50%, #3D2512 100%);
    border-radius: 50%;
}

/* Steam Effect */
.lp-steam {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(200, 169, 126, 0.1) 0%, transparent 70%);
    animation: steamFloat 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes steamFloat {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-30px);
    }
}

/* Rotating Rings */
.lp-transition-ring {
    position: relative;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(200, 169, 126, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 8s linear infinite;
    z-index: 10;
}

.lp-transition-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(200, 169, 126, 0.15);
    border-radius: 50%;
    animation: ringRotate 12s linear infinite reverse;
}

.lp-transition-ring::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(200, 169, 126, 0.2);
    border-radius: 50%;
    animation: ringRotate 6s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lp-transition-ring-inner {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-transition-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold, #C8A97E);
    text-shadow: 0 0 30px rgba(200, 169, 126, 0.5);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Text Reveal */
.lp-transition-text {
    position: absolute;
    bottom: 25%;
    text-align: center;
    z-index: 10;
}

.lp-transition-title {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.lp-transition-title.reveal {
    opacity: 1;
    transform: translateY(0);
}

.lp-transition-subtitle {
    font-size: 0.85rem;
    color: var(--color-gold, #C8A97E);
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.lp-transition-subtitle.reveal {
    opacity: 0.8;
    transform: translateY(0);
}

/* Loading Bar */
.lp-loading-bar {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    z-index: 10;
}

.lp-loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold, #C8A97E) 0%, #fff 100%);
    border-radius: 3px;
    transition: width 5.5s linear;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    /* Show marquee on mobile */
    .lp-marquee-top {
        display: flex !important;
        width: 100% !important;
        max-width: 90% !important;
        border-radius: 25px !important;
        top: 20px !important;
    }

    /* Mobile Optimization: Allow Natural Scroll + Sticky Button */
    .lp-wrapper {
        height: auto !important;
        /* Allow growing */
        min-height: 100vh;
        overflow-y: auto !important;
        /* Enable body scroll */
        position: relative;
    }

    .lp-center-stage {
        padding: 40px 1.5rem 100px;
        /* Big bottom padding for sticky button space */
        display: block;
        /* Remove flex constraint issues */
        height: auto;
        overflow: visible;
    }

    .lp-content-box {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .lp-visual {
        min-height: 220px;
        margin-bottom: 0.5rem;
    }

    .lp-product-img {
        width: 220px;
        height: 280px;
    }

    /* Larger text on mobile for readability */
    .lp-title {
        font-size: 1.6rem !important;
    }
    .lp-subtitle {
        font-size: 0.95rem !important;
    }
    .lp-desc {
        font-size: 0.9rem !important;
    };
    }

    .lp-controls {
        padding: 1rem;
    }

    /* Entry Button on Mobile - Normal Flow (NOT Sticky) */
    .lp-entry {
        position: relative;
        width: 100%;
        padding: 1.5rem 1rem;
        margin: 2rem 0 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lp-enter-btn {
        width: 90%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    }

    .lp-config-row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .lp-label {
        min-width: 40px;
    }

    /* Bigger Pill Touch Targets */
    .lp-pill {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Hide Floating Journal/Chat on Mobile Landing */
    .lp-floating-btn,
    #chat-widget-container,
    .chat-widget,
    iframe[id*="chat"],
    a[href*="/journal"].btn-floating,
    /* Generic guess based on partial grep */
    .floating-journal-btn,
    /* Another guess */
    #journal-float {
        /* Another guess */
        display: none !important;
    }
}

/* Aggressive Banner Removal helper - ONLY on landing page */
body.landing-mode .announcement-bar,
body.landing-mode .woocommerce-store-notice,
body.landing-mode .demo_store,
body.landing-mode #top-bar,
body.landing-mode .marquee-track-nav,
body.landing-mode .top-bar {
    display: none !important;
}

/* Hide Specific Footer Floating Elements if they have these IDs (from footer.php check) */
body.landing-mode #journal-btn-float,
body.landing-mode .journal-trigger,
body.landing-mode #blog-btn,
body.landing-mode #chatbot-fab,
body.landing-mode #chatbot-helper,
body.landing-mode #chatbot-window {
    display: none !important;
}

/* Mobile Landing Page Scroll Fix */
@media screen and (max-width: 768px) {
	    .lp-wrapper,
	#landing-wrapper {
		        height: 100vh !important;
		        height: 100dvh !important; /* Dynamic viewport height for mobile browsers */
		        overflow-y: auto !important;
		        -webkit-overflow-scrolling: touch;
	}
	    
	    /* Ensure the enter button area is always visible */
	.lp-entry {
		        padding-bottom: 80px !important;
		        margin-bottom: 20px !important;
	}
}

	}
	}
}

/* ===================================================
   LARGER PRODUCT IMAGES WITH CONSISTENT ASPECT RATIO
   =================================================== */

/* Override product image to be larger with exact aspect ratio */
.lp-product-img {
    width: 400px !important;
    height: 520px !important;
    object-fit: contain !important;
    aspect-ratio: 400 / 520 !important;
}

/* Mobile - larger with consistent ratio (10/13) */
@media screen and (max-width: 768px) {
    .lp-product-img {
        width: 300px !important;
        height: 390px !important;
        aspect-ratio: 300 / 390 !important;
    }
    
    .lp-visual {
        min-height: 400px !important;
        position: relative;
    }
}

/* Ensure site header elements stay hidden in landing mode */
.landing-mode .site-header,
.landing-mode .announcement-bar,
.landing-mode #masthead,
.landing-mode .top-bar {
    display: none !important;
}

/* ===================================================
   PRODUCT NAVIGATION ARROWS - LUXURY FLOATING DESIGN
   =================================================== */

.lp-nav-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    width: 50px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 100 !important;
    overflow: visible !important;
}

/* Sleek vertical line accent */
.lp-nav-arrow::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(200, 169, 126, 0.6) 20%,
        rgba(200, 169, 126, 1) 50%,
        rgba(200, 169, 126, 0.6) 80%,
        transparent 100%);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: lineBreath 3s ease-in-out infinite;
}

.lp-nav-prev::before { left: 0; }
.lp-nav-next::before { right: 0; }

@keyframes lineBreath {
    0%, 100% { 
        height: 50px; 
        opacity: 0.6;
        filter: blur(0px);
    }
    50% { 
        height: 70px; 
        opacity: 1;
        filter: blur(0.5px);
    }
}

/* Arrow icon styling */
.lp-nav-arrow svg {
    width: 24px !important;
    height: 24px !important;
    stroke: rgba(255, 255, 255, 0.7) !important;
    stroke-width: 1.5 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(200, 169, 126, 0.3));
}

/* Hover - dramatic transformation */
.lp-nav-arrow:hover::before {
    height: 100px;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(200, 169, 126, 0.8) 10%,
        rgba(255, 215, 150, 1) 50%,
        rgba(200, 169, 126, 0.8) 90%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.6),
                0 0 40px rgba(200, 169, 126, 0.3);
    animation: none;
}

.lp-nav-arrow:hover svg {
    stroke: rgba(200, 169, 126, 1) !important;
    filter: drop-shadow(0 0 12px rgba(200, 169, 126, 0.8));
}

.lp-nav-prev:hover svg {
    transform: translateX(-4px);
}

.lp-nav-next:hover svg {
    transform: translateX(4px);
}

/* Positioning */
.lp-nav-prev {
    left: 20px !important;
}

.lp-nav-next {
    right: 20px !important;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .lp-nav-arrow {
        width: 40px !important;
        height: 60px !important;
    }
    
    .lp-nav-arrow::before {
        height: 40px;
    }
    
    .lp-nav-arrow svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .lp-nav-prev {
        left: 10px !important;
    }
    
    .lp-nav-next {
        right: 10px !important;
    }
    
    @keyframes lineBreath {
        0%, 100% { height: 35px; opacity: 0.6; }
        50% { height: 50px; opacity: 1; }
    }
}


