/**
 * Landing Page - Public Styles (Automan Theme Compatible)
 * Styles match Automan's dark.css and light.css themes
 */

/* ========== Variables - Automan Theme ========== */
:root {
    --lp-radius: 8px;
    --lp-radius-sm: 6px;
    --lp-shadow: 0 4px 20px rgba(0,0,0,0.15);
    --lp-shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --lp-transition: all 0.3s ease;
}

/* Dark Theme (default - matching Automan dark.css) */
.lp-theme-dark {
    --lp-bg: #222222;
    --lp-bg-secondary: #2d2d2d;
    --lp-bg-card: #2a2a2a;
    --lp-bg-card-hover: #333333;
    --lp-text: #ffffff;
    --lp-text-secondary: #cccccc;
    --lp-text-muted: #999999;
    --lp-border: rgba(255,255,255,0.1);
    --lp-overlay: rgba(0,0,0,0.7);
    --lp-accent: #0ce3ac;
    --lp-primary: #0ce3ac;
    --lp-secondary: #00b894;
    --lp-font: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Explicitly force white text for Dark Theme Main Elements to prevent inheritance blocking */
.lp-theme-dark .lp-body,
.lp-theme-dark .lp-container,
.lp-theme-dark h1, .lp-theme-dark h2, .lp-theme-dark h3, 
.lp-theme-dark h4, .lp-theme-dark h5, .lp-theme-dark h6,
.lp-theme-dark p, .lp-theme-dark span, .lp-theme-dark li, 
.lp-theme-dark label, 
.lp-theme-dark a:not(.lp-btn), 
.lp-theme-dark .lp-heading, 
.lp-theme-dark .lp-subheading,
.lp-theme-dark .lp-hero-title, 
.lp-theme-dark .lp-hero-subtitle,
.lp-theme-dark .lp-menu-link {
    color: #ffffff !important;
}

/* Ensure muted text is slightly transparent but still white-based */
.lp-theme-dark .lp-text-muted,
.lp-theme-dark .lp-subheading {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Ensure links hover brightness */
.lp-theme-dark a:not(.lp-btn):hover {
    color: var(--lp-primary) !important;
}

/* Light Theme (matching Automan light.css) */
.lp-theme-light {
    --lp-bg: #ffffff;
    --lp-bg-secondary: #f5f5f5;
    --lp-bg-card: #ffffff;
    --lp-bg-card-hover: #f9f9f9;
    --lp-text: #333333;
    --lp-text-secondary: #555555;
    --lp-text-muted: #888888;
    --lp-border: rgba(0,0,0,0.1);
    --lp-overlay: rgba(0,0,0,0.5);
    --lp-accent: #00a67e;
    --lp-primary: #00a67e;
    --lp-secondary: #009973;
    --lp-font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ========== Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lp-body {
    font-family: var(--lp-font);
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-size: 14px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Force inheritance for text elements to override Admin/Bootstrap styles */
.lp-body h1, .lp-body h2, .lp-body h3, 
.lp-body h4, .lp-body h5, .lp-body h6,
.lp-body p, .lp-body span, .lp-body li,
.lp-body label {
    color: inherit;
}

/* ========== Container ========== */
.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Block Base ========== */
.lp-block {
    position: relative;
}

/* ========== Layout System ========== */
/* Full width blocks - container goes edge-to-edge (width only) */
/* Note: Side padding is still applied via JavaScript */
.lp-block.lp-full-width .lp-container {
    max-width: 100% !important;
}

/* Container width modifiers via data attribute */
.lp-block[data-container-width="1000px"] .lp-container { max-width: 1000px; }
.lp-block[data-container-width="1200px"] .lp-container { max-width: 1200px; }
.lp-block[data-container-width="1400px"] .lp-container { max-width: 1400px; }
.lp-block[data-container-width="1600px"] .lp-container { max-width: 1600px; }
.lp-block[data-container-width="100%"] .lp-container { max-width: 100%; }

/* Note: Block padding is now controlled by inline styles from block settings */
/* Default padding fallback (if no inline style) */
.lp-block:not([style*="padding"]) {
    padding: 80px 0;
}

@media (max-width: 768px) {
    /* Reduce padding on mobile if using defaults */
    .lp-block:not([style*="padding"]) {
        padding: 50px 0;
    }
}

/* ========== Typography ========== */
.lp-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: inherit;
}

.lp-heading-accent {
    color: var(--lp-accent);
}

.lp-subheading {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .lp-heading {
        font-size: 1.75rem;
    }
    
    .lp-subheading {
        font-size: 1rem;
    }
}

/* ========== Buttons ========== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--lp-radius);
    transition: var(--lp-transition);
    cursor: pointer;
    border: none;
}

.lp-btn-primary {
    background-color: var(--lp-primary);
    color: #ffffff;
}

.lp-btn-primary:hover {
    background-color: var(--lp-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 227, 172, 0.3);
}

.lp-btn-outline {
    background: transparent;
    border: 2px solid var(--lp-primary);
    color: var(--lp-primary);
}

.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: #ffffff;
}

/* ========== HERO Block ========== */
.lp-hero {
    min-height: auto; /* Let content or parent determine height */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: inherit; /* Inherit from section for block-level styling */
}

/* Default hero height when not following menu */
.lp-block-hero .lp-hero {
    min-height: 80vh;
}

/* Hero following Menu - both should fit in one viewport (menu 66px + hero fills rest) */
.lp-block-menu + .lp-block-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: calc(100vh - 66px) !important;
    max-height: calc(100vh - 66px) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
.lp-block-menu + .lp-block-hero .lp-hero {
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
.lp-block-menu + .lp-block-hero .lp-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.lp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lp-overlay);
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.lp-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: inherit; /* Inherit from parent to respect block text_color setting */
}

.lp-hero-subtitle {
    font-size: 1.25rem;
    color: inherit; /* Inherit from parent to respect block text_color setting */
    opacity: 0.85; /* Slightly muted but still using inherited color */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .lp-hero {
        min-height: 70vh;
        padding: 80px 0;
    }
    
    .lp-hero-title {
        font-size: 2rem;
    }
    
    .lp-hero-subtitle {
        font-size: 1rem;
    }
}

/* Light Theme Hero - Only apply glassmorphism when NOT on dark background */
.lp-theme-light .lp-block-hero:not([data-dark-bg="true"]) .lp-hero-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin: 0 auto;
}

.lp-theme-light .lp-block-hero:not([data-dark-bg="true"]) .lp-hero-title {
    color: #0f172a;
}
.lp-theme-light .lp-block-hero:not([data-dark-bg="true"]) .lp-hero-subtitle {
    color: #334155;
}

/* Dark background hero - ensure white text (no overrides) */
[data-dark-bg="true"] .lp-hero-title,
[data-dark-bg="true"] .lp-hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========== ABOUT Block ========== */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lp-about-grid.image-right {
    direction: rtl;
}

.lp-about-grid.image-right > * {
    direction: ltr;
}

.lp-about-image {
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
}

.lp-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: inherit;
}

