/* ====== HERO SECTION ====== */
.lx-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.lx-hero-bg {
    position: absolute;
    inset: 0;
}
.lx-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    to { transform: scale(1.12); }
}
.lx-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}
.lx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.15) 70%, transparent 100%);
}
.lx-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    margin: 0;
    margin-left: 8%;
    text-align: left;
}
.lx-hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lx-gold);
    display: inline-block;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s var(--lx-transition) forwards;
}
.lx-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s var(--lx-transition) forwards;
    color: #FAF7F0;
}
.lx-hero-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s var(--lx-transition) forwards;
}
.lx-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s var(--lx-transition) forwards;
}
.lx-btn-hero {
    padding: 20px 40px;
    font-size: 13px;
}
.lx-hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    margin-top: 80px;
    opacity: 0;
    animation: fadeUp 0.8s 1s var(--lx-transition) forwards;
}
.lx-hero-stat {
    text-align: center;
}
.lx-hero-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--lx-gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.lx-hero-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}
.lx-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    animation: fadeUp 0.8s 1.2s forwards;
}
.lx-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(1.5); opacity: 0.3; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .lx-hero { min-height: 600px; }
    .lx-hero-stats { gap: 24px; margin-top: 48px; }
    .lx-hero-stat-number { font-size: 32px; }
    .lx-btn-hero { padding: 14px 28px; font-size: 12px; }
}

/* ====== ABOUT ====== */
.lx-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lx-about-image img, .lx-about-placeholder {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--lx-radius-lg);
}
.lx-about-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}
.lx-about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.lx-value-icon {
    font-size: 32px;
    color: var(--lx-gold);
    display: block;
    margin-bottom: 16px;
}
.lx-value-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}
.lx-value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}
@media (max-width: 768px) {
    .lx-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .lx-about-image img, .lx-about-placeholder { height: 350px; }
    .lx-about-values { grid-template-columns: 1fr; gap: 24px; }
}

/* ====== SERVICES ====== */
.lx-section-gray {
    background: var(--lx-gray-50);
}
.lx-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lx-service-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--lx-radius-md);
    transition: all 0.5s var(--lx-transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.lx-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lx-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--lx-transition);
}
.lx-service-card:hover::before { transform: scaleX(1); }
.lx-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lx-shadow-lg);
}
.lx-service-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
    color: var(--lx-gold);
}
.lx-service-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.lx-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}
.lx-service-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lx-black);
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.lx-service-link:hover { gap: 8px; color: var(--lx-gold); }
@media (max-width: 1024px) { .lx-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lx-services-grid { grid-template-columns: 1fr; } }

/* ====== PORTFOLIO ====== */
.lx-portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.lx-filter-btn {
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--lx-gray-200);
    background: transparent;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s var(--lx-transition);
    min-height: 44px;
}
.lx-filter-btn:hover, .lx-filter-btn.active {
    background: var(--lx-black);
    color: #fff;
    border-color: var(--lx-black);
}
.lx-portfolio-grid {
    columns: 3;
    column-gap: 24px;
}
.lx-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--lx-radius-md);
    break-inside: avoid;
    margin-bottom: 24px;
}
.lx-portfolio-img, .lx-portfolio-placeholder {
    width: 100%;
    transition: transform 0.8s var(--lx-transition);
    display: block;
}
.lx-portfolio-link {
    display: block;
    position: relative;
    overflow: hidden;
}
.lx-portfolio-link:hover .lx-portfolio-img,
.lx-portfolio-link:hover .lx-portfolio-placeholder {
    transform: scale(1.05);
}
.lx-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--lx-transition);
}
.lx-portfolio-link:hover .lx-portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}
.lx-portfolio-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}
.lx-portfolio-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lx-gold);
}
@media (max-width: 1024px) { .lx-portfolio-grid { columns: 2; } }
@media (max-width: 600px) { .lx-portfolio-grid { columns: 1; } }

