:root {
      --cream:    #F0E3D3;
      --blush:    #DDBEA9;
      --terra:    #C58C6E;
      --sage:     #B8B7A3;
      --moss:     #6B705C;
      --moss-dark:#4a4e3f;
      --white:    #FDFAF7;
      --text:     #3a3228;
      --text-muted:#8a7f72;
      --border:   #e8ddd3;
      --shadow:   0 4px 28px rgba(107,112,92,0.12);
      --radius:   14px;
      --radius-sm:8px;
      --font:     'Jost', sans-serif;
      --font-display:'Playfair Display', serif;
      --font-script:'Sacramento', cursive;
      --transition: all 0.3s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 28px; border-radius: 40px;
      font-family: var(--font); font-weight: 600; font-size: 13.5px;
      cursor: pointer; border: none; transition: var(--transition);
    }
    .btn-primary { background: var(--moss); color: var(--cream); }
    .btn-primary:hover { background: var(--moss-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107,112,92,0.3); }
    .btn-outline { background: transparent; border: 2px solid var(--moss); color: var(--moss); }
    .btn-outline:hover { background: var(--moss); color: var(--cream); }

    /* PROMO STRIP */
    .promo-strip {
      background: var(--moss-dark); color: var(--sage); text-align: center;
      padding: 9px; font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    }
    .promo-strip span { color: var(--cream); font-weight: 700; }

    /* TOP BAR */
    .top-bar { background: var(--cream); color: var(--text-muted); font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid var(--border); }
    .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
    .top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
    .top-bar a { color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
    .top-bar a:hover { color: var(--moss); }

    /* HEADER */
    .header { background: var(--white); box-shadow: 0 2px 16px rgba(107,112,92,0.08); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
    .header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 12px 0; }

    /* LOGO */
    .logo-wrap { display: flex; align-items: center; gap: 10px; }
    .logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
    .logo-script { font-family: var(--font-script); font-size: 40px; color: var(--moss); line-height: 1; }
    .logo-tagline { font-family: var(--font); font-size: 9px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }

    .search-bar { display: flex; border: 1.5px solid var(--border); border-radius: 40px; overflow: hidden; background: var(--cream); transition: var(--transition); }
    .search-bar:focus-within { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(107,112,92,0.1); }
    .search-bar select { padding: 0 14px; border: none; border-right: 1px solid var(--border); font-family: var(--font); font-size: 12.5px; background: transparent; outline: none; cursor: pointer; color: var(--text); }
    .search-bar input { flex: 1; padding: 10px 16px; border: none; font-family: var(--font); font-size: 13.5px; outline: none; background: transparent; color: var(--text); }
    .search-bar input::placeholder { color: var(--text-muted); }
    .search-bar button { background: var(--moss); border: none; color: var(--cream); padding: 0 22px; cursor: pointer; font-size: 15px; transition: var(--transition); }
    .search-bar button:hover { background: var(--moss-dark); }

    .header-actions { display: flex; gap: 20px; align-items: center; }
    .header-action { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text); cursor: pointer; position: relative; transition: var(--transition); }
    .header-action:hover { color: var(--moss); }
    .header-action i { font-size: 20px; margin-bottom: 2px; }
    .hbadge { position: absolute; top: -5px; right: -10px; background: var(--terra); color: white; font-size: 10px; font-weight: 700; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }



 /* IMPACT BAR */