.lp-about-content p {
    color: inherit;
    opacity: 0.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.lp-about-subtitle {
    font-size: 0.9rem;
    color: var(--lp-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lp-about-content .lp-btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .lp-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lp-about-grid.image-right {
        direction: ltr;
    }
}

/* ========== SERVICES Block ========== */
.lp-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.lp-service-card {
    flex: 0 1 300px;
    max-width: 360px;
    background: var(--lp-bg-card);
    padding: 32px 24px;
    border-radius: var(--lp-radius);
    text-align: center;
    transition: var(--lp-transition);
    border: 1px solid var(--lp-border);
}

.lp-service-card:hover {
    transform: translateY(-8px);
    background: var(--lp-bg-card-hover);
    box-shadow: var(--lp-shadow);
    border-color: var(--lp-accent);
}

.lp-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.lp-service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.lp-service-card p {
    color: inherit;
    opacity: 0.85;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== TESTIMONIAL Block ========== */
.lp-testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.lp-testimonial-card {
    flex: 0 1 320px;
    max-width: 400px;
    background: var(--lp-bg-card);
    padding: 28px;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    position: relative;
}

.lp-testimonial-card::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--lp-accent);
    opacity: 0.4;
    position: absolute;
    top: 8px;
    left: 16px;
    font-family: Georgia, serif;
    line-height: 1;
}

.lp-testimonial-content {
    margin-bottom: 1.25rem;
    font-style: italic;
    color: var(--lp-text-secondary);
    position: relative;
    z-index: 1;
    padding-top: 16px;
    line-height: 1.7;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
}

.lp-testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--lp-text);
}

.lp-testimonial-info span {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

.lp-testimonial-rating {
    color: #ffc107;
    margin-top: 8px;
    font-size: 0.9rem;
}

/* ========== STATS Block ========== */
.lp-stats {
    background-color: var(--lp-bg-secondary);
}

.lp-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.lp-stat-item {
    flex: 0 1 180px;
    padding: 24px;
}

.lp-stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-stat-label {
    font-size: 1rem;
    color: var(--lp-text-secondary);
}

/* ========== CTA Block ========== */
.lp-cta {
    /* Background is controlled by block settings (bg_gradient/bg_color) */
    text-align: center;
    color: #ffffff;
}

.lp-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lp-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.lp-cta .lp-btn {
    font-size: 1.125rem;
    padding: 16px 32px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.lp-cta .lp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ========== CONTACT Block ========== */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.lp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-contact-icon {
    width: 44px;
    height: 44px;
    background: var(--lp-bg-card);
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid var(--lp-border);
}

.lp-contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--lp-text);
}

.lp-contact-item p,
.lp-contact-item a {
    color: var(--lp-text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
}

.lp-contact-item a:hover {
    color: var(--lp-accent);
}

.lp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-form-group label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--lp-text);
}

.lp-input,
.lp-textarea {
    padding: 12px 14px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-bg-card);
    color: var(--lp-text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--lp-transition);
}

.lp-input:focus,
.lp-textarea:focus {
    outline: none;
    border-color: var(--lp-accent);
}

.lp-textarea {
    min-height: 100px;
    resize: vertical;
}

@media (max-width: 768px) {
    .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========== FAQ Block ========== */
.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
}

.lp-faq-question {
    padding: 16px 20px;
    background: var(--lp-bg-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: var(--lp-transition);
    color: var(--lp-text);
}

.lp-faq-question:hover {
    background: var(--lp-bg-card-hover);
}

.lp-faq-icon {
    font-size: 1.125rem;
    transition: var(--lp-transition);
    color: var(--lp-accent);
}

.lp-faq-item.active .lp-faq-icon {
    transform: rotate(45deg);
}

.lp-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--lp-text-secondary);
    line-height: 1.7;
}

.lp-faq-item.active .lp-faq-answer {
    padding: 16px 20px;
    max-height: 500px;
}

/* ========== PRICING Block ========== */
.lp-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: flex-start;
}

.lp-pricing-card {
    flex: 0 1 300px;
    max-width: 350px;
    background: var(--lp-bg-card);
    padding: 32px 24px;
    border-radius: var(--lp-radius);
    text-align: center;
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
}

.lp-pricing-card.popular {
    border-color: var(--lp-accent);
    transform: scale(1.02);
    box-shadow: var(--lp-shadow);
}

.lp-pricing-badge {
    background: var(--lp-accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.lp-pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--lp-text);
}

.lp-pricing-price {
    margin: 1.25rem 0;
}

.lp-pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-accent);
}

.lp-pricing-period {
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}

.lp-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.lp-pricing-features li {
    padding: 8px 0;
    color: var(--lp-text-secondary);
    font-size: 0.9rem;
}

.lp-pricing-features li::before {
    content: '✓';
    color: var(--lp-accent);
    margin-right: 8px;
    font-weight: 600;
}

/* ========== TEAM Block ========== */
.lp-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.lp-team-card {
    flex: 0 1 220px;
    max-width: 280px;
    background: var(--lp-bg-card);
    padding: 28px 20px;
    border-radius: var(--lp-radius);
    text-align: center;
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
}

.lp-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    background: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.lp-team-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--lp-text);
}

.lp-team-card p {
    color: var(--lp-text-muted);
    font-size: 0.85rem;
}

/* ========== GALLERY Block ========== */
.lp-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.lp-gallery-item {
    flex: 1 1 180px;
    min-width: 150px;
    max-width: 250px;
    height: 200px;
    border-radius: var(--lp-radius);
    overflow: hidden;
    cursor: pointer;
}

.lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lp-gallery-item:hover img {
    transform: scale(1.08);
}

/* ========== CLIENTS Block ========== */
.lp-clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.lp-client-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lp-client-logo {
    max-height: 40px;
    max-width: 100px;
    opacity: 0.85;
    transition: var(--lp-transition);
    filter: grayscale(30%);
}