/* ====== SHOP ====== */
.lx-shop-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: #fff;
    border-radius: 100px;
    padding: 4px;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    text-align: center;
    border: 1px solid var(--lx-gray-200);
}
.lx-shop-tab {
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s var(--lx-transition);
    min-height: 44px;
}
.lx-shop-tab.active, .lx-shop-tab:hover {
    background: var(--lx-black);
    color: #fff;
}
.lx-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lx-product-card {
    background: #fff;
    border-radius: var(--lx-radius-md);
    overflow: hidden;
    transition: all 0.5s var(--lx-transition);
}
.lx-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lx-shadow-lg);
}
.lx-product-img-wrap {
    display: block;
    overflow: hidden;
}
.lx-product-img, .lx-product-placeholder {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--lx-transition);
}
.lx-product-placeholder {
    background: var(--lx-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 13px;
    min-height: 200px;
}
.lx-product-card:hover .lx-product-img { transform: scale(1.05); }
.lx-product-info {
    padding: 20px;
}
.lx-product-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(18px * 1.4 * 3);
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.lx-product-title a { color: inherit; }
.lx-product-title a:hover { color: var(--lx-gold); }
.lx-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--lx-gold);
    display: block;
    margin-bottom: 12px;
}
.lx-product-card .lx-btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #111;
    color: #fff;
    border-radius: var(--lx-radius-sm);
    min-height: 44px;
    box-sizing: border-box;
}
.lx-product-card .lx-btn-primary:hover {
    background: #C9A227;
    color: #111;
}
body.lx-dark-mode .lx-product-title {
    border-bottom-color: #333;
}
body.lx-dark-mode .lx-product-card .lx-btn-primary {
    background: #f5f5f5;
    color: #111;
}
body.lx-dark-mode .lx-product-card .lx-btn-primary:hover {
    background: var(--lx-gold);
    color: #111;
}
.lx-btn-full {
    width: 100%;
    justify-content: center;
}
@media (max-width: 1024px) { .lx-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lx-shop-grid { grid-template-columns: 1fr; } }

/* ====== TESTIMONIALS ====== */
.lx-section-dark {
    background: var(--lx-black);
    color: #fff;
}
.lx-testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.lx-testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px 32px;
    border-radius: var(--lx-radius-md);
    backdrop-filter: blur(10px);
}
.lx-testimonial-stars {
    margin-bottom: 20px;
}
.lx-star {
    color: rgba(255,255,255,0.1);
    font-size: 18px;
}
.lx-star.filled { color: var(--lx-gold); }
.lx-testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}
.lx-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lx-testimonial-avatar, .lx-testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.lx-testimonial-avatar-placeholder {
    background: var(--lx-gold);
    border-radius: 50%;
}
.lx-testimonial-author strong {
    font-size: 15px;
    display: block;
    font-family: 'DM Sans', sans-serif;
}
.lx-testimonial-author span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
@media (max-width: 1024px) { .lx-testimonials-slider { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lx-testimonials-slider { grid-template-columns: 1fr; } }

/* ====== PROCESS ====== */
.lx-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.lx-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--lx-gray-200);
    transform: translateX(-50%);
}
.lx-process-step {
    position: relative;
    margin-bottom: 60px;
}
.lx-process-content {
    width: calc(50% - 40px);
    padding: 32px;
    background: #fff;
    border-radius: var(--lx-radius-md);
    box-shadow: var(--lx-shadow-sm);
    transition: all 0.5s var(--lx-transition);
    border: 1px solid transparent;
}
.lx-process-content:hover {
    box-shadow: var(--lx-shadow-lg);
    border-color: var(--lx-gold);
}
.lx-process-step[data-side="left"] .lx-process-content {
    margin-left: 0;
    margin-right: auto;
}
.lx-process-step[data-side="right"] .lx-process-content {
    margin-left: auto;
    margin-right: 0;
}
.lx-process-num {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--lx-gold);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}
.lx-process-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.lx-process-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}
@media (max-width: 768px) {
    .lx-process-timeline::before { left: 20px; }
    .lx-process-content { width: calc(100% - 40px); margin-left: 40px !important; }
    .lx-process-step[data-side="right"] .lx-process-content { margin-left: 40px !important; }
}

