/** Shopify CDN: Minification failed

Line 271:16 Expected identifier but found whitespace
Line 271:17 Unexpected "1000px"
Line 513:4 Unexpected "5%"
Line 514:4 Unexpected "95%"
Line 515:0 Unexpected "}"
Line 517:0 Unexpected "}"
Line 520:4 Unexpected "0%"
Line 521:4 Unexpected "50%"
Line 522:4 Unexpected "85%"
Line 523:4 Unexpected "100%"
... and 1 more hidden warnings

**/
/* ==========================================================================
   UPDATED HERO & NEW SECTIONS (PHASE 3 & 4)
   ========================================================================== */

/* Hero Floating Logo */
.hero__graphic {
    position: relative;
    right: 5%;


    width: 45%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Let clicks pass through */
    z-index: 2;
    perspective: 1000px;
}

@media (max-width: 1024px) {
    .hero__graphic {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
    
        margin-top: var(--space-8);
        padding: var(--space-8) 0;
    }
}

.hero-floating-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Intro Section */
.intro-section {
    padding: var(--space-24) 0;
    text-align: center;
    background-color: var(--color-base-white);
}

.intro-text {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
    color: var(--color-ink);
}

/* Personalization Section */
.personalization-section {
    padding: var(--space-24) 0;
    background-color: var(--color-ink);
    color: var(--color-base-white);
    overflow: hidden;
}

.personalization-content h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: var(--space-4);
    line-height: 1;
}

.personalization-content p {
    font-size: 1.5rem;
    color: #A0A0A0;
    max-width: 500px;
}

.personalization-visual {
    position: relative;

    right: -10%;

    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.15) 0%, rgba(255, 0, 128, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.personalization-section {
    position: relative; /* Need this for absolute positioning of visual */
}

.personalization-content {
    position: relative;
    z-index: 2;
}

@keyframes pulseGlow {
    0% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    100% { transform: translateY(-50%) scale(1.2); opacity: 1; }
}

/* Featured Products */
.featured-products {
    padding: var(--space-16) 0;
    background-color: var(--color-base-white);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--space-8);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.product-card__image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--color-surface-light);
}

.product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card__image-wrap:hover img {
    transform: scale(1.05);
}

.product-card__title {
    font-size: 1.25rem;
    font-family: var(--font-body);
}

.product-card__price {
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.product-card__add {
    width: 100%;
}

/* Final CTA */
.final-cta {
    padding: var(--space-32) 0;
    text-align: center;
    background-color: var(--color-surface-light);
}

.final-cta h2 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
}

.final-cta__action {
    margin-top: var(--space-8);
}

/* Footer */
.site-footer {
    background-color: #030303;
    color: #888;
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.site-footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer p {
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.site-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #00c2ff;
}

/* ==========================================================================
   DIGITAL TO REAL SCANNER ANIMATION
   ========================================================================== */

.personalization-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}
.personalization-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}


@media (max-width: 1024px) {
    .personalization-section .container {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Push to the right */
    perspective: 1000px; /* 3D space */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

/* The physical phone lying flat */
.phone-body {
    position: relative;
    bottom: 20px;
    width: 160px;
    height: 280px;
    background: #111;
    border-radius: 25px;
    border: 3px solid #333;
    box-shadow: 
        inset 0 0 10px rgba(255,255,255,0.1),
        0 15px 30px rgba(0,0,0,0.8),
        0 0 15px rgba(0, 194, 255, 0.4);
    transform: rotateX(65deg) rotateZ(-25deg); /* Lay flat and angled */
    transform-style: preserve-3d;
}

.phone-screen {
    position: relative;
    inset: 10px;
    background: rgba(0, 194, 255, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 255, 0.5);
    overflow: hidden;
    animation: screenFlicker 3s infinite alternate;
}

.phone-screen::after {
    content: '';
    position: relative;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255,0,128,0.8), transparent);
    animation: scanlineUp 4s infinite linear;
}