.lp-client-item:hover .lp-client-logo {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========== FOOTER Block ========== */
.lp-footer {
    background: transparent; /* Inherit from parent section */
    padding: 60px 0 24px;
    border-top: none; /* Remove border - parent section controls styling */
}

.lp-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.lp-footer-brand {
    flex: 1 1 300px;
    max-width: 400px;
}

.lp-footer-links {
    flex: 0 0 auto;
    min-width: 120px;
}

.lp-footer-brand img {
    height: 36px;
    margin-bottom: 1rem;
}

.lp-footer-brand p {
    color: var(--lp-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.lp-footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: var(--lp-text);
}

.lp-footer-links ul {
    list-style: none;
}

.lp-footer-links li {
    margin-bottom: 8px;
}

.lp-footer-links a {
    color: var(--lp-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--lp-transition);
}

.lp-footer-links a:hover {
    color: var(--lp-accent);
}

.lp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.25rem;
}

/* Social Icons with Brand Colors */
.lp-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.lp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem; /* Icon size */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--lp-text-muted); /* Default icon color */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Specific Brand Colors - Higher Specificity */
.lp-footer-social a.lp-social-facebook { color: #1877f2; border-color: rgba(24, 119, 242, 0.2); background: rgba(24, 119, 242, 0.05); }
.lp-footer-social a.lp-social-instagram { color: #e1306c; border-color: rgba(225, 48, 108, 0.2); background: rgba(225, 48, 108, 0.05); }
.lp-footer-social a.lp-social-twitter { color: #1da1f2; border-color: rgba(29, 161, 242, 0.2); background: rgba(29, 161, 242, 0.05); }
.lp-footer-social a.lp-social-youtube { color: #ff0000; border-color: rgba(255, 0, 0, 0.2); background: rgba(255, 0, 0, 0.05); }
.lp-footer-social a.lp-social-tiktok { color: #000000; border-color: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.05); }
.lp-footer-social a.lp-social-whatsapp { color: #25D366; border-color: rgba(37, 211, 102, 0.2); background: rgba(37, 211, 102, 0.05); }
.lp-footer-social a.lp-social-linkedin { color: #0a66c2; border-color: rgba(10, 102, 194, 0.2); background: rgba(10, 102, 194, 0.05); }

/* Hover Effects - Filled */
.lp-footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    color: #ffffff !important; /* Force white icon on hover */
    border-color: transparent;
}

.lp-footer-social a.lp-social-facebook:hover { background: #1877f2; }
.lp-footer-social a.lp-social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.lp-footer-social a.lp-social-twitter:hover { background: #1da1f2; }
.lp-footer-social a.lp-social-youtube:hover { background: #ff0000; }
.lp-footer-social a.lp-social-tiktok:hover { background: #000000; }
.lp-footer-social a.lp-social-whatsapp:hover { background: #25D366; }
.lp-footer-social a.lp-social-linkedin:hover { background: #0a66c2; }

.lp-footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--lp-border);
    color: var(--lp-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .lp-footer-grid {
        gap: 30px;
    }
    .lp-footer-brand {
        flex: 1 1 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .lp-footer-grid {
        flex-direction: column;
        gap: 24px;
    }
    .lp-footer-links {
        flex: 1 1 100%;
    }
}

/* Footer on Dark Background - Force Readable Text */
[data-dark-bg="true"] .lp-footer,
[data-dark-bg="true"].lp-block-footer {
    color: #ffffff !important;
}

[data-dark-bg="true"] .lp-footer-brand p,
[data-dark-bg="true"] .lp-footer-links a,
[data-dark-bg="true"] .lp-footer-links h4,
[data-dark-bg="true"] .lp-footer-bottom,
[data-dark-bg="true"] .lp-footer-bottom p {
    color: rgba(255, 255, 255, 0.85) !important;
}

[data-dark-bg="true"] .lp-footer-links a:hover {
    color: #ffffff !important;
}

[data-dark-bg="true"] .lp-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

/* ========== Default Page ========== */
.lp-default-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lp-default-content {
    padding: 40px;
}

.lp-default-logo {
    max-width: 180px;
    margin-bottom: 1.75rem;
}

.lp-default-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--lp-text);
}

.lp-default-content p {
    color: var(--lp-text-secondary);
}

/* ========== TRACK SERVICE Block ========== */
.lp-track-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.lp-track-form {
    margin-bottom: 24px;
}

.lp-track-input-group {
    display: flex;
    align-items: center;
    background: var(--lp-bg-card);
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 8px;
    transition: var(--lp-transition);
}

.lp-track-input-group:focus-within {
    border-color: var(--lp-accent);
}

.lp-track-icon {
    font-size: 1.5rem;
    padding: 0 12px;
}

.lp-track-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-track-input:focus {
    outline: none;
}

.lp-track-result {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-track-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
}

.lp-track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-track-header h3 {
    font-size: 1.1rem;
    color: var(--lp-text);
    margin: 0;
}

.lp-track-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lp-status-queue {
    background: #6c757d;
    color: #fff;
}

.lp-status-progress {
    background: #17a2b8;
    color: #fff;
}

.lp-status-partial {
    background: #ffc107;
    color: #333;
}

.lp-status-finished {
    background: var(--lp-accent);
    color: #fff;
}

.lp-track-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lp-track-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-track-label {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

.lp-track-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-track-value.lp-paid {
    color: var(--lp-accent);
}

.lp-track-value.lp-unpaid {
    color: #dc3545;
}

.lp-track-error {
    text-align: center;
    padding: 24px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: var(--lp-radius);
    color: #dc3545;
}

.lp-track-error span {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.lp-track-error p {
    margin: 0;
}

@media (max-width: 480px) {
    .lp-track-input-group {
        flex-wrap: wrap;
    }
    
    .lp-track-input {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .lp-track-details {
        grid-template-columns: 1fr;
    }
}

/* Loading spinner */
.lp-track-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--lp-text-muted);
}

.lp-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--lp-border);
    border-top-color: var(--lp-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Track result enhancements */
.lp-track-result {
    max-width: 800px;
    margin: 0 auto;
}

.lp-track-main {
    margin-bottom: 24px;
}

.lp-track-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-track-sum-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-track-sum-item span {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
}

.lp-track-sum-item strong {
    font-size: 0.95rem;
}

.lp-track-billing {
    padding-top: 16px;
}

.lp-billing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.lp-billing-row span {
    color: var(--lp-text-secondary);
}

.lp-billing-total {
    border-top: 1px solid var(--lp-border);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
}

.lp-track-section-title {
    color: var(--lp-text);
    font-size: 1rem;
    margin: 24px 0 12px;
    font-weight: 600;
}

/* Item cards */
.lp-track-item {
    margin-bottom: 16px;
}

.lp-track-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-track-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Light Theme Hero Readability Fix - Text Shadow (No Box) */
.lp-theme-light .lp-hero-content {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    max-width: 800px;
    margin: 0 auto;
}

/* ... (Hero actions/title styles remain, check context if needed) ... */

/* Track Service Modal/Result Light Theme Fix */
.lp-theme-light .lp-track-card {
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #1e293b !important;
    border: 1px solid #e2e8f0;
}

/* Force dark text for all descendants except status pills/buttons */
.lp-theme-light .lp-track-card span,
.lp-theme-light .lp-track-card strong,
.lp-theme-light .lp-track-card h3,
.lp-theme-light .lp-track-card h4,
.lp-theme-light .lp-track-card h5,
.lp-theme-light .lp-track-card div,
.lp-theme-light .lp-track-card small {
    color: #1e293b;
}

/* Re-apply distinct colors for specific elements */
.lp-theme-light .lp-track-card .lp-text-muted,
.lp-theme-light .lp-track-card span.lp-label,
.lp-theme-light .lp-track-card small {
    color: #64748b !important; /* Slate 500 */
}

.lp-theme-light .lp-track-card .lp-track-status,
.lp-theme-light .lp-track-card .lp-item-status,
.lp-theme-light .lp-track-card .lp-checklist-status span {
    color: #ffffff !important; /* Keep status text white */
}

.lp-theme-light .lp-track-card .lp-paid { color: #059669 !important; }
.lp-theme-light .lp-track-card .lp-unpaid { color: #dc3545 !important; }

.lp-theme-light .lp-track-item-header {
    border-bottom: 1px solid #e2e8f0;
}

/* Fix Track Service Input form in Light Theme */
.lp-theme-light .lp-track-input {
    background-color: #ffffff !important;
    color: #1e293b !important;
    border: 1px solid #cbd5e1 !important;
}
.lp-theme-light .lp-track-input::placeholder {
    color: #94a3b8 !important;
}

/* Fix CTA Block text color in Light Theme (Override any DB setting) */
.lp-theme-light .lp-cta h2,
.lp-theme-light .lp-cta p {
    color: #1e293b !important;
}

/* Ensure list items in Track Result are visible */
.lp-theme-light .lp-track-list li,
.lp-theme-light .lp-track-item-row {
    color: #1e293b !important;
}

/* Restore opacity for icons in cycle */
.lp-cycle-node:not(.completed) .lp-cycle-label {
    color: #94a3b8;
}

.lp-theme-light .lp-billing-total {
    border-top: 1px solid #e2e8f0;
}

/* Fix Checklist Pill Contrast - UNIVERSAL FORCE */
span.lp-cond-ok,
span.lp-cond-good,
span.lp-cond-normal,
span.lp-cond-baik,
.lp-cond-ok, .lp-cond-good, .lp-cond-normal, .lp-cond-baik {
    background-color: #dcfce7 !important;
    color: #166534 !important; /* Dark Green */
    border: 1px solid #bbf7d0 !important;
    text-shadow: none !important;
}

span.lp-cond-bad,
span.lp-cond-broken,
span.lp-cond-rusak,
span.lp-cond-tidak,
.lp-cond-bad, .lp-cond-broken, .lp-cond-rusak, .lp-cond-tidak {
    background-color: #fee2e2 !important;
    color: #991b1b !important; /* Dark Red */
    border: 1px solid #fecaca !important;
    text-shadow: none !important;
}

span.lp-cond-warning,
span.lp-cond-unknown,
.lp-cond-warning, .lp-cond-unknown {
    background-color: #fef9c3 !important;
    color: #854d0e !important; /* Dark Yellow */
    border: 1px solid #fde047 !important;
    text-shadow: none !important;
}

.lp-theme-light .lp-checklist-name {
    color: #1e293b !important;
}

.lp-track-item-info strong {
    font-size: 1rem;
}

.lp-track-item-info small {
    color: var(--lp-text-muted);
    font-size: 0.8rem;
}

.lp-item-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-track-item-row {
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    padding: 4px 0;
}

.lp-track-item-row span {
    color: var(--lp-text-muted);
    margin-right: 4px;
}

/* Sub sections */
.lp-track-sub-section {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--lp-border);
}

.lp-track-sub-section h5 {
    font-size: 0.85rem;
    color: var(--lp-accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.lp-track-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-track-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    border-bottom: 1px solid var(--lp-border);
}

.lp-track-list li:last-child {
    border-bottom: none;
}

/* Checklist table */
.lp-track-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.lp-track-table th,
.lp-track-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
}

.lp-track-table th {
    background: var(--lp-bg-secondary);
    color: var(--lp-text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.lp-track-table td {
    color: var(--lp-text-secondary);
}

/* Cycle timeline */
.lp-track-cycle {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-cycle-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--lp-bg-secondary);
    border-radius: var(--lp-radius-sm);
    font-size: 0.8rem;
    opacity: 0.5;
}

.lp-cycle-step.completed {
    opacity: 1;
    background: rgba(12, 227, 172, 0.1);
    border: 1px solid rgba(12, 227, 172, 0.3);
}

.lp-cycle-step span {
    font-size: 1.2rem;
}

.lp-cycle-step div {
    display: flex;
    flex-direction: column;
}

.lp-cycle-step strong {
    font-size: 0.8rem;
}

.lp-cycle-step small {
    font-size: 0.7rem;
    color: var(--lp-text-muted);
}

.lp-paid {
    color: var(--lp-accent) !important;
}

.lp-unpaid {
    color: #dc3545 !important;
}

/* ========== Animations ========== */
.lp-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s ease;
}

.lp-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--lp-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--lp-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lp-accent);
}

/* Menu Block Styles */
.lp-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}


/* Full Width Override */
.lp-full-width .lp-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: var(--lp-side-padding, 20px);
    padding-right: var(--lp-side-padding, 20px);
}

.lp-menu-logo {
    display: flex;
    align-items: center;
}

.lp-menu-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lp-menu-logo img:hover {
    transform: scale(1.05);
}

.lp-menu-items {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

/* Alignments */
.lp-menu-align-left { justify-content: flex-start; }
.lp-menu-align-left .lp-menu-items { margin-left: 0; } /* FIX: Remove auto margin */

.lp-menu-align-center { justify-content: center; text-align: center; }
.lp-menu-align-center .lp-menu-logo { margin-bottom: 0; margin-right: 20px; } /* Adjust for centers */

.lp-menu-align-right { justify-content: space-between; }
.lp-menu-align-right .lp-menu-items { margin-left: auto; }

/* Style: Simple */
.lp-menu-simple .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.2s ease;
    padding: 5px 0;
    position: relative;
}

.lp-menu-simple .lp-menu-link:hover {
    opacity: 1;
    color: var(--lp-primary);
}

.lp-menu-simple .lp-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-primary);
    transition: width 0.3s ease;
}

.lp-menu-simple .lp-menu-link:hover::after {
    width: 100%;
}

/* Style: Modern (Uppercase, spaced) */
.lp-menu-modern .lp-menu-items {
    gap: 32px;
}

.lp-menu-modern .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: all 0.2s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.lp-menu-modern .lp-menu-link:hover {
    opacity: 1;
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

/* Style: Marker (Thick highlight) */
.lp-menu-marker .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 800;
    font-size: 18px;
    position: relative;
    z-index: 1;
    padding: 0 5px;
    transition: color 0.2s;
}

.lp-menu-marker .lp-menu-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--lp-secondary);
    z-index: -1;
    opacity: 0.4;
    transition: height 0.2s, opacity 0.2s;
    transform: skewX(-10deg);
}

.lp-menu-marker .lp-menu-link:hover::before {
    height: 70%;
    opacity: 0.8;
}

/* Style: Buttons */
.lp-menu-buttons .lp-menu-items {
    gap: 12px;
}

.lp-menu-buttons .lp-menu-link {
    text-decoration: none;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: inherit;
}

/* Dark theme specific for buttons */
[data-theme="light"] .lp-menu-buttons .lp-menu-link {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

.lp-menu-buttons .lp-menu-link:hover {
    transform: translateY(-2px);
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Style: Nav (Glassmorphism Pilled) */
.lp-menu-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
}

[data-theme="light"] .lp-menu-nav {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0,0,0,0.05);
}

.lp-menu-nav .lp-menu-items {
    gap: 4px;
}

.lp-menu-nav .lp-menu-link {
    text-decoration: none;
    color: inherit;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.lp-menu-nav .lp-menu-link:hover {
    background: rgba(255,255,255,0.1);
}

[data-theme="light"] .lp-menu-nav .lp-menu-link:hover {
    background: rgba(0,0,0,0.05);
}

.lp-menu-nav .lp-menu-link.active {
    background: var(--lp-primary);
    color: #fff;
}

/* Style: Neo-Brutalist */
.lp-menu-neo .lp-menu-items {
    gap: 16px;
}

.lp-menu-neo .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    background: #fff;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 0 #000;
    transition: all 0.2s;
    color: #000;
}

.lp-menu-neo .lp-menu-link:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 #000;
}

/* Style: Glow */
.lp-menu-glow .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.lp-menu-glow .lp-menu-link:hover {
    color: var(--lp-primary);
    text-shadow: 0 0 10px var(--lp-primary), 0 0 20px var(--lp-primary);
}

/* Style: Brackets */
.lp-menu-brackets .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    padding: 0 5px;
    transition: all 0.3s;
    position: relative;
}

.lp-menu-brackets .lp-menu-link::before,
.lp-menu-brackets .lp-menu-link::after {
    display: inline-block;
    opacity: 0;
    transition: transform 0.3s, opacity 0.2s;
    color: var(--lp-primary);
}

.lp-menu-brackets .lp-menu-link::before {
    content: '[';
    transform: translateX(10px);
    margin-right: 5px;
}

.lp-menu-brackets .lp-menu-link::after {
    content: ']';
    transform: translateX(-10px);
    margin-left: 5px;
}

.lp-menu-brackets .lp-menu-link:hover::before,
.lp-menu-brackets .lp-menu-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Style: Minimal (Dot) */
.lp-menu-minimal .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    padding-bottom: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lp-menu-minimal .lp-menu-link:hover {
    opacity: 1;
}

.lp-menu-minimal .lp-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--lp-primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s;
}

.lp-menu-minimal .lp-menu-link:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Responsive Menu - Hamburger for Mobile */
.lp-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .lp-menu-wrapper {
        padding: 10px 0;
        flex-wrap: wrap; /* Allow items to wrap when opened */
        justify-content: space-between !important; /* Force Logo Left, Toggle Right on Mobile */
    }
    
    /* Toggle button visible on mobile */
    .lp-menu-toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        color: var(--lp-text);
        border: 1px solid var(--lp-border);
        border-radius: 4px;
        line-height: 1;
    }
    
    /* Flex Order Re-arrangement for Mobile */
    .lp-menu-logo { order: 1; }
    .lp-menu-toggle { order: 2; }
    .lp-menu-items { 
        order: 3;
        display: none; /* Hidden by default */
        width: 100%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid var(--lp-border);
        margin-top: 10px;
    }
    
    .lp-menu-active .lp-menu-items {
        display: flex;
    }
    
    .lp-menu-align-center .lp-menu-logo {
        margin-bottom: 0;
        width: auto;
    }
}