/* ====== BLOG ====== */
.lx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.lx-blog-card-h {
    background: #fff;
    border-radius: var(--lx-radius-md);
    overflow: hidden;
    transition: all 0.5s var(--lx-transition);
}
.lx-blog-card-h:hover {
    transform: translateY(-4px);
    box-shadow: var(--lx-shadow-lg);
}
.lx-blog-thumb-h img, .lx-blog-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.lx-blog-body {
    padding: 28px;
}
.lx-blog-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--lx-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}
.lx-blog-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.lx-blog-body h3 a { color: inherit; }
.lx-blog-body h3 a:hover { color: var(--lx-gold); }
.lx-blog-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 16px;
}
.lx-read-more {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--lx-black);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}
.lx-read-more:hover { gap: 8px; color: var(--lx-gold); }
@media (max-width: 1024px) { .lx-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lx-blog-grid { grid-template-columns: 1fr; } }

/* ====== CONTACT ====== */
.lx-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.lx-contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lx-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.lx-contact-icon {
    font-size: 24px;
    color: var(--lx-gold);
    min-width: 32px;
}
.lx-contact-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.lx-contact-item a, .lx-contact-item span {
    font-size: 16px;
    color: var(--lx-black);
    font-weight: 500;
}
.lx-contact-item a:hover { color: var(--lx-gold); }
.lx-contact-form-wrap {
    background: var(--lx-gray-50);
    padding: 48px;
    border-radius: var(--lx-radius-lg);
}
.lx-form-row {
    margin-bottom: 20px;
}
.lx-form-row input,
.lx-form-row select,
.lx-form-row textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-sm);
    background: #fff;
    transition: border-color 0.3s;
    outline: none;
}
.lx-form-row input:focus,
.lx-form-row select:focus,
.lx-form-row textarea:focus {
    border-color: var(--lx-gold);
}
.lx-form-row textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) {
    .lx-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .lx-contact-form-wrap { padding: 28px; }
}

/* ====== FOOTER ====== */
.lx-footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}
body.lx-dark-mode .lx-footer {
    background: #0a0a0a;
}
.lx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.lx-footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}
.lx-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 24px;
}
.lx-footer-social {
    display: flex;
    gap: 12px;
}
.lx-footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lx-footer-social a:hover {
    border-color: var(--lx-gold);
    color: var(--lx-gold);
    background: rgba(201,162,39,0.1);
}
.lx-footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    font-weight: 600;
}
.lx-footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lx-footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
    font-weight: 300;
}
.lx-footer-col a:hover { color: var(--lx-gold); }
.lx-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
}
.lx-footer-contact svg { flex-shrink: 0; color: var(--lx-gold); }
.lx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
}
.lx-footer-bottom-links {
    display: flex;
    gap: 24px;
}
.lx-footer-bottom-links a {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    transition: color 0.3s;
}
.lx-footer-bottom-links a:hover { color: var(--lx-gold); }
@media (max-width: 768px) { .lx-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lx-footer-grid { grid-template-columns: 1fr; } }

/* ====== PAGE TEMPLATES ====== */
.lx-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}
.lx-page-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
}
.lx-prose {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}
.lx-prose p { margin-bottom: 20px; }
.lx-prose h2, .lx-prose h3 { font-family: 'Inter', sans-serif; margin: 32px 0 16px; }
.lx-prose img { border-radius: var(--lx-radius-md); margin: 24px 0; }
.lx-post-thumb img { width: 100%; border-radius: var(--lx-radius-lg); margin-bottom: 32px; }
.lx-post-meta { margin-bottom: 16px; display: flex; gap: 16px; }
.lx-post-meta span { font-size: 13px; color: #999; }
.lx-post-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.15;
}
.lx-sidebar .lx-widget {
    background: var(--lx-gray-50);
    padding: 28px;
    border-radius: var(--lx-radius-md);
    margin-bottom: 24px;
}
.lx-widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lx-gray-200);
}
.lx-pagination { text-align: center; margin-top: 48px; }
.lx-pagination .page-numbers { display: inline-flex; gap: 4px; }
.lx-pagination .page-numbers a, .lx-pagination .page-numbers span { padding: 8px 16px; border: 1px solid var(--lx-gray-200); border-radius: var(--lx-radius-sm); font-size: 14px; transition: all 0.3s; }
.lx-pagination .page-numbers .current { background: var(--lx-black); color: #fff; border-color: var(--lx-black); }
.lx-pagination .page-numbers a:hover { border-color: var(--lx-gold); color: var(--lx-gold); }
.lx-blog-card { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--lx-gray-100); }
.lx-blog-card:last-child { border-bottom: none; }
.lx-blog-thumb img { width: 100%; border-radius: var(--lx-radius-md); }
.lx-blog-date { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--lx-gold); text-transform: uppercase; letter-spacing: 0.05em; }
.lx-blog-content h2 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 600; margin: 8px 0 16px; }
.lx-blog-content h2 a { color: inherit; }
.lx-blog-content h2 a:hover { color: var(--lx-gold); }
.lx-blog-content p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }

