:root{
  --lux-bg:#fcf8f1;
  --lux-bg-2:#fffdf9;
  --lux-panel:#ffffff;
  --lux-cream:#f7f0e5;
  --lux-line:#eadfce;
  --lux-text:#1e2430;
  --lux-text-soft:#6b7280;
  --lux-gold:#b8860b;
  --lux-gold-2:#d4a017;
  --lux-gold-3:#8f6a08;
  --lux-navy:#1f2f46;
  --lux-green:#12966d;
  --lux-blue:#3157d5;
  --lux-orange:#c7800a;
  --lux-shadow:0 18px 45px rgba(46,34,16,.10);
  --lux-shadow-lg:0 30px 70px rgba(46,34,16,.14);
  --lux-radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.lux-body{
  margin:0;
  font-family:Inter,"Segoe UI",system-ui,sans-serif;
  color:var(--lux-text);
  background:
    radial-gradient(circle at top left, rgba(212,160,23,.10), transparent 28%),
    linear-gradient(180deg,var(--lux-bg) 0%, #fffdf9 45%, #ffffff 100%);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
.lux-container{width:min(1220px,92%);margin-inline:auto}

/* topbar */
.lux-topbar{
  position:sticky;top:0;z-index:1000;
  background:rgba(252,248,241,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(184,134,11,.08);
  transition:.25s ease;
}
.lux-topbar.scrolled{box-shadow:0 10px 30px rgba(46,34,16,.08)}
.lux-nav-shell{display:flex;align-items:center;justify-content:space-between;gap:18px;min-height:84px}
.lux-brand{display:flex;align-items:center;gap:14px;min-width:0}
.lux-brand-image,.lux-brand-badge{
  width:52px;height:52px;border-radius:18px;object-fit:cover;
  display:grid;place-items:center;font-weight:900;font-size:18px;
  background:linear-gradient(135deg,#d4a017,#b8860b 58%,#8f6a08);
  color:#fff;box-shadow:0 16px 36px rgba(184,134,11,.28)
}
.lux-brand-text{display:flex;align-items:center;gap:3px;font-family:"Plus Jakarta Sans",Inter,sans-serif;font-size:28px;letter-spacing:-1px;line-height:1}
.lux-brand-text strong{font-weight:800;color:var(--lux-text)}
.lux-brand-text em{font-style:normal;font-weight:800;color:var(--lux-gold)}

.lux-nav{display:flex;align-items:center;gap:8px}
.lux-nav>a,.lux-lang-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 14px;border-radius:999px;
  color:#374151;font-weight:700;border:1px solid transparent;background:transparent;
  transition:.22s ease;
}
.lux-nav>a:hover,.lux-lang-wrap:hover .lux-lang-btn{
  background:#fff;border-color:#efe5d7;box-shadow:0 10px 24px rgba(46,34,16,.08);color:var(--lux-gold-3)
}
.lux-add-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 22px;border-radius:999px;font-weight:800;color:#fff;
  background:linear-gradient(135deg,#c99513,#b8860b 55%,#8f6a08);
  box-shadow:0 18px 36px rgba(184,134,11,.24)
}
.lux-add-btn:hover{transform:translateY(-1px)}
.lux-menu-btn{
  display:none;width:48px;height:48px;border-radius:16px;border:1px solid #eadfce;background:#fff;
  color:var(--lux-gold-3);font-size:26px;box-shadow:0 10px 24px rgba(46,34,16,.08)
}
.lux-lang-wrap{position:relative}
.lux-lang-menu{
  position:absolute;top:50px;right:0;min-width:170px;padding:8px;background:#fff;border:1px solid #efe5d7;border-radius:18px;
  box-shadow:var(--lux-shadow);opacity:0;visibility:hidden;transform:translateY(8px);transition:.22s ease
}
.lux-lang-wrap:hover .lux-lang-menu{opacity:1;visibility:visible;transform:translateY(0)}
.lux-lang-menu a{display:block;padding:11px 12px;border-radius:12px;font-weight:700;color:#374151}
.lux-lang-menu a:hover{background:#fbf6ed;color:var(--lux-gold-3)}

/* hero */
.lux-hero{padding:48px 0 34px}
.lux-hero-grid{
  display:grid;grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);gap:36px;align-items:stretch
}
.lux-hero-copy,
.lux-showcase-card{
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.98));
  border:1px solid rgba(234,223,206,.95);
  box-shadow:var(--lux-shadow-lg);
  border-radius:36px;
}
.lux-hero-copy{padding:42px 40px}
.lux-hero-chip,.lux-section-chip{
  display:inline-flex;align-items:center;gap:8px;padding:10px 15px;border-radius:999px;
  background:#fbf4e3;color:var(--lux-gold-3);font-size:13px;font-weight:800;border:1px solid #efdfbf
}
.lux-hero-copy h1{
  margin:20px 0 16px;font-family:"Plus Jakarta Sans",Inter,sans-serif;font-size:clamp(40px,5vw,70px);
  letter-spacing:-2.6px;line-height:1.03;color:var(--lux-text)
}
.lux-hero-copy p{margin:0;color:var(--lux-text-soft);font-size:17px;line-height:1.85;max-width:720px}
.lux-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.lux-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  border:none;border-radius:999px;padding:15px 22px;font-weight:800;cursor:pointer;transition:.22s ease
}
.lux-btn:hover{transform:translateY(-2px)}
.lux-btn-primary{
  color:#fff;background:linear-gradient(135deg,#c99513,#b8860b 58%,#8f6a08);
  box-shadow:0 18px 36px rgba(184,134,11,.25)
}
.lux-btn-soft{
  color:var(--lux-text);background:#fff;border:1px solid #ebdfcf;box-shadow:0 12px 28px rgba(46,34,16,.08)
}
.lux-full-btn{width:100%}
.lux-feature-points{display:flex;flex-wrap:wrap;gap:11px;margin-top:28px}
.lux-feature-points span{
  display:inline-flex;align-items:center;gap:8px;padding:11px 14px;border-radius:999px;
  background:#fff;border:1px solid #efe5d7;color:#475467;font-weight:700;box-shadow:0 10px 22px rgba(46,34,16,.05)
}
.lux-showcase-card{padding:26px;display:flex;flex-direction:column;gap:18px;height:100%}
.lux-showcase-head{display:flex;justify-content:space-between;align-items:center;gap:14px}
.lux-showcase-label{font-weight:800;color:var(--lux-text)}
.lux-showcase-status{
  display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;
  background:#f4fbf8;color:var(--lux-green);font-weight:800;border:1px solid #d8efe7
}
.lux-search-demo{
  background:#fcf7ef;border:1px solid #f0e3cb;border-radius:22px;padding:18px 18px;font-size:17px;font-weight:800;color:#433119
}
.lux-showcase-list{display:flex;flex-direction:column;gap:14px}
.lux-show-item{display:flex;gap:14px;align-items:flex-start;padding:16px;border-radius:22px;background:#fff;border:1px solid #f1e7db;box-shadow:0 10px 25px rgba(46,34,16,.05)}
.lux-show-item b{display:block;color:var(--lux-text);margin-bottom:5px}
.lux-show-item small{display:block;color:var(--lux-text-soft);line-height:1.5}
.lux-icon{width:48px;height:48px;border-radius:16px;display:grid;place-items:center;font-size:20px;color:#fff;flex:0 0 auto}
.lux-icon.gold{background:linear-gradient(135deg,#d4a017,#b8860b)}
.lux-icon.green{background:linear-gradient(135deg,#27b07e,#12966d)}
.lux-icon.blue{background:linear-gradient(135deg,#5477ea,#3157d5)}
.lux-stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:auto}
.lux-stat-box{padding:18px;border-radius:24px;background:#fbf7f0;border:1px solid #efe3d5}
.lux-stat-box strong{display:block;font-family:"Plus Jakarta Sans",Inter,sans-serif;font-size:34px;line-height:1;color:var(--lux-gold-3);margin-bottom:6px}
.lux-stat-box span{color:#5f6671;font-weight:700}

/* main sections */
.lux-main{display:block}
.lux-search-wrap{padding:14px 0 8px}
.lux-search-panel{
  background:#fff;border:1px solid #ebdfcf;border-radius:34px;padding:28px;box-shadow:var(--lux-shadow-lg)
}
.lux-panel-top{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:20px}
.lux-panel-top h2{margin:10px 0 8px;font-family:"Plus Jakarta Sans",Inter,sans-serif;font-size:36px;line-height:1.05;letter-spacing:-1.4px}
.lux-panel-top p{margin:0;color:var(--lux-text-soft);line-height:1.7;max-width:700px}
.lux-near-btn,.lux-voice-btn{
  display:inline-flex;align-items:center;gap:9px;border:none;cursor:pointer;font-weight:800
}
.lux-near-btn{
  padding:14px 18px;border-radius:999px;color:#fff;background:linear-gradient(135deg,#c99513,#b8860b 58%,#8f6a08);box-shadow:0 16px 30px rgba(184,134,11,.22)
}
.lux-near-btn.active{background:linear-gradient(135deg,#1cad7d,#12966d)}
.lux-prompt-bar{
  display:grid;grid-template-columns:52px 1fr auto;align-items:center;gap:12px;
  padding:10px;border-radius:28px;background:#fcf7ef;border:1px solid #f0e3cb
}
.lux-prompt-bar>i{display:grid;place-items:center;font-size:22px;color:var(--lux-gold-3)}
.lux-prompt-bar input{
  height:58px;border:none;outline:none;background:transparent;font-size:16px;font-weight:700;color:var(--lux-text)
}
.lux-prompt-bar input::placeholder{color:#90867a}
.lux-voice-btn{
  padding:15px 18px;border-radius:18px;color:#fff;background:var(--lux-navy);box-shadow:0 12px 26px rgba(31,47,70,.16)
}
.lux-voice-btn.listening{background:#b63a3a}
.lux-suggestion-box{display:none;gap:10px;flex-wrap:wrap;margin:14px 0 0}
.lux-suggestion-box.show{display:flex}
.lux-suggestion-btn{
  border:1px solid #efdfbf;background:#fbf4e3;color:var(--lux-gold-3);padding:10px 14px;border-radius:999px;font-weight:800;cursor:pointer
}
.lux-filter-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;margin-top:18px}
.lux-filter-grid label{display:block}
.lux-filter-grid span{display:block;margin:0 0 8px;font-size:12px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;color:#7b8592}
.lux-filter-grid input,.lux-filter-grid select,.lux-filter-grid textarea{
  width:100%;height:54px;padding:0 16px;border-radius:18px;border:1px solid #eadfce;background:#fff;color:var(--lux-text);outline:none
}
.lux-filter-grid input:focus,.lux-filter-grid select:focus,.lux-filter-grid textarea:focus{border-color:#d4a017;box-shadow:0 0 0 4px rgba(212,160,23,.12)}
.lux-search-action-cell{display:flex;align-items:flex-end}
.lux-panel-bottom{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-top:18px;color:#6b7280;font-size:14px;font-weight:700}
.lux-check-line{color:var(--lux-text);display:inline-flex;align-items:center;gap:8px}
.lux-check-line input{accent-color:#b8860b}
.lux-reset-link{font-weight:800;color:var(--lux-gold-3)}

.lux-section{padding:50px 0}
.lux-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:22px;margin-bottom:24px}
.lux-section-head.compact{align-items:flex-start}
.lux-section-head h2{margin:10px 0 0;font-family:"Plus Jakarta Sans",Inter,sans-serif;font-size:clamp(28px,3.8vw,46px);line-height:1.08;letter-spacing:-1.2px}
.lux-section-head p{max-width:520px;margin:0;color:var(--lux-text-soft);line-height:1.7}
.lux-text-link{font-weight:800;color:var(--lux-gold-3)}

/* featured */
.lux-featured-row{display:flex;gap:20px;overflow-x:auto;padding:4px 4px 14px;scroll-snap-type:x mandatory}
.lux-featured-row::-webkit-scrollbar{height:8px}
.lux-featured-row::-webkit-scrollbar-thumb{background:#d6c2a1;border-radius:999px}
.lux-feature-card{
  min-width:300px;max-width:300px;background:#fff;border:1px solid #ebdfcf;border-radius:28px;overflow:hidden;
  box-shadow:var(--lux-shadow);scroll-snap-align:start;transition:.22s ease
}
.lux-feature-card:hover{transform:translateY(-4px);box-shadow:var(--lux-shadow-lg)}
.lux-feature-image{display:block;height:200px;background:#f6f1e8}
.lux-feature-image img{width:100%;height:100%;object-fit:cover}
.lux-feature-content{padding:18px}
.lux-mini-badge{display:inline-flex;align-items:center;gap:6px;padding:8px 10px;border-radius:999px;background:#fbf4e3;color:var(--lux-gold-3);font-weight:800;font-size:12px;margin-bottom:10px}
.lux-feature-content small{display:block;color:#7b8592;margin-bottom:5px;font-weight:700}
.lux-feature-content h3{margin:0 0 8px;font-size:21px;line-height:1.18}
.lux-feature-content p{margin:0;color:var(--lux-text-soft);line-height:1.6}

/* category */
.lux-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.lux-category-card{
  display:flex;flex-direction:column;align-items:flex-start;gap:8px;padding:22px;border-radius:24px;background:#fff;border:1px solid #ebdfcf;
  box-shadow:var(--lux-shadow);transition:.22s ease
}
.lux-category-card:hover{transform:translateY(-3px);box-shadow:var(--lux-shadow-lg)}
.lux-category-icon{
  width:52px;height:52px;border-radius:18px;display:grid;place-items:center;font-size:22px;color:#fff;
  background:linear-gradient(135deg,#d4a017,#b8860b)
}
.lux-category-card b{font-size:18px}
.lux-category-card small{color:var(--lux-text-soft)}

/* listing card */
.lux-listing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.lux-listing-card{
  background:#fff;border:1px solid #ebdfcf;border-radius:30px;overflow:hidden;box-shadow:var(--lux-shadow);
  transform:translateY(18px);opacity:0;transition:opacity .45s ease,transform .45s ease,box-shadow .22s ease
}
.lux-listing-card.visible{transform:translateY(0);opacity:1}
.lux-listing-card:hover{box-shadow:var(--lux-shadow-lg)}
.lux-card-image{display:block;position:relative;height:230px;background:#f4efe6}
.lux-card-image img{width:100%;height:100%;object-fit:cover}
.lux-card-topbadges{position:absolute;left:14px;right:14px;top:14px;display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.lux-card-badge{display:inline-flex;align-items:center;gap:7px;padding:9px 11px;border-radius:999px;font-size:12px;font-weight:800;backdrop-filter:blur(8px)}
.lux-card-badge.category{background:rgba(255,255,255,.92);color:var(--lux-text);border:1px solid rgba(255,255,255,.9)}
.lux-card-badge.premium{background:linear-gradient(135deg,#d4a017,#b8860b);color:#fff}
.lux-verify-dot{position:absolute;right:16px;bottom:16px;width:40px;height:40px;border-radius:14px;display:grid;place-items:center;background:#f4fbf8;color:var(--lux-green);font-size:18px;border:1px solid #d8efe7}
.lux-card-body{padding:22px}
.lux-card-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.lux-card-head h3{margin:0;font-size:22px;line-height:1.2;flex:1}
.lux-card-head h3 a:hover{color:var(--lux-gold-3)}
.lux-fav-btn{
  width:42px;height:42px;border-radius:14px;border:1px solid #eadfce;background:#fff;color:#8b96a4;cursor:pointer;
  box-shadow:0 10px 20px rgba(46,34,16,.06)
}
.lux-fav-btn.active,.lux-fav-btn:hover{color:#c54d6d;border-color:#efcad6}
.lux-meta-line{margin:12px 0 0;color:#6b7280;display:flex;gap:8px;align-items:flex-start;line-height:1.6}
.lux-chip-row{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 0}
.lux-score-chip{display:inline-flex;align-items:center;gap:7px;padding:9px 12px;border-radius:999px;background:#f8f4ec;color:#5f6671;font-size:13px;font-weight:800;border:1px solid #eee2d2}
.lux-score-chip.gold{background:#fff7e7;color:#8f6a08;border-color:#efdfbf}
.lux-card-desc{margin:14px 0 0;color:var(--lux-text-soft);line-height:1.7;font-size:14px}
.lux-ai-note{margin-top:14px;padding:13px 14px;border-radius:18px;background:#fcf7ef;border:1px solid #f0e3cb;color:#6d5730;display:flex;gap:9px;align-items:flex-start;line-height:1.6;font-size:13px;font-weight:700}
.lux-action-row{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-top:18px;flex-wrap:wrap}
.lux-icon-group{display:flex;gap:10px;flex-wrap:wrap}
.lux-icon-action{
  width:42px;height:42px;border-radius:14px;display:grid;place-items:center;color:#fff;font-size:18px;box-shadow:0 10px 20px rgba(46,34,16,.10)
}
.lux-icon-action.call{background:#12966d}
.lux-icon-action.whatsapp{background:#25d366}
.lux-icon-action.web{background:#3157d5}
.lux-icon-action.map{background:#d5623d}
.lux-view-link{display:inline-flex;align-items:center;gap:8px;color:var(--lux-gold-3);font-weight:800}

/* empty / cta / footer */
.lux-empty-state{
  padding:44px 20px;text-align:center;background:#fff;border:1px solid #ebdfcf;border-radius:30px;box-shadow:var(--lux-shadow)
}
.lux-empty-state i{font-size:40px;color:var(--lux-gold)}
.lux-empty-state h3{margin:14px 0 8px;font-size:28px}
.lux-empty-state p{margin:0;color:var(--lux-text-soft)}
.lux-cta-strip{
  margin:10px auto 60px;padding:30px 32px;border-radius:32px;background:linear-gradient(135deg,#fffdf8,#f9f2e7);
  border:1px solid #ebdfcf;box-shadow:var(--lux-shadow);display:flex;justify-content:space-between;gap:24px;align-items:center
}
.lux-cta-strip h2{margin:10px 0 8px;font-size:clamp(28px,3.6vw,42px);line-height:1.08}
.lux-cta-strip p{margin:0;color:var(--lux-text-soft);line-height:1.7;max-width:740px}
.footer{
  display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;padding:32px 4%;
  background:#fff;border-top:1px solid #eee2d2;color:#535d69
}
.footer b{display:block;margin-bottom:8px;color:var(--lux-text)}
.footer p{margin:0;line-height:1.7}

.lux-mobile-cta{
  display:none;position:fixed;left:50%;transform:translateX(-50%);bottom:16px;z-index:999;
  padding:14px 20px;border-radius:999px;background:linear-gradient(135deg,#c99513,#b8860b 58%,#8f6a08);
  color:#fff;font-weight:800;box-shadow:0 18px 36px rgba(184,134,11,.28)
}

/* common form support for other pages */
.form-card,.admin-card,.table-wrap,.page-card,.detail-card{
  background:#fff;border:1px solid #ebdfcf;border-radius:28px;box-shadow:var(--lux-shadow)
}
.form-card,.admin-card,.page-card,.detail-card{padding:24px}
.table-wrap{overflow:auto}
.table-wrap table{width:100%;border-collapse:collapse;min-width:760px}
.table-wrap th,.table-wrap td{padding:14px 16px;text-align:left;border-bottom:1px solid #f1e6d9}
.table-wrap th{background:#fcf8f1;color:#644913;font-size:13px;text-transform:uppercase;letter-spacing:.6px}
.alert{padding:14px 16px;border-radius:16px;margin-bottom:16px;font-weight:700}
.alert-ok,.alert-success{background:#eefaf5;color:#13684b}
.alert-err,.alert-error{background:#fff0f0;color:#b23f3f}
input,select,textarea{outline:none}

/* responsive */
@media (max-width: 1100px){
  .lux-hero-grid{grid-template-columns:1fr}
  .lux-panel-top{flex-direction:column}
  .lux-filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lux-listing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lux-category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width: 860px){
  .lux-menu-btn{display:grid;place-items:center}
  .lux-nav{
    position:absolute;top:86px;left:4%;right:4%;display:none;flex-direction:column;align-items:stretch;padding:16px;background:rgba(255,255,255,.98);
    border:1px solid #ebdfcf;border-radius:24px;box-shadow:var(--lux-shadow-lg)
  }
  .lux-nav.open{display:flex}
  .lux-nav>a,.lux-lang-btn,.lux-add-btn{justify-content:center}
  .lux-lang-wrap{width:100%}
  .lux-lang-btn{width:100%;justify-content:center}
  .lux-lang-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;padding:8px 0 0;background:transparent;display:none}
  .lux-lang-wrap:hover .lux-lang-menu{display:block}
  .lux-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lux-cta-strip{flex-direction:column;align-items:flex-start}
}

@media (max-width: 680px){
  .lux-nav-shell{min-height:74px}
  .lux-brand-image,.lux-brand-badge{width:46px;height:46px;border-radius:16px}
  .lux-brand-text{font-size:24px}
  .lux-hero{padding:22px 0 16px}
  .lux-hero-copy,.lux-showcase-card,.lux-search-panel{padding:22px}
  .lux-hero-copy h1{font-size:42px;letter-spacing:-1.6px}
  .lux-hero-copy p,.lux-panel-top p{font-size:15px}
  .lux-feature-points{gap:9px}
  .lux-feature-points span{font-size:13px}
  .lux-search-demo{font-size:15px}
  .lux-panel-top h2{font-size:28px}
  .lux-prompt-bar{grid-template-columns:44px 1fr;gap:10px}
  .lux-prompt-bar>i{font-size:20px}
  .lux-prompt-bar input{height:52px;font-size:15px}
  .lux-voice-btn{grid-column:1 / -1;justify-content:center}
  .lux-filter-grid{grid-template-columns:1fr}
  .lux-listing-grid,.lux-category-grid{grid-template-columns:1fr}
  .lux-section{padding:36px 0}
  .lux-section-head{flex-direction:column;align-items:flex-start}
  .lux-section-head h2{font-size:32px}
  .lux-card-image{height:210px}
  .lux-cta-strip{padding:24px}
  .footer{padding:26px 4% 90px}
  .lux-mobile-cta{display:inline-flex;align-items:center;gap:8px}
}

@media (max-width: 420px){
  .lux-container{width:94%}
  .lux-hero-copy h1{font-size:37px}
  .lux-btn,.lux-add-btn,.lux-near-btn,.lux-full-btn{width:100%}
  .lux-hero-actions{flex-direction:column}
  .lux-show-item{padding:14px}
  .lux-stats-grid{grid-template-columns:1fr 1fr}
  .lux-action-row{flex-direction:column;align-items:flex-start}
}


/* =========================================================
   CATEGORY HORIZONTAL SLIDER - PREMIUM LIGHT UI
   ========================================================= */

.lux-category-slider-shell{
  position:relative;
}

.lux-category-slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:6px 8px 18px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}

.lux-category-slider::-webkit-scrollbar{
  height:8px;
}

.lux-category-slider::-webkit-scrollbar-track{
  background:#f6efe5;
  border-radius:999px;
}

.lux-category-slider::-webkit-scrollbar-thumb{
  background:linear-gradient(135deg,#d4a017,#b8860b);
  border-radius:999px;
}

.lux-category-slider .lux-category-card{
  min-width:230px;
  max-width:230px;
  min-height:170px;
  scroll-snap-align:start;
  flex:0 0 auto;
}

.lux-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid #eadfce;
  background:#fff;
  color:#8f6a08;
  display:grid;
  place-items:center;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(46,34,16,.14);
  transition:.22s ease;
}

.lux-slider-arrow:hover{
  background:linear-gradient(135deg,#d4a017,#b8860b);
  color:#fff;
  transform:translateY(-50%) scale(1.04);
}

.lux-slider-prev{
  left:-18px;
}

.lux-slider-next{
  right:-18px;
}

@media (max-width: 860px){
  .lux-category-slider{
    padding-left:2px;
    padding-right:2px;
  }

  .lux-category-slider .lux-category-card{
    min-width:205px;
    max-width:205px;
  }

  .lux-slider-arrow{
    display:none;
  }
}

@media (max-width: 480px){
  .lux-category-slider .lux-category-card{
    min-width:178px;
    max-width:178px;
    min-height:158px;
  }
}


/* =========================================================
   PREMIUM FOOTER FIX - CLEAN CREAM/GOLD LAYOUT
   Replace includes/footer.php and assets/css/style.css
   ========================================================= */

.lux-footer{
  margin-top:64px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212,160,23,.14), transparent 28%),
    linear-gradient(180deg,#fffdf8 0%,#f7efe2 100%);
  border-top:1px solid #eadfce;
  color:var(--lux-text);
}

.lux-footer-main{
  display:grid;
  grid-template-columns:1.45fr .85fr .85fr 1fr;
  gap:34px;
  padding:48px 0 34px;
  align-items:flex-start;
}

.lux-footer-logo{
  display:inline-flex;
  align-items:center;
  gap:13px;
  margin-bottom:18px;
}

.lux-footer-mark{
  width:50px;
  height:50px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,#d4a017,#b8860b 58%,#8f6a08);
  box-shadow:0 16px 34px rgba(184,134,11,.24);
}

.lux-footer-logo span:last-child{
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
  font-size:26px;
  letter-spacing:-.8px;
  line-height:1;
}

.lux-footer-logo b{
  color:var(--lux-text);
}

.lux-footer-logo em{
  color:var(--lux-gold);
  font-style:normal;
  font-weight:800;
  margin-left:3px;
}

.lux-footer-brand p{
  max-width:420px;
  color:#667085;
  line-height:1.8;
  margin:0 0 20px;
}

.lux-footer-social{
  display:flex;
  gap:11px;
  flex-wrap:wrap;
}

.lux-footer-social a{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#c99513,#b8860b 58%,#8f6a08);
  box-shadow:0 12px 24px rgba(184,134,11,.18);
  transition:.22s ease;
}

.lux-footer-social a:hover{
  transform:translateY(-2px);
}

.lux-footer-col h4{
  margin:6px 0 16px;
  font-size:15px;
  color:#8f6a08;
  text-transform:uppercase;
  letter-spacing:1px;
}

.lux-footer-col a{
  display:flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  margin:0 0 12px;
  color:#4b5563;
  font-weight:700;
  line-height:1.45;
  transition:.18s ease;
}

.lux-footer-col a:hover{
  color:#8f6a08;
  transform:translateX(3px);
}

.lux-footer-contact a{
  width:auto;
  word-break:break-word;
}

.lux-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:20px 0;
  border-top:1px solid #e8dccb;
  color:#6b7280;
  font-size:14px;
  font-weight:600;
}

/* Disable old basic footer styling if any old class remains */
.footer{
  display:none !important;
}

@media(max-width: 960px){
  .lux-footer-main{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width: 620px){
  .lux-footer{
    margin-top:42px;
  }

  .lux-footer-main{
    grid-template-columns:1fr;
    gap:24px;
    padding:36px 0 24px;
  }

  .lux-footer-logo span:last-child{
    font-size:23px;
  }

  .lux-footer-col h4{
    margin-bottom:12px;
  }

  .lux-footer-col a{
    margin-bottom:10px;
  }

  .lux-footer-bottom{
    display:block;
    padding-bottom:92px;
  }

  .lux-footer-bottom span{
    display:block;
    margin-bottom:8px;
  }
}


/* =========================================================
   PREMIUM INNER PAGES - SUBMIT / DETAIL / INFO / CMS PAGES
   ========================================================= */

.lux-page-hero{
  padding:42px 0 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212,160,23,.10), transparent 26%),
    linear-gradient(180deg,#fffdf8 0%,#fcf8f1 100%);
  border-bottom:1px solid #efe5d7;
}

.lux-page-hero.small{
  padding:36px 0 26px;
}

.lux-page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(280px,.5fr);
  gap:28px;
  align-items:center;
}

.lux-page-hero h1{
  margin:16px 0 12px;
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
  font-size:clamp(36px,5vw,58px);
  line-height:1.04;
  letter-spacing:-1.8px;
  color:var(--lux-text);
}

.lux-page-hero p{
  margin:0;
  color:var(--lux-text-soft);
  font-size:17px;
  line-height:1.8;
  max-width:820px;
}

.lux-page-hero-card{
  background:#fff;
  border:1px solid #ebdfcf;
  border-radius:28px;
  padding:24px;
  box-shadow:var(--lux-shadow);
}

.lux-page-hero-card i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg,#d4a017,#b8860b);
  font-size:24px;
  margin-bottom:14px;
}

.lux-page-hero-card b{
  display:block;
  font-size:20px;
  margin-bottom:8px;
}

.lux-page-hero-card span{
  color:var(--lux-text-soft);
  line-height:1.7;
}

.lux-page-main{
  padding-top:34px;
  padding-bottom:28px;
}

.lux-alert{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:20px;
  margin-bottom:18px;
  border:1px solid;
  box-shadow:0 12px 26px rgba(46,34,16,.06);
}

.lux-alert i{
  font-size:22px;
}

.lux-alert.success{
  background:#f1fbf6;
  border-color:#cdeede;
  color:#11664a;
}

.lux-alert.error{
  background:#fff1f1;
  border-color:#ffd0d0;
  color:#9e3131;
}

.lux-alert a{
  display:inline-block;
  margin-top:7px;
  font-weight:800;
  color:inherit;
  text-decoration:underline;
}

/* Submit page */
.lux-submit-layout{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:26px;
  align-items:start;
}

.lux-payment-card,
.lux-form-card,
.lux-content-card,
.lux-contact-panel,
.lux-info-card{
  background:#fff;
  border:1px solid #ebdfcf;
  border-radius:30px;
  box-shadow:var(--lux-shadow);
}

.lux-payment-card{
  position:sticky;
  top:104px;
  padding:24px;
}

.lux-payment-card h2{
  margin:16px 0 8px;
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
  font-size:28px;
  letter-spacing:-.8px;
}

.lux-payment-card p{
  color:var(--lux-text-soft);
  line-height:1.7;
}

.lux-payment-box{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:#fcf7ef;
  border:1px dashed #d9be88;
  color:#57401a;
  line-height:1.8;
  font-weight:700;
}

.lux-payment-steps{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.lux-payment-steps div{
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px;
  border-radius:18px;
  background:#fbf8f2;
  border:1px solid #f0e5d7;
}

.lux-payment-steps b{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg,#d4a017,#b8860b);
  color:#fff;
}

.lux-form-card{
  padding:26px;
}

.lux-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.lux-field{
  display:block;
}

.lux-field.full,
.lux-form-submit.full{
  grid-column:1 / -1;
}

.lux-field label{
  display:block;
  margin-bottom:8px;
  color:#344054;
  font-weight:800;
  font-size:14px;
}

.lux-field label b{
  color:#b42318;
}

.lux-field input,
.lux-field select,
.lux-field textarea{
  width:100%;
  border:1px solid #eadfce;
  background:#fffdf9;
  border-radius:18px;
  min-height:54px;
  padding:0 15px;
  color:var(--lux-text);
  outline:none;
  transition:.2s ease;
}

.lux-field textarea{
  padding:15px;
  resize:vertical;
}

.lux-field input[type="file"]{
  padding:14px;
  background:#fcf7ef;
}

.lux-field input:focus,
.lux-field select:focus,
.lux-field textarea:focus{
  border-color:#d4a017;
  box-shadow:0 0 0 4px rgba(212,160,23,.12);
}

.lux-form-submit{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

/* Detail page */
.lux-detail-hero{
  padding:38px 0 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(212,160,23,.12), transparent 30%),
    linear-gradient(180deg,#fffdf8 0%,#fcf8f1 100%);
  border-bottom:1px solid #efe5d7;
}

.lux-detail-grid{
  display:grid;
  grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);
  gap:32px;
  align-items:center;
}

.lux-detail-gallery{
  display:grid;
  gap:14px;
}

.lux-detail-cover{
  position:relative;
  height:430px;
  overflow:hidden;
  border-radius:34px;
  background:#f6efe5;
  border:1px solid #ebdfcf;
  box-shadow:var(--lux-shadow-lg);
}

.lux-detail-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.lux-detail-premium{
  position:absolute;
  top:18px;
  left:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#d4a017,#b8860b);
  color:#fff;
  font-weight:900;
}

.lux-detail-thumbs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.lux-detail-thumbs img{
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid #ebdfcf;
}

.lux-detail-info h1{
  margin:18px 0 14px;
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
  font-size:clamp(38px,5vw,64px);
  line-height:1.02;
  letter-spacing:-2px;
}

.lux-detail-info p{
  color:var(--lux-text-soft);
  line-height:1.85;
  font-size:17px;
}

.lux-detail-meta{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-bottom:16px;
}

.lux-detail-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid #ebdfcf;
  color:#5f6671;
  font-weight:800;
}

.lux-detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:22px;
}

.lux-detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:26px;
  align-items:start;
}

.lux-detail-content{
  display:grid;
  gap:18px;
}

.lux-content-card{
  padding:26px;
}

.lux-content-card h2{
  margin:0 0 12px;
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
  font-size:28px;
  letter-spacing:-.8px;
}

.lux-content-card p,
.lux-page-content{
  color:#4b5563;
  line-height:1.9;
  font-size:16px;
}

.lux-contact-panel{
  position:sticky;
  top:104px;
  padding:24px;
}

.lux-contact-panel h2{
  margin:0 0 8px;
  font-size:28px;
  font-family:"Plus Jakarta Sans",Inter,sans-serif;
}

.lux-contact-panel p{
  color:var(--lux-text-soft);
  line-height:1.7;
}

.lux-detail-icon-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.lux-detail-icon-grid a{
  min-height:84px;
  border-radius:20px;
  display:grid;
  place-items:center;
  gap:6px;
  color:#fff;
  font-weight:800;
  text-align:center;
}

.lux-detail-icon-grid i{
  font-size:24px;
}

.lux-detail-icon-grid .call{background:#12966d}
.lux-detail-icon-grid .whatsapp{background:#25d366}
.lux-detail-icon-grid .web{background:#3157d5}
.lux-detail-icon-grid .map{background:#d5623d}
.lux-detail-icon-grid .facebook{background:#1877f2}
.lux-detail-icon-grid .youtube{background:#ff0000}
.lux-detail-icon-grid .instagram{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045)}

.lux-share-box{
  display:grid;
  gap:12px;
  margin-top:18px;
}

/* Info page */
.lux-info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.lux-info-card{
  padding:24px;
}

.lux-info-head{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}

.lux-info-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#d4a017,#b8860b);
  flex:0 0 auto;
  font-size:22px;
}

.lux-info-head h3{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.2;
}

.lux-info-head p{
  margin:0;
  color:#6b7280;
  line-height:1.5;
}

.lux-info-category{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:#fbf4e3;
  color:#8f6a08;
  font-weight:800;
  margin-bottom:12px;
}

.lux-info-desc,
.lux-info-address{
  color:#4b5563;
  line-height:1.75;
}

.lux-info-address{
  display:flex;
  gap:8px;
}

.lux-info-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.lux-info-actions a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:11px 13px;
  border-radius:999px;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.lux-info-actions .call{background:#12966d}
.lux-info-actions .whatsapp{background:#25d366}
.lux-info-actions .web{background:#3157d5}
.lux-info-actions .map{background:#d5623d}

/* Responsive inner pages */
@media(max-width: 1050px){
  .lux-submit-layout,
  .lux-detail-layout,
  .lux-detail-grid,
  .lux-page-hero-grid{
    grid-template-columns:1fr;
  }

  .lux-payment-card,
  .lux-contact-panel{
    position:relative;
    top:auto;
  }

  .lux-info-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width: 720px){
  .lux-page-hero{
    padding:28px 0 18px;
  }

  .lux-page-hero h1{
    font-size:38px;
  }

  .lux-form-grid,
  .lux-info-grid{
    grid-template-columns:1fr;
  }

  .lux-detail-cover{
    height:310px;
    border-radius:26px;
  }

  .lux-detail-info h1{
    font-size:38px;
  }

  .lux-detail-thumbs img{
    height:105px;
  }

  .lux-detail-icon-grid{
    grid-template-columns:1fr 1fr;
  }

  .lux-form-submit .lux-btn,
  .lux-share-box .lux-btn{
    width:100%;
  }
}

@media(max-width: 440px){
  .lux-page-main{
    padding-top:22px;
  }

  .lux-form-card,
  .lux-payment-card,
  .lux-content-card,
  .lux-contact-panel,
  .lux-info-card{
    padding:20px;
    border-radius:24px;
  }

  .lux-detail-icon-grid{
    grid-template-columns:1fr;
  }
}

.lux-rating-form{display:grid;gap:14px;margin-top:12px}
.lux-rating-msg{font-weight:800;color:#11664a;margin-left:10px}
.lux-review-list{display:grid;gap:12px;margin-top:20px}
.lux-review-item{padding:14px;border-radius:18px;background:#fcf7ef;border:1px solid #f0e3cb}
.lux-review-item b{display:block;color:#8f6a08;margin-bottom:6px}
.lux-review-item p{margin:0;color:#4b5563;line-height:1.7}

/* =========================================================
   GLOBAL PROFESSIONAL TYPOGRAPHY STANDARD - CHIGURU CONNECT
   Applied sitewide without changing existing layout/features.
   ========================================================= */

:root{
  --cc-font-main:"Plus Jakarta Sans", Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --cc-font-ui:"Plus Jakarta Sans", Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --cc-font-kannada:"Noto Sans Kannada", "Plus Jakarta Sans", Inter, "Segoe UI", system-ui, sans-serif;
}

/* Entire public website */
html,
body,
body.lux-body,
.lux-body,
.lux-topbar,
.lux-nav,
.lux-main,
.lux-footer,
.footer,
.lux-page-main,
.lux-page-hero,
.lux-detail-hero,
.lux-search-panel,
.lux-listing-card,
.lux-feature-card,
.lux-category-card,
.lux-info-card,
.lux-content-card,
.lux-form-card,
.lux-payment-card,
.lux-contact-panel,
.page-card,
.detail-card,
.form-card,
.admin-card,
.table-wrap{
  font-family:var(--cc-font-main) !important;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Headings and titles */
h1,h2,h3,h4,h5,h6,
.lux-brand-text,
.lux-hero-copy h1,
.lux-panel-top h2,
.lux-section-head h2,
.lux-page-hero h1,
.lux-detail-info h1,
.lux-content-card h2,
.lux-contact-panel h2,
.lux-info-head h3,
.lux-card-head h3,
.lux-feature-content h3,
.lux-category-card b,
.lux-stat-box strong,
.cc-pro-modal-head h2,
.cc-pro-group-head h2{
  font-family:var(--cc-font-main) !important;
  font-weight:900;
  letter-spacing:-0.035em;
}

/* Body content */
p,span,small,label,li,td,th,
.lux-hero-copy p,
.lux-panel-top p,
.lux-card-desc,
.lux-meta-line,
.lux-feature-content p,
.lux-footer,
.lux-footer p,
.lux-page-hero p,
.lux-content-card p,
.lux-info-desc,
.lux-info-address,
.cc-pro-board-card small,
.cc-pro-modal-head p,
.cc-pro-card-body p{
  font-family:var(--cc-font-main) !important;
  font-weight:600;
}

/* Buttons, menus, forms */
button,
input,
select,
textarea,
.lux-btn,
.lux-add-btn,
.lux-nav a,
.lux-lang-btn,
.lux-menu-btn,
.lux-voice-btn,
.lux-near-btn,
.lux-reset-link,
.lux-text-link,
.lux-section-chip,
.lux-hero-chip,
.lux-score-chip,
.lux-card-badge,
.cc-pro-filter input,
.cc-pro-filter select,
.cc-pro-modal-search input,
.cc-pro-board-card,
.cc-pro-village-grid a,
.cc-pro-category-card,
.cc-pro-card-actions a,
.cc-pro-card-actions span{
  font-family:var(--cc-font-ui) !important;
  font-weight:800;
}

/* Kannada / multilingual input text support */
[lang="kn"],
.kn,
.kannada,
input,
textarea,
select{
  font-family:var(--cc-font-kannada) !important;
}

/* Improve consistent professional sizing */
body.lux-body{
  font-size:16px;
  line-height:1.65;
}

.lux-nav a,
.lux-add-btn{
  font-size:15px;
}

.lux-btn{
  font-size:15px;
  letter-spacing:-0.01em;
}

.lux-card-head h3,
.cc-pro-card-body h3{
  letter-spacing:-0.025em;
}

.lux-section-chip,
.lux-hero-chip,
.lux-card-badge,
.lux-mini-badge{
  letter-spacing:.01em;
}

/* Tables and admin-like content appearing in public area */
.table-wrap th{
  font-weight:900 !important;
  letter-spacing:.04em;
}

.table-wrap td{
  font-weight:600 !important;
}

/* Mobile readability */
@media(max-width:680px){
  body.lux-body{
    font-size:15px;
  }

  .lux-hero-copy h1,
  .lux-page-hero h1,
  .lux-detail-info h1{
    letter-spacing:-0.045em;
  }

  .lux-nav a,
  .lux-add-btn,
  .lux-btn{
    font-size:15px;
  }
}