/* Style: Cyberpunk */
.lp-menu-cyberpunk .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 12px;
    background: linear-gradient(45deg, transparent 5%, var(--lp-primary) 5%);
    color: #fff;
    box-shadow: 6px 0px 0px 0px var(--lp-secondary);
    transition: all 0.2s;
    letter-spacing: 2px;
}

.lp-menu-cyberpunk .lp-menu-link:hover {
    box-shadow: -6px 0px 0px 0px var(--lp-secondary);
    background: linear-gradient(45deg, var(--lp-primary) 95%, transparent 95%);
    text-shadow: 2px 2px #ff00de;
}

/* Style: Pill Outline */
.lp-menu-pill-outline .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid var(--lp-primary);
    border-radius: 50px;
    transition: all 0.3s;
    background: transparent;
}

.lp-menu-pill-outline .lp-menu-link:hover {
    background: var(--lp-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Style: Skewed Background */
.lp-menu-skewed .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-style: italic;
    padding: 6px 16px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.lp-menu-skewed .lp-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lp-secondary);
    transform: skew(-20deg) scaleY(0);
    transform-origin: bottom;
    z-index: -1;
    transition: transform 0.3s;
    opacity: 0.2;
}

.lp-menu-skewed .lp-menu-link:hover::before {
    transform: skew(-20deg) scaleY(1);
}