/* ====== 404 ====== */
.lx-404 { min-height: 70vh; display: flex; align-items: center; }
.lx-404-code { font-family: 'Inter', sans-serif; font-size: clamp(120px, 20vw, 200px); font-weight: 700; color: var(--lx-gray-100); line-height: 1; display: block; margin-bottom: 24px; }

/* ====== COOKIE BANNER ====== */
.lx-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: var(--lx-black);
    color: #fff;
    padding: 24px 28px;
    border-radius: var(--lx-radius-md);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--lx-shadow-lg);
}
.lx-cookie-banner p { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.7); }
.lx-cookie-buttons { display: flex; gap: 8px; }

/* ====== WHATSAPP FLOAT ====== */
.lx-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: transform 0.3s;
}
.lx-whatsapp-float:hover { transform: scale(1.1); }

/* ====== GLASSMORPHISM ====== */
.lx-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ====== RESPONSIVE ====== */
/* ====== BEFORE & AFTER SLIDER ====== */
.lx-ba-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: var(--lx-radius-md);
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}
.lx-ba-before, .lx-ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.lx-ba-after {
    clip-path: inset(0 50% 0 0);
}
.lx-ba-before {
    clip-path: inset(0 0 0 50%);
}
.lx-ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.lx-ba-handle::before {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--lx-black);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ====== LANGUAGE SWITCHER ====== */
.lx-lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}
.lx-lang-current {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}
.lx-lang-current:hover,
.lx-lang-switcher:hover .lx-lang-current {
    border-color: var(--lx-gold);
    color: var(--lx-gold);
}
.lx-lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 4px;
    min-width: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}