.impact-bar{
    background: #c98f6c;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.impact-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.impact-item{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

    .impact-bar{
        padding: 10px 0;
        overflow: hidden;
    }

    .impact-inner{
        width: max-content;
        display: flex;
        align-items: center;
        gap: 35px;

        /* RIGHT TO LEFT */
        animation: impactScroll 19s linear infinite;
    }

    .impact-item{
        font-size: 14px;
        white-space: nowrap;
    }

    @keyframes impactScroll{
        from{
            transform: translateX(100%);
        }
        to{
            transform: translateX(-100%);
        }
    }
}

    /* HERO */
    .hero-section { display: grid; grid-template-columns: 220px 1fr 200px; background: var(--cream); }
    .hero-sidebar { background: var(--white); border-right: 1px solid var(--border); padding: 10px 0; }
    .hero-sidebar li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--text); transition: var(--transition); border-left: 3px solid transparent; }
    .hero-sidebar li a:hover { background: rgba(240,227,211,0.6); color: var(--moss); border-left-color: var(--moss); }
    .hero-sidebar li a i { width: 16px; color: var(--terra); font-size: 13px; }

    .hero-slider { position: relative; overflow: hidden; min-height: 400px; background: linear-gradient(135deg, #3a3228 0%, #4a4e3f 60%, #6b705c 100%); }
    .slide { display: none; position: absolute; inset: 0; align-items: center; padding: 40px 52px; }
    .slide.active { display: flex; animation: fadeSlide 0.6s ease; }
    @keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
    .slide-content { color: var(--cream); max-width: 55%; z-index: 2; }
    .slide-tag { display: inline-block; background: var(--terra); color: var(--cream); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.2px; }
    .slide-title { font-family: var(--font-display); font-size: 36px; line-height: 1.2; margin-bottom: 12px; font-weight: 700; }
    .slide-sub { font-size: 13.5px; color: var(--blush); margin-bottom: 20px; line-height: 1.7; }
    .slide-price { font-size: 30px; font-weight: 700; color: var(--cream); margin-bottom: 22px; }
    .slide-price del { font-size: 18px; color: var(--sage); font-weight: 400; margin-left: 10px; }
    .slide-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(240,227,211,0.15); border: 1px solid rgba(240,227,211,0.3); color: var(--cream); font-size: 12px; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
    .slide-img { position: absolute; right: 20px; bottom: 0; height: 86%; object-fit: contain; z-index: 1; filter: drop-shadow(0 12px 36px rgba(0,0,0,0.35)); animation: float 3.5s ease-in-out infinite; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    .slide::before { content:''; position:absolute; width:320px; height:320px; border-radius:50%; background:rgba(197,140,110,0.12); right:-60px; top:-80px; z-index:0; }
    .slide::after { content:''; position:absolute; width:180px; height:180px; border-radius:50%; background:rgba(240,227,211,0.06); right:160px; bottom:-40px; z-index:0; }

    .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: var(--transition); }
    .slider-btn:hover { background: var(--terra); border-color: var(--terra); }
    .slider-btn.prev { left: 14px; }
    .slider-btn.next { right: 14px; }
    .slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
    .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
    .dot.active { background: var(--cream); width: 22px; border-radius: 4px; }

    .hero-banners { display: flex; flex-direction: column; }
    .hero-banners a { flex: 1; overflow: hidden; }
    .hero-banners img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .hero-banners a:hover img { transform: scale(1.05); }

    /* FLASH BAR */
    .flash-bar { background: linear-gradient(90deg, var(--moss-dark), var(--moss)); color: var(--cream); padding: 13px 0; }
    .flash-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .flash-label { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
    .timer { display: flex; gap: 8px; align-items: center; }
    .tunit { background: rgba(0,0,0,0.18); border-radius: 8px; padding: 6px 14px; text-align: center; min-width: 54px; }
    .tnum { font-size: 22px; font-weight: 700; line-height: 1; display: block; font-family: var(--font-display); }
    .tlbl { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
    .tsep { font-size: 24px; font-weight: 700; opacity: 0.6; }

    /* SERVICES */
    .services-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
    .services-grid { display: grid; grid-template-columns: repeat(4,1fr); }
    .service-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid var(--border); }
    .service-item:last-child { border-right: none; }
    .service-icon { width: 50px; height: 50px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--terra); flex-shrink: 0; }
    .service-text h4 { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
    .service-text p { font-size: 12px; color: var(--text-muted); }

    /* STATS */
    .stats-bar { background: var(--cream); padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 20px; }
    .stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--moss); line-height: 1; }
    .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

    /* SECTION */
    .section { padding: 44px 0; }
    .section-alt { background: rgba(240,227,211,0.25); }
    .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
    .section-title { font-family: var(--font-display); font-size: 27px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
    .section-sub { font-size: 13px; color: var(--terra); font-weight: 600; margin-left: 8px; }
    .see-all { font-size: 12.5px; font-weight: 600; color: var(--moss); display: flex; align-items: center; gap: 5px; padding: 6px 16px; border: 1.5px solid var(--moss); border-radius: 40px; transition: var(--transition); }
    .see-all:hover { background: var(--moss); color: var(--cream); }

    /* CATEGORIES */
    .cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 16px; }
    .cat-card {
      background: var(--white); border-radius: var(--radius); padding: 22px 16px;
      text-align: center; border: 1.5px solid var(--border); transition: var(--transition);
      cursor: pointer; position: relative; overflow: hidden;
    }
    .cat-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--cream), rgba(197,140,110,0.08));
      opacity: 0; transition: var(--transition);
    }
    .cat-card:hover { border-color: var(--terra); transform: translateY(-5px); box-shadow: var(--shadow); }
    .cat-card:hover::before { opacity: 1; }
    .cat-icon { width: 60px; height: 60px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 26px; color: var(--terra); transition: var(--transition); position: relative; z-index: 1; }
    .cat-card:hover .cat-icon { background: var(--terra); color: var(--cream); transform: scale(1.1); }
    .cat-card .cname { font-size: 13px; font-weight: 600; color: var(--text); position: relative; z-index: 1; line-height: 1.4; }
    .cat-card .csub { font-size: 11px; color: var(--text-muted); margin-top: 3px; position: relative; z-index: 1; }

    /* PRODUCT CARDS */
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
    .products-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--terra) var(--cream); }
    .products-row .pcard { min-width: 196px; flex-shrink: 0; }

    .pcard { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: var(--transition); position: relative; }
    .pcard:hover { box-shadow: 0 10px 36px rgba(107,112,92,0.14); transform: translateY(-4px); border-color: var(--terra); }
    .pimg-wrap { position: relative; overflow: hidden; background: var(--cream); height: 188px; display: flex; align-items: center; justify-content: center; }
    .pimg-wrap img { max-height: 158px; object-fit: contain; transition: transform 0.4s ease; }
    .pcard:hover .pimg-wrap img { transform: scale(1.07); }
    .pbadge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; color: white; }
    .pbadge-eco { background: var(--moss); }
    .pbadge-sale { background: var(--terra); }
    .pbadge-new { background: var(--blush); color: var(--text); }
    .eco-cert { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .eco-cert i { font-size: 14px; color: var(--moss); }
    .pactions {
      position: absolute; bottom: 10px; left: 0; width: 100%;
      display: flex; justify-content: center; align-items: center; gap: 6px;
      opacity: 0; transform: translateY(10px); transition: all 0.3s ease; white-space: nowrap;
    }
    .pcard:hover .pactions { opacity: 1; transform: translateY(0); }
    .pactions button { height: 34px; border: none; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: var(--transition); border-radius: 20px; font-family: var(--font); font-weight: 600; }
    .btn-wish { width: 34px; background: white; color: var(--terra); box-shadow: 0 2px 8px rgba(0,0,0,0.1); border-radius: 50% !important; }
    .btn-cart { background: var(--moss); color: var(--cream); padding: 0 14px; gap: 5px; font-size: 12px; }
    .btn-view { width: 34px; background: white; color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.1); border-radius: 50% !important; }
    .pactions button:hover { transform: scale(1.1); }
    .pinfo { padding: 14px; }
    .pcat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .pname { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .prating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
    .stars { color: var(--terra); font-size: 12px; }
    .rcount { font-size: 11px; color: var(--text-muted); }
    .pprice { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .pnew { font-size: 17px; font-weight: 700; color: var(--moss); }
    .pold { font-size: 13px; color: var(--sage); text-decoration: line-through; }
    .poff { font-size: 11px; font-weight: 700; color: var(--terra); }

    /* VENDOR */
    .vendor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
    .vendor-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; transition: var(--transition); }
    .vendor-card:hover { border-color: var(--terra); transform: translateY(-4px); box-shadow: var(--shadow); }
    .vendor-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 3px solid var(--cream); }
    .vendor-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 4px; }
    .vendor-tag { font-size: 11px; color: var(--moss); font-weight: 600; background: rgba(107,112,92,0.1); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 8px; }
    .vendor-stats { font-size: 12px; color: var(--text-muted); }

    /* WHY */
    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .why-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: var(--transition); }
    .why-card:hover { border-color: var(--terra); transform: translateY(-4px); box-shadow: var(--shadow); }
    .why-icon { width: 64px; height: 64px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--terra); margin: 0 auto 16px; }
    .why-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

    /* BANNERS */
    .bgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .bgrid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .bcard { border-radius: var(--radius); overflow: hidden; position: relative; }
    .bcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
    .bcard:hover img { transform: scale(1.04); }
    .bcard-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(58,50,40,0.7) 0%, transparent 65%); display: flex; align-items: center; padding: 24px; }
    .bcard-text { color: var(--cream); }
    .bcard-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
    .bcard-text p { font-size: 12px; opacity: 0.8; margin-bottom: 12px; }

    /* VENDOR CTA */
    .vendor-cta { background: linear-gradient(135deg, var(--cream), rgba(221,190,169,0.4)); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; align-items: center; gap: 32px; margin-top: 20px; }
    .vendor-cta-icon { width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--terra); flex-shrink: 0; box-shadow: var(--shadow); }
    .vendor-cta-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .vendor-cta-text p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

    /* TABS */
    .tab-bar { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 2px solid var(--border); overflow-x: auto; scrollbar-width: none; }
    .tab-btn { padding: 9px 20px; border: none; background: none; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: var(--transition); }
    .tab-btn.active, .tab-btn:hover { color: var(--moss); border-bottom-color: var(--moss); }

    /* TAGS */
    .tags-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
    .tag { padding: 7px 18px; border: 1.5px solid var(--border); border-radius: 40px; font-size: 12px; font-weight: 600; color: var(--text); transition: var(--transition); background: var(--white); }
    .tag:hover { background: var(--moss); color: var(--cream); border-color: var(--moss); }

    /* NEWSLETTER */
    .newsletter { background: linear-gradient(135deg, var(--moss-dark) 0%, var(--moss) 100%); color: var(--cream); padding: 56px 0; position: relative; overflow: hidden; }
    .newsletter::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; background:rgba(197,140,110,0.12); right:-80px; top:-100px; }
    .newsletter::after { content:''; position:absolute; width:200px; height:200px; border-radius:50%; background:rgba(240,227,211,0.07); left:60px; bottom:-60px; }
    .nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
    .nl-text h2 { font-family: var(--font-display); font-size: 30px; margin-bottom: 8px; }
    .nl-text p { color: var(--blush); font-size: 14px; }
    .nl-form { display: flex; max-width: 480px; flex: 1; border-radius: 40px; overflow: hidden; border: 2px solid rgba(240,227,211,0.3); }
    .nl-form input { flex: 1; padding: 14px 22px; border: none; font-family: var(--font); font-size: 14px; outline: none; background: rgba(255,255,255,0.07); color: var(--cream); }
    .nl-form input::placeholder { color: var(--sage); }
    .nl-form button { background: var(--terra); color: var(--cream); border: none; padding: 14px 28px; font-family: var(--font); font-weight: 700; font-size: 14px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
    .nl-form button:hover { background: #b07558; }

    /* FOOTER */
    .footer { background: var(--moss-dark); color: var(--sage); padding: 52px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .fbrand-logo { font-family: var(--font-script); font-size: 38px; color: var(--cream); margin-bottom: 12px; line-height: 1; }
    .fbrand p { font-size: 13px; color: var(--sage); line-height: 1.8; margin-bottom: 18px; }
    .social-links { display: flex; gap: 10px; }
    .social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--sage); transition: var(--transition); }
    .social-links a:hover { background: var(--terra); color: white; }
    .footer h4 { color: var(--cream); font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.3px; }
    .footer ul li { margin-bottom: 10px; }
    .footer ul li a { font-size: 13px; color: var(--sage); transition: var(--transition); }
    .footer ul li a:hover { color: var(--cream); padding-left: 4px; }
    .contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--sage); margin-bottom: 12px; }
    .contact-list li i { color: var(--blush); margin-top: 3px; width: 16px; }
    .app-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
    .app-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 10px 14px; color: white; transition: var(--transition); }
    .app-btn:hover { background: var(--terra); border-color: var(--terra); }
    .app-btn i { font-size: 22px; }
    .app-btn-text { font-size: 11px; line-height: 1.3; color: var(--sage); }
    .app-btn-text strong { font-size: 14px; display: block; color: var(--cream); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 12px; color: var(--sage); opacity: 0.6; }
    .pay-icons { display: flex; gap: 8px; align-items: center; }
    .pay-icons img { height: 24px; filter: grayscale(1) brightness(1.8); opacity: 0.5; }

    /* COOKIE */
    .cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 3px solid var(--terra); box-shadow: 0 -4px 24px rgba(0,0,0,0.1); padding: 14px 24px; display: flex; align-items: center; justify-content: center; gap: 20px; z-index: 9999; flex-wrap: wrap; }
    .cookie-bar p { font-size: 13px; color: var(--text); }
    .cookie-bar p a { color: var(--moss); }
    #cookieClose { background: var(--moss); color: var(--cream); border: none; padding: 9px 22px; border-radius: 40px; font-family: var(--font); font-weight: 700; cursor: pointer; font-size: 13px; }

    /* MOBILE */
    .mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--text); cursor: pointer; }
    .mobile-bottom-bar { display: none; }

    ::-webkit-scrollbar { width: 5px; height: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 3px; }

    @media(max-width:1100px){
      .hero-section{grid-template-columns:180px 1fr;}
      .hero-banners{display:none;}
      .footer-grid{grid-template-columns:1fr 1fr 1fr;}
    }
    @media(max-width:880px){
      .hero-section{grid-template-columns:1fr;}
      .hero-sidebar{display:none;}
      .hero-slider{min-height:300px;}
      .services-grid{grid-template-columns:1fr 1fr;}
      .why-grid{grid-template-columns:1fr 1fr;}
      .stats-grid{grid-template-columns:repeat(2,1fr);}
      .bgrid3{grid-template-columns:1fr 1fr;}
      .footer-grid{grid-template-columns:1fr 1fr;}
      .cat-grid{grid-template-columns:repeat(auto-fill,minmax(130px,1fr));}
    }
    @media(max-width:640px){
      .header-inner{grid-template-columns:auto 1fr auto;}
      .header-actions{gap:12px;}
      .header-action span:not(.hbadge){display:none;}
      .nav-menu{display:none;}
      .nav-right{display:none;}
      .mobile-menu-btn{display:block;}
      .footer-grid{grid-template-columns:1fr;}
      .nl-inner{flex-direction:column;text-align:center;}
      .nl-form{width:100%;}
      .bgrid2,.bgrid3{grid-template-columns:1fr;}
      .slide-title{font-size:22px;}
      .slide-img{opacity:0.3;height:100%;}
      .top-bar-left{display:none;}
      .service-item{border-right:none;border-bottom:1px solid var(--border);}
      .services-grid{grid-template-columns:1fr 1fr;}
      .why-grid{grid-template-columns:1fr;}
      .stats-grid{grid-template-columns:1fr 1fr;}
      .vendor-cta{flex-direction:column;text-align:center;}
      .impact-item:nth-child(n+3){display:none;}
      .mobile-bottom-bar{
        display:flex; position:fixed; bottom:0; left:0; right:0;
        background:var(--white); border-top:1px solid var(--border);
        z-index:900; padding:8px 0 12px;
        justify-content:space-around; box-shadow:0 -4px 16px rgba(0,0,0,0.08);
      }
      .mob-nav-item{display:flex;flex-direction:column;align-items:center;gap:3px;font-size:10px;color:var(--text-muted);cursor:pointer;}
      .mob-nav-item i{font-size:20px;}
      .mob-nav-item.active{color:var(--moss);}
      body{padding-bottom:70px;}
      .cookie-bar{bottom:70px;}
    }