/* Style: Underline Center */
.lp-menu-underline-center .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.lp-menu-underline-center .lp-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--lp-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.lp-menu-underline-center .lp-menu-link:hover::after {
    width: 100%;
    left: 0;
}

/* Style: Underline Slide */
.lp-menu-underline-slide .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

.lp-menu-underline-slide .lp-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--lp-primary);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
}

.lp-menu-underline-slide .lp-menu-link:hover::after {
    transform: translateX(0);
}

/* Style: Gradient Line */
.lp-menu-gradient-line .lp-menu-link {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--lp-primary), var(--lp-secondary));
    border-image-slice: 1;
    width: 100%;
    transition: all 0.3s;
    opacity: 0.7;
}

.lp-menu-gradient-line .lp-menu-link:hover {
    opacity: 1;
    padding-bottom: 8px;
}

/* Horizontal Timeline for Service Cycle */
.lp-cycle-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 10px;
    overflow-x: auto;
}

.lp-cycle-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    position: relative;
}

.lp-cycle-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lp-border);
    border: 3px solid var(--lp-card-bg);
    box-shadow: 0 0 0 2px var(--lp-border);
    transition: all 0.3s ease;
}

.lp-cycle-node.completed .lp-cycle-dot {
    background: var(--lp-accent);
    box-shadow: 0 0 0 2px var(--lp-accent), 0 0 10px rgba(12, 227, 172, 0.3);
}

.lp-cycle-label {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    text-align: center;
}

.lp-cycle-node.completed .lp-cycle-label {
    color: var(--lp-accent);
}

.lp-cycle-time {
    margin-top: 4px;
    font-size: 0.65rem;
    color: var(--lp-text-muted);
    text-align: center;
    white-space: nowrap;
}

.lp-cycle-line {
    flex: 1;
    height: 3px;
    background: var(--lp-border);
    margin-top: 6px;
    min-width: 30px;
    transition: background 0.3s ease;
}

.lp-cycle-line.completed {
    background: var(--lp-accent);
}

@media (max-width: 480px) {
    .lp-cycle-timeline {
        padding: 15px 5px;
    }
    .lp-cycle-node {
        min-width: 60px;
    }
    .lp-cycle-label {
        font-size: 0.65rem;
    }
    .lp-cycle-time {
        font-size: 0.55rem;
    }
}