/* The object floating UP out of the screen */
.hologram-object {
    position: relative;
    bottom: 80px;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 194, 255, 0.8);
    border: 2px solid rgba(0, 194, 255, 0.5);
    transform: translateY(0);
    animation: floatUp 4s infinite ease-in-out alternate;
    z-index: 3;
}

.hologram-object img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Make the object look physical but slightly glowing */
    filter: contrast(1.2) drop-shadow(0 0 10px rgba(0,194,255,0.5));
}

/* Hologram light rays connecting phone to object */
.hologram-rays {
    position: relative;
    bottom: 50px;
    width: 100px;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 194, 255, 0.6) 0%, rgba(255, 0, 128, 0.1) 100%);
    clip-path: polygon(20% 100%, 80% 100%, 100% 0, 0 0);
    opacity: 0.5;
    animation: pulseRays 4s infinite ease-in-out alternate;
    z-index: 2;
    transform: rotateX(10deg);
}

@keyframes screenFlicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes scanlineUp {
    0% { bottom: -100%; }
    100% { bottom: 100%; }
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0, 194, 255, 1); }
}

@keyframes pulseRays {
    0% { height: 120px; opacity: 0.3; }
    100% { height: 160px; opacity: 0.7; }
}

@media (max-width: 768px) {
    .phone-hologram-container {
        margin: 0 auto;
        margin-top: var(--space-8);
        transform: scale(0.8);
    }
}

/* ==========================================================================
   CHAT TO REAL ANIMATION
   ========================================================================== */
.chat-to-real-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Phone left, object right */
    padding-left: var(--space-8); /* Space from text */
    position: relative;
    z-index: 5;
}

/* --- CSS iPhone Mockup --- */
.mockup-phone {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #222; /* Phone Bezel */
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.1),
        0 30px 60px rgba(0,0,0,0.8),
        0 0 0 1px #444, /* Metallic rim */
        -10px 10px 30px rgba(0, 194, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: relative;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

/* --- Chat UI --- */
.chat-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0b141a; /* WhatsApp Dark Mode Background */
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 10px 10px;
}

.chat-header {
    background: #202c33;
    padding: 35px 15px 15px 15px; /* Extra top padding for notch */
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.chat-header .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.chat-header .chat-title {
    color: #e9edef;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.chat-body {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: hidden;
    position: relative;
    /* Auto scroll animation */
    
}

.chat-bubble {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    line-height: 1.3;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 85%;
    position: relative;
    opacity: 0; /* Hidden initially */
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.chat-bubble--client {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.chat-bubble--copycenter {
    background: #005c4b; /* WhatsApp dark green */
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.fade-in-up {
    
}

/* Animations */
@keyframes fadeInUpMsg {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
    5%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(0); }
}
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes autoScrollChat {
    0%, 30% { transform: translateY(0); }
    50%, 70% { transform: translateY(-80px); }
    85%, 95% { transform: translateY(-160px); }
    100% { transform: translateY(0); }
}

/* --- Real Object Reveal --- */
.real-object-reveal.hologram-pop {
    opacity: 0; /* Hides until GSAP kicks in */
    transform: scale(0.5); /* Prevents layout jumps */
    position: relative;
    width: 350px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; 
    
}

.real-object-reveal.hologram-pop .object-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Drop shadow to make it float in front of the phone */
    filter: drop-shadow(-20px 30px 40px rgba(0,0,0,0.9)); 
}


@media (max-width: 1024px) {
    .chat-to-real-container {
        flex-direction: column;
        margin-top: var(--space-8);
        align-items: center;
    }
    .real-object-reveal {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: -100px; /* Overlap slightly with phone */
    }
}
    .real-object-reveal {
        width: 100%;
        max-width: 280px;
    }
}

/* LoriOrl Signature */
.site-footer a.signature-link {
    background: linear-gradient(90deg, #666, #fff, #666, #fff, #666);
    background-size: 400% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    animation: shine 4s linear infinite;
}

.site-footer a.signature-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}
