:root {
    --bs-orange: rgba(252, 163, 17);
    /* Reference furniture palette */
    --bg: #fdf9f6;
    --white: #ffffff;

    --dark: #1a1a1a;
    --muted: #3a3a3a;

    --accent: var(--bs-orange);
    /* orange strip + highlights */
    --border: #ece5df;

    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

a,
a:hover {
    text-decoration: none;
    color: var(--bs-orange);
}

/* HEADER BASE */
.lc-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

/* TOP BAR */
.lc-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
}

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

.lc-logo {
    height: 60px;
}

.lc-location {
    font-weight: 500;
    cursor: pointer;
}

/* SEARCH */
.lc-search {
    flex: 1;
    position: relative;
}

.lc-search input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.lc-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

/* RIGHT ICONS */
.lc-right {
    display: flex;
    gap: 16px;
    font-size: 20px;
}

/* CATEGORIES */
.lc-categories {
    display: flex;
    gap: 24px;
    padding: 10px 100px;
    overflow-x: auto;
}

.lc-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.lc-cat.active {
    color: var(--purple);
    border-bottom: 2px solid var(--purple);
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .lc-header {
        background: var(--purple-light);
    }

    .lc-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .lc-search {
        width: 100%;
    }

    .lc-right {
        position: absolute;
        top: 14px;
        right: 16px;
    }

    .lc-categories {
        background: var(--purple-light);
        gap: 18px;
        padding: 12px 16px;
    }
}

/* //home */
/* HERO */
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--dark);
}

/* ---------------- HERO ---------------- */
.home-hero {
    padding: 100px 0;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    margin: 24px 0;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    text-decoration: none;
}

.hero-img {
    width: 100%;
    border-radius: 18px;
}

/* ---------------- SECTION TITLES ---------------- */
.section-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* ---------------- CATEGORY ---------------- */
.home-category {
    padding: 50px 0;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cat-item {
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: var(--white);
}

/* ---------------- FEATURED ---------------- */
.home-featured {
    padding: 60px 0;
}

.feature-card {
    position: relative;
}

.feature-card img {
    width: 100%;
    border-radius: 18px;
}

.feature-text {
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-family: var(--font-head);
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 14px;
}

/* ---------------- ARRIVAL STRIP ---------------- */
.home-arrivals {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 26px;
    margin: 70px 0;
    font-weight: 500;
}

/* ---------------- PRODUCTS ---------------- */
.home-products {
    padding: 40px 0;
}

.product-card {
    background: var(--white);
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 14px;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 14px;
}

.product-card p {
    font-size: 13px;
    color: var(--muted);
}

/* ---------------- BEST SELLING ---------------- */
.home-best {
    padding: 60px 0;
}

.best-card img {
    width: 100%;
    border-radius: 14px;
}

.best-card h5 {
    font-size: 14px;
    margin-top: 10px;
}

/* ---------------- COLLECTION ---------------- */
.home-collection {
    padding: 90px 0;
}

.home-collection h2 {
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.2;
}

.home-collection p {
    font-size: 14px;
    color: var(--muted);
}

/* ---------------- BLOG ---------------- */
.home-blog {
    padding: 70px 0;
}

.blog-card {
    background: var(--white);
    padding: 24px;
}

.blog-card h4 {
    font-size: 14px;
    line-height: 1.6;
}

/* ---------------- BRANDS ---------------- */
.home-brands {
    padding: 70px 0;
}

.brand-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ---------------- TESTIMONIALS ---------------- */
.home-testimonials {
    padding: 90px 0;
    text-align: center;
}

.testimonial-box {
    max-width: 680px;
    margin: 40px auto;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.testimonial-user {
    margin-top: 20px;
    font-size: 14px;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.testimonial-stats h4 {
    font-family: var(--font-head);
    font-size: 28px;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-family: var(--font-head);
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

/* ---------------- MOBILE ---------------- */
@media(max-width:768px) {
    .hero-title {
        font-size: 38px;
    }

    .home-hero,
    .home-collection {
        padding: 60px 0;
    }

    .category-list {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
    font-size: 13px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    height: 150px;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 260px;
    line-height: 1.6;
    color: var(--muted);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--bs-orange);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: var(--muted);
}

.footer-payments img {
    height: 22px;
    margin-left: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* OVERLAY */
.lc-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9999;
}

.lc-menu-overlay.active {
    display: block;
}

/* SIDE MENU */
.lc-side-menu {
    width: 300px;
    max-width: 80%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: -100%;
    top: 0;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
}

.lc-menu-overlay.active .lc-side-menu {
    left: 0;
}

/* HEADER */
.lc-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.lc-menu-header img {
    height: 60px;
}

.lc-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* LINKS */
.lc-menu-links {
    padding: 20px;
    list-style: none;
}

.lc-menu-links li {
    margin-bottom: 18px;
}

.lc-menu-links a {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.btn-theme,
.btn-theme:hover {
    --bs-btn-bg: var(--bs-orange);
    --bs-btn-border-color: var(--bs-orange);
    background-color: var(--bs-orange);
    border-color: var(--bs-orange);
}

.text-theme {
    color: var(--bs-orange);
}

.lcx-menu-links a:hover {
    color: var(--bs-orange);
}
.lc-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding-top: 60px;
    font-size: 14px;
}

.lc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.lc-footer-col h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: rgba(252, 163, 17);
}

.lc-footer-col a {
    display: block;
    color: #333;
    margin-bottom: 8px;
    text-decoration: none;
}

.lc-footer-col a:hover {
    color: rgba(252, 163, 17);
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.brand p {
    color: #444;
    line-height: 1.6;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(252, 163, 17);
    color: #000000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgb(0, 0, 0);
}

.lc-footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .lc-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .lc-footer-top {
        grid-template-columns: 1fr;
    }
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* WhatsApp */
.fab-btn.whatsapp {
    background: #25D366;
}

/* Call */
.fab-btn.call {
    background: #e91e63;
}

.fab-btn:hover {
    transform: scale(1.08);
}