/* Compact Checklist Pills */
.lp-checklist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-checklist-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 140px;
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 5px);
}

.lp-checklist-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-checklist-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
}

.lp-cond {
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.lp-cond-ok {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.lp-cond-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.lp-cond-bad {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.lp-cond-unknown {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

.lp-cond-arrow {
    color: var(--lp-text-muted);
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .lp-checklist-pill {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ========== ARTICLE Block ========== */
.lp-article {
    padding: 60px 0;
}

.lp-article-content {
    line-height: 1.8;
}

.lp-article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.lp-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--lp-text);
    line-height: 1.3;
}

.lp-article-body {
    font-size: 1.1rem;
    color: var(--lp-text);
}

.lp-article-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--lp-text);
}

.lp-article-body h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--lp-text);
}

.lp-article-body p {
    margin-bottom: 1.5rem;
    color: var(--lp-text-secondary);
}

.lp-article-body ul,
.lp-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.lp-article-body li {
    margin-bottom: 0.5rem;
    color: var(--lp-text-secondary);
}

.lp-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lp-radius);
    margin: 1.5rem 0;
}

.lp-article-body blockquote {
    border-left: 4px solid var(--lp-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--lp-text-secondary);
}

@media (max-width: 768px) {
    .lp-article-title {
        font-size: 1.75rem;
    }
    
    .lp-article-body {
        font-size: 1rem;
    }
    
    .lp-article-body h2 {
        font-size: 1.4rem;
    }
}

/* ========== THEME CONTRAST FIXES ========== */
/* When blocks have dark backgrounds in light theme, override card/text colors */
/* The data-dark-bg attribute is applied via JavaScript based on block bg settings */

/* Dark background blocks in light theme - force dark card styling */
.lp-theme-light .lp-block[data-dark-bg="true"] {
    --lp-bg-card: rgba(255, 255, 255, 0.08);
    --lp-bg-card-hover: rgba(255, 255, 255, 0.12);
    --lp-border: rgba(255, 255, 255, 0.15);
    --lp-text: #ffffff;
    --lp-text-secondary: #e2e8f0;
    --lp-text-muted: #94a3b8;
}

/* Ensure service/team/pricing cards on dark bg blocks have proper styling */
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-service-card,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-team-card,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-pricing-card,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-testimonial-card,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.lp-theme-light .lp-block[data-dark-bg="true"] .lp-service-card:hover,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-team-card:hover,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-pricing-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lp-theme-light .lp-block[data-dark-bg="true"] .lp-service-card h3,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-team-card h3,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-pricing-card h3,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-testimonial-info h4,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-faq-question {
    color: #ffffff;
}

.lp-theme-light .lp-block[data-dark-bg="true"] .lp-service-card p,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-team-card p,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-pricing-features li,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-testimonial-content,
.lp-theme-light .lp-block[data-dark-bg="true"] .lp-faq-answer {
    color: #cbd5e1;
}

/* Maps block styling */
.lp-maps-wrapper {
    max-width: 100%;
}

.lp-maps-container {
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-border);
}

.lp-maps-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.lp-maps-address {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--lp-bg-card);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-maps-address-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lp-maps-address-text {
    color: var(--lp-text-secondary);
    line-height: 1.6;
}

.lp-maps-placeholder {
    padding: 4rem 2rem;
    background: var(--lp-bg-card);
    border-radius: var(--lp-radius);
    border: 2px dashed var(--lp-border);
    text-align: center;
}

.lp-maps-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.lp-maps-placeholder p {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .lp-maps-container iframe {
        height: 300px;
    }
}


/* Testimonial Slider */
.lp-testimonial-slider-container { overflow: hidden; width: 100%; padding: 20px 0; }
.lp-marquee { width: 100%; overflow: hidden; }
.lp-marquee-content { display: flex; gap: 24px; width: max-content; animation: lp-marquee-scroll 30s linear infinite; }
.lp-marquee-content:hover { animation-play-state: paused; }
@keyframes lp-marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.lp-marquee-content .lp-testimonial-card { min-width: 300px; flex: 0 0 300px; }

/* Stats Block - Dark text on light backgrounds */
.lp-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}
.lp-stat-item {
    text-align: center;
}
.lp-stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.lp-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
}

/* Stats on yellow/light background - use dark text */
.lp-block-stats[style*="#facc15"] .lp-stat-number,
.lp-block-stats[style*="#facc15"] .lp-stat-label,
.lp-block-stats[style*="facc15"] .lp-stat-number,
.lp-block-stats[style*="facc15"] .lp-stat-label {
    color: #0a0a0a !important;
}

/* TikTok icon - white on dark theme */
.lp-theme-dark .lp-social-tiktok svg {
    fill: #ffffff;
    color: #ffffff;
}

/* Footer grid alignment - links align bottom with social icons */
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
}
.lp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.lp-footer-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.lp-footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-links ul li a {
    color: var(--lp-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.lp-footer-links ul li a:hover {
    color: var(--lp-primary);
}

/* Contact Centered Layout */
.lp-contact-centered .lp-contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lp-contact-centered .lp-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
}
.lp-contact-centered .lp-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.lp-contact-centered .lp-contact-icon {
    font-size: 2rem;
}
.lp-contact-centered .lp-contact-cta {
    margin-top: 20px;
}
.lp-contact-centered .lp-btn-whatsapp-cta {
    background: #25D366;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.lp-contact-centered .lp-btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Hero fullscreen styling is handled at lines 194-214 using .lp-block-menu + .lp-block-hero selector */

/* Contact Grid 2x2 Layout */
.lp-contact-centered .lp-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
}
.lp-contact-centered .lp-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.lp-contact-centered .lp-contact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-bottom: 8px;
}
.lp-contact-centered .lp-contact-item h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.lp-contact-centered .lp-contact-item p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.85;
}
.lp-contact-centered .lp-contact-item a {
    color: inherit;
    text-decoration: none;
}

/* Footer Compact Layout */
.lp-footer {
    padding-top: 0;
}
.lp-footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    padding: 20px 0;
}
.lp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
}
.lp-footer-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.lp-footer-brand p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}
.lp-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.lp-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.lp-footer-social a:hover {
    background: var(--lp-primary);
    transform: translateY(-3px);
}
.lp-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.lp-footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-links ul li a {
    color: var(--lp-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.lp-footer-links ul li a:hover {
    color: var(--lp-primary);
}
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}
.lp-footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .lp-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .lp-footer-brand {
        align-items: center;
    }
    .lp-footer-links {
        align-items: center;
    }
    .lp-footer-links ul {
        justify-content: center;
    }
    .lp-stats-grid {
        gap: 30px;
    }
    .lp-stat-number {
        font-size: 2rem;
    }
    .lp-contact-centered .lp-contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lp-block-menu + .lp-block-hero {
        height: auto !important;
        max-height: none !important;
        min-height: 60vh !important;
    }
    .lp-block-menu + .lp-block-hero .lp-hero {
        height: auto !important;
        padding: 40px 0 !important;
    }
    .lp-contact-with-image .lp-contact-grid {
        flex-direction: column;
    }
}