.lx-lang-switcher:hover .lx-lang-dropdown,
.lx-lang-switcher.open .lx-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}
.lx-lang-dropdown .lx-lang-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    display: block;
    text-align: center;
    color: #111;
    text-decoration: none;
    transition: all 0.2s;
}
.lx-lang-dropdown .lx-lang-link:hover { background: rgba(201,162,39,0.1); color: var(--lx-gold); }
.lx-lang-dropdown .lx-lang-link.active { background: var(--lx-gold); color: #111; }
.lx-nav-header.scrolled .lx-lang-current {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.15);
    color: var(--lx-black);
}
.lx-nav-header.scrolled .lx-lang-current:hover,
.lx-nav-header.scrolled .lx-lang-switcher:hover .lx-lang-current {
    border-color: var(--lx-gold);
    color: var(--lx-gold);
}
body.lx-dark-mode .lx-lang-dropdown {
    background: #1f1f1f;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
body.lx-dark-mode .lx-lang-dropdown .lx-lang-link { color: #f5f5f5; }
body.lx-dark-mode .lx-lang-dropdown .lx-lang-link:hover { background: rgba(201,162,39,0.15); color: var(--lx-gold); }
body.lx-dark-mode .lx-lang-dropdown .lx-lang-link.active { background: var(--lx-gold); color: #111; }
body.lx-dark-mode .lx-lang-current { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
body.lx-dark-mode .lx-lang-current:hover,
body.lx-dark-mode .lx-lang-switcher:hover .lx-lang-current { border-color: var(--lx-gold); color: var(--lx-gold); }
body.lx-dark-mode .lx-nav-header.scrolled .lx-lang-current { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #bbb; }
body.lx-dark-mode .lx-nav-header.scrolled .lx-lang-current:hover,
body.lx-dark-mode .lx-nav-header.scrolled .lx-lang-switcher:hover .lx-lang-current { border-color: var(--lx-gold); color: var(--lx-gold); }
@media (max-width: 600px) {
    .lx-lang-current { font-size: 10px; padding: 3px 6px; }
}
@media (max-width: 400px) {
    .lx-lang-current { font-size: 9px; padding: 2px 5px; }
}

/* ====== ARABIC FONT ====== */
html[lang="ar"] body,
html[lang="ar"] .lx-section-subtitle,
html[lang="ar"] .lx-testimonial-text,
html[lang="ar"] .lx-service-content p,
html[lang="ar"] .lx-blog-body p,
html[lang="ar"] .lx-contact-form-wrap,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] .lx-prose,
html[lang="ar"] .woocommerce {
    font-family: 'Tajawal', sans-serif !important;
}
html[lang="ar"] .lx-section-title,
html[lang="ar"] .lx-hero-title,
html[lang="ar"] .lx-logo,
html[lang="ar"] .lx-page-title,
html[lang="ar"] .lx-post-title,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
    font-family: 'Changa', sans-serif !important;
    font-weight: 700;
}
html[lang="ar"] .lx-logo {
    font-family: 'Inter', sans-serif !important;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
html[lang="ar"] .lx-hero-title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
}
html[lang="ar"] .lx-nav-links a,
html[lang="ar"] .lx-mobile-nav-links a,
html[lang="ar"] .lx-mobile-nav > a,
html[lang="ar"] .lx-lang-current,
html[lang="ar"] .lx-lang-dropdown .lx-lang-link {
    font-family: 'Changa', sans-serif !important;
    font-weight: 600;
}
html[lang="ar"] .lx-nav-links a { font-size: 17px; }
html[lang="ar"] .lx-mobile-nav-links a,
html[lang="ar"] .lx-mobile-nav > a { font-size: 19px; }
html[lang="ar"] .lx-lang-current { font-size: 15px; padding: 6px 12px; }
html[lang="ar"] .lx-lang-dropdown .lx-lang-link { font-size: 14px; padding: 8px 14px; }

/* ====== DARK/LIGHT MODE ====== */
body.lx-dark-mode {
    --lx-white: #111111;
    --lx-black: #F5F5F5;
    --lx-gray-50: #1a1a1a;
    --lx-gray-100: #222;
    --lx-gray-200: #333;
    --lx-gray-300: #444;
    --lx-gray-400: #666;
    --lx-gray-500: #888;
    --lx-gray-600: #aaa;
    --lx-gray-700: #ccc;
    --lx-gray-800: #ddd;
    --lx-gray-900: #eee;
    background: #111;
    color: #F5F5F5;
}
body.lx-dark-mode .lx-section-gray { background: #1a1a1a; }
body.lx-dark-mode .lx-service-card,
body.lx-dark-mode .lx-product-card,
body.lx-dark-mode .lx-blog-card-h,
body.lx-dark-mode .lx-process-content { background: #1f1f1f; }
body.lx-dark-mode .lx-contact-form-wrap { background: #1a1a1a; }
body.lx-dark-mode .lx-form-row input,
body.lx-dark-mode .lx-form-row select,
body.lx-dark-mode .lx-form-row textarea { background: #222; border-color: #333; color: #f5f5f5; }
body.lx-dark-mode .lx-shop-tabs { background: #1f1f1f; border-color: #333; }
body.lx-dark-mode .lx-shop-tab { color: #f5f5f5; }
body.lx-dark-mode .lx-shop-tab:hover { background: rgba(255,255,255,0.1); color: #f5f5f5; }
body.lx-dark-mode .lx-shop-tab.active { background: var(--lx-gold); color: #111; }
body.lx-dark-mode .lx-nav-header { --lx-header-text: #f5f5f5; }
body.lx-dark-mode .lx-mobile-nav-open .lx-nav-header { background: #1a1a1a; }
body.lx-dark-mode .lx-nav-header.scrolled { background: rgba(17,17,17,0.6); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); }
body.lx-dark-mode .lx-logo { color: #f5f5f5; }
body.lx-dark-mode .lx-nav-header.scrolled .lx-logo,
body.lx-dark-mode .lx-mobile-nav-open .lx-logo { color: #f5f5f5; }
body.lx-dark-mode .lx-nav-links a { color: rgba(255,255,255,0.8); }
body.lx-dark-mode .lx-nav-links a:hover { color: #fff; }
body.lx-dark-mode .lx-nav-header.scrolled .lx-nav-links a { color: #bbb; }
body.lx-dark-mode .lx-nav-header.scrolled .lx-nav-links a:hover { color: var(--lx-gold); }
body.lx-dark-mode .lx-nav-actions a { color: rgba(255,255,255,0.8); }
body.lx-dark-mode .lx-nav-actions a:hover { color: var(--lx-gold); }
body.lx-dark-mode .lx-nav-header.scrolled .lx-nav-actions a { color: #bbb; }
body.lx-dark-mode .lx-mobile-nav-open .lx-nav-actions a { color: #f5f5f5; }
body.lx-dark-mode .lx-mobile-toggle span { background: #f5f5f5; }
body.lx-dark-mode .lx-nav-header.scrolled .lx-mobile-toggle span { background: #f5f5f5; }
body.lx-dark-mode .lx-mobile-nav-open .lx-mobile-toggle span { background: #f5f5f5; }
body.lx-dark-mode .lx-mobile-nav { background: #1a1a1a; }
body.lx-dark-mode .lx-mobile-nav a { color: #f5f5f5; }
body.lx-dark-mode .lx-mobile-nav a:hover { color: var(--lx-gold); }
body.lx-dark-mode .lx-filter-btn { border-color: #333; color: #aaa; }
body.lx-dark-mode .lx-filter-btn:hover,
body.lx-dark-mode .lx-filter-btn.active { background: #f5f5f5; color: #111; border-color: #f5f5f5; }
body.lx-dark-mode .lx-btn-outline { color: #f5f5f5; border-color: #f5f5f5; }
body.lx-dark-mode .lx-btn-outline:hover { background: #f5f5f5; color: #111; }
body.lx-dark-mode .lx-btn-primary { background: #f5f5f5; color: #111; }
body.lx-dark-mode .lx-btn-primary:hover { background: var(--lx-gold); color: #111; }
body.lx-dark-mode .lx-btn-gold { color: #111; }
body.lx-dark-mode .lx-btn-gold:hover { color: #fff; }
body.lx-dark-mode .lx-section-dark { background: #1a1a1a !important; color: #e0e0e0 !important; }
body.lx-dark-mode .lx-testimonial-card { border-color: rgba(255,255,255,0.06) !important; }
body.lx-dark-mode .lx-testimonial-text { color: rgba(255,255,255,0.8) !important; }
body.lx-dark-mode .lx-testimonial-author span { color: rgba(255,255,255,0.5) !important; }
body.lx-dark-mode .lx-testimonial-author strong { color: #f5f5f5 !important; }
body.lx-dark-mode .lx-star { color: rgba(255,255,255,0.1) !important; }
body.lx-dark-mode .lx-star.filled { color: var(--lx-gold) !important; }

/* ====== FULLSCREEN LIGHTBOX ====== */
.lx-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.lx-lightbox.open { display: flex; }
.lx-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--lx-radius-md);
}
.lx-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lx-lightbox-close:hover { opacity: 1; }
.lx-lightbox-prev, .lx-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 32px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: var(--lx-radius-sm);
    transition: background 0.3s;
}
.lx-lightbox-prev { left: 24px; }
.lx-lightbox-next { right: 24px; }
.lx-lightbox-prev:hover, .lx-lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ====== BOTTOM MOBILE NAV ====== */
.lx-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--lx-gray-200);
    padding: 8px 0;
    justify-content: space-around;
    align-items: center;
}
.lx-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    color: var(--lx-gray-500);
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 4px;
    min-width: 44px;
    min-height: 44px;
    flex: 1;
    max-width: 96px;
}
.lx-bottom-nav a:hover, .lx-bottom-nav a.active { color: var(--lx-gold); }
.lx-bottom-nav a svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
    .lx-bottom-nav { display: flex; }
    .lx-content-layout { grid-template-columns: 1fr; }
    .lx-hero-title { font-size: 36px; }
    body.home .lx-hero-label { position: relative; top: -60px; }
    body.home .lx-hero-title { position: relative; top: -50px; }
    body.home .lx-hero-subtitle { position: relative; top: 40px; }
    body.home .lx-hero-buttons { position: relative; top: 30px; }
    body.home .lx-hero-stats { position: relative; top: 50px; }

    .lx-hero-stat { flex: 1; }
    body { padding-bottom: 64px; }
    .lx-logo { text-align: left; }
    body .lx-whatsapp-float { bottom: 80px; }
    body .lx-chat-btn { bottom: 150px; }
    .lx-mobile-nav {
        background: rgba(17,17,17,0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
    }
    body.lx-dark-mode .lx-mobile-nav {
        background: rgba(0,0,0,0.7);
    }
    .lx-mobile-nav a, .lx-mobile-nav-links a {
        font-size: 28px;
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        display: block;
        color: var(--lx-gold);
    }
    .lx-mobile-nav a:hover, .lx-mobile-nav-links a:hover {
        color: #fff;
    }
    .lx-mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 600px) {
    .lx-logo { font-size: 22px; }
    .lx-nav-header { padding: 12px 0; }
    .lx-nav-actions { gap: 6px; }
    .lx-nav-actions a { font-size: 16px; }
    .lx-nav-actions #lxDarkToggle { font-size: 16px; padding: 2px; }
}
@media (max-width: 400px) {
    .lx-logo { font-size: 19px; }
    .lx-nav-actions { gap: 3px; }
    .lx-nav-actions a svg { width: 16px; height: 16px; }
    .lx-mobile-toggle { padding: 8px; min-width: 36px; min-height: 36px; }
    .lx-mobile-toggle span { width: 20px; }
}

/* ====== PAGE TRANSITIONS ====== */
.lx-page-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    background: var(--lx-black);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s var(--lx-transition);
}
.lx-page-transition.active {
    transform: scaleY(1);
    transform-origin: bottom;
}

/* ====== FREQUENTLY BOUGHT TOGETHER ====== */
.lx-fbt {
    margin-top: 48px;
    padding: 32px;
    background: var(--lx-gray-50);
    border-radius: var(--lx-radius-md);
}
.lx-fbt-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}
.lx-fbt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.lx-fbt-item {
    background: #fff;
    border-radius: var(--lx-radius-sm);
    padding: 12px;
    text-align: center;
    transition: all 0.3s;
}
body.lx-dark-mode .lx-fbt-item { background: #2a2a2a; }
.lx-fbt-item:hover { transform: translateY(-2px); box-shadow: var(--lx-shadow-md); }
.lx-fbt-item img { width: 100%; height: 120px; object-fit: cover; border-radius: 4px; margin-bottom: 8px; }
.lx-fbt-item h4 { font-size: 13px; margin-bottom: 4px; }
.lx-fbt-item .price { font-size: 14px; color: var(--lx-gold); font-weight: 600; }
.lx-fbt-total {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ====== LIVE CHAT ====== */
.lx-chat-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--lx-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201,162,39,0.3);
    cursor: pointer;
    transition: transform 0.3s;
    border: none;
    color: var(--lx-black);
}
.lx-chat-btn:hover { transform: scale(1.1); }
.lx-chat-box {
    display: none;
    position: fixed;
    bottom: 156px;
    right: 24px;
    width: 340px;
    max-width: calc(100vw - 48px);
    max-height: 480px;
    background: #fff;
    border-radius: var(--lx-radius-lg);
    box-shadow: var(--lx-shadow-lg);
    z-index: 10000;
    overflow: hidden;
    flex-direction: column;
}
.lx-chat-box.open { display: flex; }
.lx-chat-header {
    background: var(--lx-black);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lx-chat-header h4 { font-size: 15px; font-weight: 600; }
.lx-chat-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 20px; opacity: 0.7; }
.lx-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
}
.lx-chat-msg { padding: 10px 14px; border-radius: 12px; max-width: 80%; font-size: 14px; line-height: 1.5; }
.lx-chat-msg.bot { background: var(--lx-gray-50); align-self: flex-start; }
.lx-chat-msg.user { background: var(--lx-gold); color: var(--lx-black); align-self: flex-end; }
.lx-chat-input-wrap {
    display: flex;
    border-top: 1px solid var(--lx-gray-200);
    padding: 8px;
}
.lx-chat-input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    outline: none;
}
.lx-chat-send {
    background: var(--lx-gold);
    border: none;
    padding: 10px 16px;
    border-radius: var(--lx-radius-sm);
    cursor: pointer;
    color: var(--lx-black);
    font-weight: 600;
}

/* ====== SINGLE SERVICE ====== */
.lx-single-service {
    max-width: 860px;
    margin: 0 auto;
}
.lx-back-link {
    display: inline-block;
    color: var(--lx-gold);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    margin-bottom: 32px;
    transition: opacity 0.3s;
}
.lx-back-link:hover { opacity: 0.7; }
.lx-service-hero-img {
    border-radius: var(--lx-radius-md);
    overflow: hidden;
    margin-bottom: 48px;
}
.lx-service-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}
.lx-service-content {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}
.lx-service-content p { margin-bottom: 1.5em; }
body.lx-dark-mode .lx-service-content { color: #bbb; }
body.lx-dark-mode h1.product_title.entry-title { color: #fff !important; }
.lx-about .lx-section-title { font-family: 'Inter', sans-serif; }

/* ====== HERO VIDEO ====== */
.lx-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== SEARCH OVERLAY ====== */
.lx-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.lx-search-overlay.open { display: flex; }
.lx-search-overlay-content {
    width: 100%;
    max-width: 640px;
    padding: 24px;
    position: relative;
}
.lx-search-close {
    position: absolute;
    top: -60px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
}
.lx-search-input {
    width: 100%;
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    outline: none;
    transition: border-color 0.3s;
}
.lx-search-input::placeholder { color: rgba(255,255,255,0.3); }
.lx-search-input:focus { border-color: var(--lx-gold); }

/* ====== LOADING SPINNER ====== */
.lx-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lxSpin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
.lx-btn-primary .lx-spinner { border-color: rgba(255,255,255,0.3); border-top-color: #fff; }
.lx-btn-gold .lx-spinner { border-color: rgba(0,0,0,0.2); border-top-color: #111; }
@keyframes lxSpin { to { transform: rotate(360deg); } }

/* ====== BREADCRUMBS ====== */
.lx-breadcrumbs {
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #888;
    padding-top: 100px;
}
.lx-breadcrumb-link {
    color: #888;
    transition: color 0.3s;
}
.lx-breadcrumb-link:hover {
    color: var(--lx-gold);
}
.lx-breadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}
.lx-breadcrumb-current {
    color: var(--lx-black);
    font-weight: 500;
}
body.lx-dark-mode .lx-breadcrumb-current { color: #f5f5f5; }
body.lx-dark-mode .lx-breadcrumb-link { color: #aaa; }
body.lx-dark-mode .lx-breadcrumb-link:hover { color: var(--lx-gold); }
body.lx-dark-mode .lx-breadcrumb-sep { color: #555; }
@media (max-width: 768px) {
    .lx-breadcrumbs { padding: 80px 16px 8px; font-size: 12px; }
}

/* ====== VERY SMALL SCREENS ====== */
@media (max-width: 360px) {
    .lx-container { padding: 0 16px; }
    .lx-hero-stat-number { font-size: 22px; }
    .lx-hero-stats { gap: 12px; margin-top: 24px; }
    .lx-hero-title { font-size: 26px !important; }
    .lx-section { padding: 40px 0; }
    .lx-section-title { font-size: 26px; }
    .lx-service-card { padding: 28px 20px; }
    .lx-testimonial-card { padding: 28px 20px; }
    .lx-contact-form-wrap { padding: 20px; }
    .lx-footer { padding: 48px 0 24px; }
    .lx-mobile-nav a { font-size: 26px; }
    .lx-mobile-nav { padding: 100px 24px 24px; }
    .lx-bottom-nav a { font-size: 9px; padding: 6px 2px; max-width: 80px; }
    .lx-bottom-nav a svg { width: 18px; height: 18px; }
    .lx-chat-box { right: 12px; max-width: calc(100vw - 24px); bottom: 140px; }
    .lx-chat-btn { bottom: 150px; }
    .lx-whatsapp-float { bottom: 80px; }
    .lx-cookie-banner { left: 12px; right: 12px; padding: 16px 20px; }
}