/* Contact with Image Layout - side by side */
.lp-contact-with-image .lp-contact-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}
.lp-contact-with-image .lp-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-contact-with-image .lp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.lp-contact-with-image .lp-contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}
.lp-contact-with-image .lp-contact-item h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
}
.lp-contact-with-image .lp-contact-item p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.85;
}
.lp-contact-with-image .lp-contact-item a {
    color: inherit;
    text-decoration: none;
}
.lp-contact-with-image .lp-contact-cta {
    margin-top: 20px;
}
.lp-contact-with-image .lp-contact-image {
    flex: 1;
    max-width: 450px;
}
.lp-contact-with-image .lp-contact-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .lp-contact-with-image .lp-contact-grid {
        flex-direction: column-reverse;
    }
    .lp-contact-with-image .lp-contact-image {
        max-width: 100%;
    }
}

/* ========== FOOTER Block - All Styles ========== */

/* Base Footer Styles */
.lp-footer {
    padding: 40px 0 20px;
}

.lp-footer img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.lp-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 280px;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.lp-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: inherit;
}

.lp-social-icon:hover {
    background: var(--lp-primary);
    transform: translateY(-3px);
}

.lp-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* TikTok icon visibility on dark theme */
.lp-theme-dark .lp-social-tiktok svg,
.lp-footer .lp-social-tiktok svg {
    fill: #ffffff;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: none;
}

.lp-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-links li {
    margin-bottom: 8px;
}

.lp-footer-links a {
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lp-footer-links a:hover {
    opacity: 1;
    color: var(--lp-primary);
}

/* ========== Style: Default (3-column grid) ========== */
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .lp-footer-grid .lp-footer-brand p {
        max-width: none;
        margin: 0 auto 12px;
    }
    .lp-footer-grid .lp-footer-social {
        justify-content: center;
    }
}

/* ========== Style: Horizontal Compact ========== */
.lp-footer-horizontal-compact .lp-footer-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-footer-horizontal-compact .lp-footer-brand-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.lp-footer-horizontal-compact .lp-footer-brand-compact img {
    height: 36px;
    margin-bottom: 0;
}

.lp-footer-horizontal-compact .lp-footer-brand-compact p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    max-width: 300px;
}

.lp-footer-horizontal-compact .lp-footer-social-compact {
    display: flex;
    gap: 10px;
}

.lp-footer-horizontal-compact .lp-footer-links-compact ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-horizontal-compact .lp-footer-links-compact a {
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lp-footer-horizontal-compact .lp-footer-links-compact a:hover {
    opacity: 1;
    color: var(--lp-primary);
}

.lp-footer-horizontal-compact .lp-footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .lp-footer-horizontal-compact .lp-footer-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .lp-footer-horizontal-compact .lp-footer-brand-compact {
        flex-direction: column;
        gap: 8px;
    }
    .lp-footer-horizontal-compact .lp-footer-brand-compact p {
        max-width: none;
    }
    .lp-footer-horizontal-compact .lp-footer-links-compact ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ========== Style: With Contact (3 columns) ========== */
.lp-footer-with-contact .lp-footer-grid-contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.lp-footer-with-contact .lp-footer-contact h4,
.lp-footer-with-contact .lp-footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: inherit;
}

.lp-footer-with-contact .lp-footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.85;
    max-width: none;
}

.lp-footer-with-contact .lp-footer-contact p strong {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .lp-footer-with-contact .lp-footer-grid-contact {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .lp-footer-with-contact .lp-footer-brand p {
        max-width: none;
        margin: 0 auto 12px;
    }
    .lp-footer-with-contact .lp-footer-social {
        justify-content: center;
    }
}

/* ========== Style: Two Column ========== */
/* ========== Style: Two Column ========== */
.lp-footer-two-column .lp-footer-two-col {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Allow stretching so we can align bottom */
    gap: 40px;
}

.lp-footer-two-column .lp-footer-brand {
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important; /* Force items to start (left) */
    text-align: left;
}

/* Force logo image alignment */
.lp-footer-two-column .lp-footer-brand img {
    margin: 0 0 15px 0 !important;
    align-self: flex-start !important; /* Double down on alignment */
    max-width: 100%;
}

.lp-footer-two-column .lp-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    align-self: flex-end; /* Align the whole column to the bottom */
    margin-top: auto; /* Push to bottom if parent has height */
}

.lp-footer-two-column .lp-footer-links ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-two-column .lp-footer-social {
    margin-top: 0;
}

@media (max-width: 768px) {
    .lp-footer-two-column .lp-footer-two-col {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .lp-footer-two-column .lp-footer-brand {
        max-width: none;
    }
    .lp-footer-two-column .lp-footer-brand p {
        max-width: none;
        margin: 0 auto 12px;
    }
    .lp-footer-two-column .lp-footer-social {
        justify-content: center;
    }
    .lp-footer-two-column .lp-footer-right {
        align-items: center;
    }
    .lp-footer-two-column .lp-footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ========== POPUP STYLES ========== */

/* Popup Wrapper (Overlay) */
.lp-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--popup-overlay, rgba(0,0,0,0.6));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-popup-wrapper.lp-popup-active {
    opacity: 1;
    visibility: visible;
}

/* Popup Box */
.lp-popup-box {
    position: relative;
    width: 100%;
    padding: 32px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lp-popup-wrapper.lp-popup-active .lp-popup-box {
    transform: translateY(0) scale(1);
}

/* Close Button */
.lp-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lp-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

/* Popup Content */
.lp-popup-content {
    text-align: center;
    color: #333;
}

.lp-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}

.lp-popup-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.lp-popup-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.lp-popup-caption {
    font-size: 0.9rem;
    color: #666;
    margin: 12px 0;
}

/* Popup Image */
.lp-popup-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.lp-popup-image.lp-popup-image-lg {
    max-height: 300px;
}

/* Popup Button */
.lp-popup-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--lp-primary, #0066cc);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Popup Form */
.lp-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.lp-popup-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.lp-popup-input:focus {
    outline: none;
    border-color: var(--lp-primary, #0066cc);
}

/* Countdown */
.lp-popup-countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.lp-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 8px;
    min-width: 60px;
}

.lp-countdown-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lp-primary, #0066cc);
}

.lp-countdown-item small {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Dark Theme Popup Adjustments */
.lp-theme-dark .lp-popup-box {
    background: #2a2a2a;
    color: #fff;
}

.lp-theme-dark .lp-popup-content {
    color: #fff;
}

.lp-theme-dark .lp-popup-title {
    color: #fff;
}

.lp-theme-dark .lp-popup-desc {
    color: #aaa;
}

.lp-theme-dark .lp-popup-close {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.lp-theme-dark .lp-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lp-theme-dark .lp-popup-input {
    background: #333;
    border-color: #444;
    color: #fff;
}

.lp-theme-dark .lp-countdown-item {
    background: #333;
}

.lp-theme-dark .lp-countdown-item small {
    color: #888;
}

@media (max-width: 600px) {
    .lp-popup-box {
        padding: 24px;
    }
    
    .lp-popup-title {
        font-size: 1.5rem;
    }
    
    .lp-popup-countdown {
        gap: 8px;
    }
    
    .lp-countdown-item {
        min-width: 50px;
        padding: 8px 12px;
    }
    
    .lp-countdown-num {
        font-size: 1.25rem;
    }
}

/* ========== Product Showcase (Etalase Produk) ========== */
.lp-products { width: 100%; }
.lp-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}
.lp-products-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.lp-products-cat {
    background: rgba(255,255,255,0.06);
    color: inherit;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.lp-products-cat:hover { background: rgba(255,255,255,0.12); }
.lp-theme-light .lp-products-cat {
    background: #f1f5f9;
    border-color: #e2e8f0;
}
.lp-theme-light .lp-products-cat:hover { background: #e2e8f0; }
/* Active state must override the light-theme background rule above (same specificity, */
/* but defined later in source so it actually wins). Both selectors listed for clarity. */
.lp-products-cat.active,
.lp-theme-light .lp-products-cat.active {
    background: var(--lp-primary, #0066cc);
    color: #fff;
    border-color: transparent;
}

.lp-products-search { min-width: 220px; }
.lp-products-search input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: inherit;
    font-size: 0.9rem;
}
.lp-theme-light .lp-products-search input {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(var(--lp-product-cols, 4), 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .lp-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .lp-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .lp-products-grid { grid-template-columns: 1fr; } }

.lp-product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-theme-light .lp-product-card {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.lp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.lp-product-card.out-of-stock { opacity: 0.65; }

.lp-product-photo {
    aspect-ratio: 1 / 1;
    background: rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-theme-light .lp-product-photo { background: #f1f5f9; }
.lp-product-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-product-photo-placeholder { font-size: 3rem; opacity: 0.4; }

.lp-product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.lp-product-cat {
    font-size: 0.72rem;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    /* Always 1 line so the breadcrumb row has a fixed height — keeps name & price */
    /* aligned across cards even when one product has a long category path. */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 1.4em;
}
.lp-product-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
    /* Clamp to 2 lines + reserve 2 lines worth of height even when name is short */
    /* (e.g. product literally named "11"), so price/stock/button row line up. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.95rem * 1.35 * 2);
}
.lp-product-variant {
    font-size: 0.78rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
    /* Reserve a row even when showPrice off, so stock/button still line up — */
    /* via min-height matching the price font line-height */
    min-height: 1.5rem;
}
.lp-product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-primary, #0066cc);
}
.lp-product-price-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    opacity: 0.55;
}
.lp-product-stock {
    font-size: 0.78rem;
    opacity: 0.7;
}
.lp-product-stock.out { color: #ef4444; opacity: 1; font-weight: 600; }

.lp-product-btn {
    /* margin-top: auto pushes the button to the bottom of the flex column body, */
    /* so all WhatsApp buttons line up across cards regardless of how much content */
    /* (variant, breadcrumb wrapping, etc.) appears above it. */
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.18s ease, transform 0.15s ease;
}
.lp-product-btn:hover { background: #1da851; transform: translateY(-1px); color: #fff; }
.lp-product-btn-disabled {
    background: #94a3b8;
    cursor: not-allowed;
}
.lp-product-btn-disabled:hover { background: #64748b; transform: none; }

/* ===== Click-to-Zoom Image Modal (Shopee/Tokopedia pattern) ===== */
/* Card image is a compressed thumbnail (~17 KB); clicking opens a fullscreen modal */
/* with the high-quality version loaded via proxy. Modal supports zoom (buttons, scroll */
/* wheel) and pan (drag when zoomed in). Closes only on explicit action: X button, ESC, */
/* or click on backdrop area outside the image. */
.lp-product-img {
    cursor: zoom-in;
}
.lp-img-zoom {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.lp-img-zoom.open {
    display: flex;
    opacity: 1;
    animation: lpImgZoomFadeIn 0.2s ease;
}
@keyframes lpImgZoomFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.lp-img-zoom-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* Important: stage IS clickable backdrop — JS checks e.target === stage to close */
}
.lp-img-zoom-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.18s ease;
    transform-origin: center center;
    will-change: transform;
}
.lp-img-zoom-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    pointer-events: none;
}

/* Top-right close button */
.lp-img-zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.15s ease;
}
.lp-img-zoom-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Bottom-center zoom controls */
.lp-img-zoom-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 4px;
    z-index: 2;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lp-img-zoom-controls button {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    min-width: 40px;
    transition: background 0.15s ease;
}
.lp-img-zoom-controls button:hover {
    background: rgba(255, 255, 255, 0.18);
}
.lp-img-zoom-controls button[data-act="reset"] {
    font-size: 12px;
    min-width: 60px;
    font-variant-numeric: tabular-nums;
}

/* Hint text below controls */
.lp-img-zoom-hint {
    position: absolute;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lp-img-zoom-img { max-width: 95%; max-height: 80%; }
    .lp-img-zoom-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lp-img-zoom-controls { bottom: 16px; }
    .lp-img-zoom-hint { display: none; }
}

.lp-products-loading,
.lp-products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    opacity: 0.6;
    font-size: 0.95rem;
}
.lp-products-footer { text-align: center; margin-top: 24px; }
.lp-products-more {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.18s ease;
}
.lp-products-more:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
}
.lp-theme-light .lp-products-more {
    border-color: #cbd5e1;
}
.lp-theme-light .lp-products-more:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* ========== Gallery Lightbox + Carousel ========== */
.lp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.lp-lightbox.open {
    display: flex;
    opacity: 1;
    animation: lpLightboxFadeIn 0.2s ease;
}
@keyframes lpLightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lp-lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px 20px;
    overflow: hidden;
    cursor: zoom-out;
}
.lp-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
}

.lp-lightbox-close,
.lp-lightbox-prev,
.lp-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lp-lightbox-close:hover,
.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lp-lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
}
.lp-lightbox-prev,
.lp-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 36px;
    line-height: 1;
}
.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
    transform: translateY(-50%) scale(1.05);
}
.lp-lightbox-prev { left: 16px; }
.lp-lightbox-next { right: 16px; }

.lp-lightbox-footer {
    padding: 12px 20px 20px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
}
.lp-lightbox-caption {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.lp-lightbox-counter {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .lp-lightbox-stage { padding: 60px 12px 12px; }
    .lp-lightbox-prev,
    .lp-lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
    .lp-lightbox-prev { left: 8px; }
    .lp-lightbox-next { right: 8px; }
    .lp-lightbox-close { top: 12px; right: 12px; }
}
