@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #f7931e;
  --primary-dark: #e07d0a;
  --secondary: #8dc63f;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --muted: #777;
  --bg: #f5f6fa;
  --white: #fff;
  --border: #e8e8e8;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --radius: 14px;
  --sidebar-w: 240px;
  --header-h: 65px;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif;background:var(--bg);color:var(--text)}
a{text-decoration:none;color:inherit}
img{max-width:100%}
textarea{resize:vertical}

/* ==============================
   HEADER
============================== */
.header{
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,0.06);
  position:sticky;top:0;z-index:10000;
  height:var(--header-h);
  overflow:hidden;
}
.header-inner{
  max-width:1400px;margin:auto;padding:0 15px;
  display:flex;align-items:center;gap:10px;height:100%;
  overflow:hidden;
}
.logo{font-size:24px;font-weight:800;white-space:nowrap;flex-shrink:0}
.logo-mega{color:var(--primary)}.logo-bazar{color:var(--dark)}

.main-nav{display:flex;gap:4px;align-items:center}
.main-nav a{
  padding:7px 14px;border-radius:8px;font-size:13px;
  font-weight:500;color:#555;transition:all .2s;white-space:nowrap;
}
.main-nav a:hover,.main-nav a.nav-active{background:#fff3e0;color:var(--primary)}

.header-actions{margin-left:auto;display:flex;align-items:center;gap:8px;white-space:nowrap;flex-shrink:0}

.btn-outline{padding:7px 18px;border:2px solid var(--primary);color:var(--primary);border-radius:8px;font-size:13px;font-weight:600;transition:.2s}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-primary{padding:7px 18px;background:var(--primary);color:#fff;border-radius:8px;font-size:13px;font-weight:600;transition:.2s}
.btn-primary:hover{background:var(--primary-dark)}
.btn-provider{padding:7px 16px;background:var(--secondary);color:#fff;border-radius:8px;font-size:13px;font-weight:600}

.user-avatar{width:38px;height:38px;border-radius:50%;object-fit:cover;border:2px solid var(--primary);cursor:pointer}
.user-menu{position:relative}
.user-menu .dropdown{display:none;position:fixed;right:15px;top:65px;background:#fff;border-radius:12px;box-shadow:0 10px 35px rgba(0,0,0,0.2);min-width:190px;z-index:999999;overflow:hidden;border:1.5px solid #e8e8e8;padding:8px 0}
.user-menu.open .dropdown{display:block!important}
.user-menu .dropdown a{display:flex;align-items:center;gap:10px;padding:12px 18px;font-size:14px;color:#333;transition:.2s}
.user-menu .dropdown a:hover{background:#fff8f0;color:var(--primary)}
.cart-btn,.icon-btn{position:relative;font-size:20px;color:#555;padding:6px}
.badge{position:absolute;top:-5px;right:-5px;background:var(--primary);color:#fff;font-size:10px;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}

/* Language Switcher */
.lang-switcher{display:flex;align-items:center;gap:6px;background:#f8f8f8;border:1.5px solid var(--border);border-radius:8px;padding:5px 10px;font-size:13px}
.lang-switcher a{color:#aaa;font-weight:700;padding:2px 4px;border-radius:4px;transition:.2s}
.lang-switcher a:hover,.lang-switcher a.lang-active{color:var(--primary)}
.lang-switcher span{color:#ddd}

.menu-toggle{display:none;background:none;border:none;font-size:22px;cursor:pointer;color:#555}

/* Mobile Nav */
.mobile-nav{display:none;background:#fff;border-bottom:1px solid var(--border);padding:10px 0}
.mobile-nav a{display:block;padding:10px 20px;font-size:14px;color:#444;border-bottom:1px solid #f5f5f5}
.mobile-nav a:hover{color:var(--primary);background:#fff8f0}
.mobile-nav.open{display:block}

/* ==============================
   PAGE LAYOUT (Sidebar + Content)
============================== */
.page-wrapper{
  display:flex;
  min-height:calc(100vh - var(--header-h));
  max-width:1400px;margin:0 auto;
  padding:25px 25px;gap:25px;
}

/* LEFT SIDEBAR */
.left-sidebar{
  width:var(--sidebar-w);flex-shrink:0;
  display:flex;flex-direction:column;gap:18px;
  position:sticky;top:calc(var(--header-h) + 20px);
  height:fit-content;max-height:calc(100vh - var(--header-h) - 40px);
  overflow-y:auto;
}
.left-sidebar::-webkit-scrollbar{width:4px}
.left-sidebar::-webkit-scrollbar-thumb{background:#ddd;border-radius:4px}

.sidebar-section{background:#fff;border-radius:var(--radius);padding:18px;border:1.5px solid var(--border)}
.sidebar-title{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#aaa;margin-bottom:12px}

.sidebar-services{display:flex;flex-direction:column;gap:2px}
.sidebar-link{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:9px;font-size:13px;font-weight:500;color:#555;transition:.2s}
.sidebar-link:hover{background:#fff3e0;color:var(--primary)}
.sidebar-link.active{background:linear-gradient(135deg,var(--primary),#ffd54f);color:#fff;font-weight:600}
.sidebar-icon{font-size:16px;width:22px;text-align:center;flex-shrink:0}

/* Area Search */
.area-search-form{display:flex;flex-direction:column;gap:8px}
.area-input-wrap{position:relative}
.area-input-wrap i{position:absolute;left:11px;top:50%;transform:translateY(-50%);color:#aaa;font-size:13px}
.area-input-wrap input{width:100%;padding:9px 10px 9px 32px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;font-family:inherit}
.area-input-wrap input:focus{outline:none;border-color:var(--primary)}
.district-select{width:100%;padding:9px 10px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;font-family:inherit;color:#555}
.district-select:focus{outline:none;border-color:var(--primary)}
.area-search-btn{width:100%;padding:9px;background:var(--primary);color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:6px;transition:.2s}
.area-search-btn:hover{background:var(--primary-dark)}
.area-clear{text-align:center;font-size:12px;color:#aaa;display:block}
.area-clear:hover{color:#e74c3c}

/* Sidebar Stats */
.sidebar-stats{display:flex;flex-direction:column;gap:8px}
.stat-pill{background:#f8f9fa;border-radius:8px;padding:8px 12px;font-size:12px;color:#555;font-weight:500;display:flex;align-items:center;gap:8px}
.stat-pill i{color:var(--primary)}

/* MAIN CONTENT */
.main-content{flex:1;min-width:0}

/* ==============================
   HERO (inside main-content)
============================== */
.hero-section{
  background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
  border-radius:20px;padding:60px 40px;text-align:center;color:#fff;
  position:relative;overflow:hidden;margin-bottom:25px;
}
.hero-section::before{content:'';position:absolute;top:-40%;left:-20%;width:70%;height:180%;background:radial-gradient(circle,rgba(247,147,30,0.2),transparent 60%);pointer-events:none}
.hero-section::after{content:'';position:absolute;bottom:-30%;right:-10%;width:50%;height:150%;background:radial-gradient(circle,rgba(141,198,63,0.12),transparent 60%);pointer-events:none}
.hero-content{position:relative;z-index:0;max-width:700px;margin:0 auto}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(247,147,30,0.15);border:1px solid rgba(247,147,30,0.35);color:#ffa94d;padding:6px 16px;border-radius:50px;font-size:12px;font-weight:500;margin-bottom:20px}
.hero-badge span{width:7px;height:7px;background:var(--primary);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}
.hero-content h1{font-size:38px;font-weight:800;line-height:1.2;margin-bottom:14px;letter-spacing:-.5px}
.highlight{background:linear-gradient(135deg,#f7931e,#ffd54f);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-content p{font-size:15px;opacity:.7;margin-bottom:28px;font-weight:300}
.hero-search{max-width:550px;margin:0 auto 30px;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);border-radius:12px;padding:6px;display:flex;gap:6px;backdrop-filter:blur(8px)}
.hero-search input{flex:1;background:none;border:none;outline:none;color:#fff;font-size:13px;padding:8px 12px;font-family:inherit}
.hero-search input::placeholder{color:rgba(255,255,255,.4)}
.hero-search button{background:var(--primary);color:#fff;border:none;padding:8px 20px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit;white-space:nowrap}
.hero-stats{display:flex;justify-content:center;gap:35px;border-top:1px solid rgba(255,255,255,.1);padding-top:25px;flex-wrap:wrap}
.hero-stat strong{display:block;font-size:22px;font-weight:800;color:#fff}
.hero-stat span{font-size:12px;color:rgba(255,255,255,.5);font-weight:300}

/* ==============================
   SECTION HEADER
============================== */
.section-header{text-align:center;margin-bottom:35px}
.section-tag{display:inline-block;background:#fff3e0;color:var(--primary);padding:5px 15px;border-radius:50px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px}
.section-header h2{font-size:28px;font-weight:700;color:var(--dark);margin-bottom:8px}
.section-header p{color:var(--muted);font-size:14px}

/* ==============================
   CATEGORIES
============================== */
.categories-section{background:#fff;border-radius:var(--radius);padding:35px;margin-bottom:25px;border:1.5px solid var(--border)}
.category-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:15px}
.cat-card{background:#f8f9fa;border-radius:12px;padding:20px 12px;text-align:center;border:1.5px solid var(--border);transition:all .3s;cursor:pointer;display:block}
.cat-card:hover{border-color:var(--primary);transform:translateY(-5px);box-shadow:0 12px 30px rgba(247,147,30,0.12);background:#fff}
.cat-icon-wrap{width:52px;height:52px;margin:0 auto 12px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;transition:.3s}
.cat-card:hover .cat-icon-wrap{transform:scale(1.1)}
.cat-model .cat-icon-wrap{background:#fff0f6}
.cat-doctor .cat-icon-wrap{background:#f0fff4}
.cat-hotel .cat-icon-wrap{background:#fff8f0}
.cat-parlor .cat-icon-wrap{background:#fdf0ff}
.cat-freelancer .cat-icon-wrap{background:#f0f8ff}
.cat-store .cat-icon-wrap{background:#fffbf0}
.cat-hospital .cat-icon-wrap{background:#fff0f0}
.cat-agency .cat-icon-wrap{background:#f0f0ff}
.cat-cons .cat-icon-wrap{background:#f0fff8}
.cat-card h3{font-size:12px;font-weight:700;color:var(--dark);margin-bottom:4px}
.cat-card p{font-size:11px;color:var(--muted);line-height:1.4}

/* ==============================
   HOW IT WORKS
============================== */
.how-section{background:#fff;border-radius:var(--radius);padding:35px;margin-bottom:25px;border:1.5px solid var(--border)}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;position:relative}
.steps-grid::before{content:'';position:absolute;top:30px;left:13%;right:13%;height:2px;background:linear-gradient(90deg,var(--primary),var(--secondary));z-index:0}
.step{text-align:center;position:relative;z-index:1}
.step-num{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,var(--primary),#ffd54f);color:#fff;font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;box-shadow:0 6px 20px rgba(247,147,30,0.28)}
.step h4{font-size:13px;font-weight:700;margin-bottom:6px;color:var(--dark)}
.step p{font-size:12px;color:var(--muted);line-height:1.6}

/* ==============================
   CTA
============================== */
.cta-section{border-radius:18px;background:linear-gradient(135deg,#1a1a2e,#0f3460);padding:50px 30px;text-align:center;color:#fff;position:relative;overflow:hidden;margin-bottom:25px}
.cta-section::before{content:'';position:absolute;top:-20%;right:-5%;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(247,147,30,0.2),transparent 70%)}
.cta-section h2{font-size:26px;font-weight:700;margin-bottom:10px;position:relative}
.cta-section p{color:rgba(255,255,255,.6);margin-bottom:22px;font-size:14px;position:relative}
.btn-cta{display:inline-block;padding:13px 35px;background:var(--primary);color:#fff;border-radius:10px;font-size:14px;font-weight:700;box-shadow:0 8px 25px rgba(247,147,30,0.35);transition:.2s;position:relative}
.btn-cta:hover{background:var(--primary-dark);transform:translateY(-2px)}

/* ==============================
   SERVICE LIST PAGE
============================== */
.page-title-section{background:linear-gradient(135deg,var(--dark),#0f3460);color:#fff;border-radius:16px;padding:35px 30px;margin-bottom:22px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:15px}
.page-title-section h1{font-size:26px;font-weight:700;margin-bottom:6px}
.page-title-section p{font-size:14px;opacity:.7}

.filter-bar{background:#fff;border-radius:12px;padding:16px 20px;margin-bottom:20px;border:1.5px solid var(--border)}
.filter-bar form{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.filter-bar input,.filter-bar select{padding:9px 12px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;font-family:inherit}
.filter-bar input:focus,.filter-bar select:focus{outline:none;border-color:var(--primary)}

/* Area active badge */
.area-active-badge{display:inline-flex;align-items:center;gap:8px;background:#fff3e0;color:var(--primary);padding:6px 14px;border-radius:8px;font-size:13px;font-weight:500;margin-bottom:16px}
.area-active-badge a{color:#e74c3c;font-weight:700}

.service-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.service-card{background:#fff;border-radius:var(--radius);overflow:hidden;border:1.5px solid var(--border);transition:.3s;display:block}
.service-card:hover{border-color:var(--primary);transform:translateY(-4px);box-shadow:var(--shadow)}
.service-card img{width:100%;height:190px;object-fit:cover}
.service-card-body{padding:16px}
.service-card-body h3{font-size:15px;font-weight:600;margin-bottom:5px;color:var(--dark)}
.service-card-body p{color:var(--muted);font-size:13px;margin-bottom:5px}
.service-card-fee{font-weight:700;color:var(--primary);font-size:14px;margin-top:8px}

/* ==============================
   DETAIL PAGE
============================== */
.service-detail-page{}
.detail-hero{background:linear-gradient(135deg,var(--primary),var(--secondary));border-radius:16px;padding:35px;color:#fff;margin-bottom:25px}
.detail-hero-inner{display:flex;align-items:center;gap:25px;flex-wrap:wrap}
.detail-avatar{width:120px;height:120px;border-radius:50%;object-fit:cover;border:4px solid rgba(255,255,255,0.4);flex-shrink:0}
.detail-info h1{font-size:24px;margin-bottom:8px}
.detail-info p{font-size:13px;opacity:.9;margin-bottom:5px}
.detail-fee{margin-top:12px;font-size:20px;font-weight:700}
.detail-spec{font-size:15px!important;font-weight:600}
.call-details{font-size:14px}

.detail-body{display:grid;grid-template-columns:1fr 320px;gap:22px}
.detail-section{background:#fff;border-radius:var(--radius);padding:22px;margin-bottom:18px;border:1.5px solid var(--border)}
.detail-section h3{margin-bottom:12px;border-left:4px solid var(--primary);padding-left:10px;font-size:15px}
.detail-section p{color:#555;line-height:1.8;font-size:14px}

.booking-box{background:#fff;border-radius:var(--radius);padding:22px;border:1.5px solid var(--border);position:sticky;top:calc(var(--header-h) + 20px)}
.booking-box h3{margin-bottom:18px;font-size:16px}

/* ==============================
   FORMS
============================== */
.form-group{margin-bottom:15px}
.form-group label{display:block;font-size:13px;font-weight:500;margin-bottom:6px;color:#444}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:11px 13px;border:1.5px solid var(--border);border-radius:9px;font-size:13px;font-family:inherit;transition:.2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary)}
.form-group textarea{height:88px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.input-wrap{position:relative}
.input-wrap input{padding-right:42px}
.eye-icon{position:absolute;right:13px;top:50%;transform:translateY(-50%);color:#aaa;cursor:pointer;font-size:16px}
.btn-submit{width:100%;padding:13px;background:var(--primary);color:#fff;border:none;border-radius:9px;font-size:14px;font-weight:700;cursor:pointer;font-family:inherit;transition:.2s;margin-top:4px}
.btn-submit:hover{background:var(--primary-dark);transform:translateY(-1px)}
.checkbox-label{display:flex;align-items:center;gap:8px;font-size:13px;cursor:pointer;margin-bottom:12px}
.section-title{font-size:15px;font-weight:600;margin:18px 0 10px;color:var(--dark)}

/* ==============================
   AUTH
============================== */
.auth-page{min-height:70vh;display:flex;align-items:center;justify-content:center;padding:30px 20px}
.auth-card{background:#fff;padding:38px;border-radius:18px;width:100%;max-width:440px;box-shadow:0 15px 50px rgba(0,0,0,0.09);border:1.5px solid var(--border)}
.wide-card{max-width:740px}
.auth-header{text-align:center;margin-bottom:25px}
.auth-header h2{font-size:22px;font-weight:700;margin-bottom:5px;color:var(--dark)}
.auth-header p{color:var(--muted);font-size:13px}
.divider{text-align:center;position:relative;margin:18px 0}
.divider::before{content:'';position:absolute;left:0;top:50%;width:100%;height:1px;background:var(--border)}
.divider span{background:#fff;padding:0 12px;position:relative;color:#aaa;font-size:13px}
.btn-facebook{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:12px;background:#1877F2;color:#fff;border-radius:9px;font-size:14px;font-weight:600;transition:.2s}
.btn-facebook:hover{background:#0d65d9}
.auth-link{text-align:center;font-size:13px;margin-top:12px;color:#888}
.auth-link a{color:var(--primary);font-weight:600}

/* Packages */
.package-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin-top:12px}
.package-card{cursor:pointer}
.package-card input{display:none}
.pkg-inner{border:2px solid var(--border);border-radius:12px;padding:18px;text-align:center;transition:.2s}
.package-card input:checked + .pkg-inner{border-color:var(--primary);background:#fff8f0}
.pkg-name{font-size:16px;font-weight:700;margin-bottom:5px}
.pkg-price{font-size:20px;font-weight:800;color:var(--primary);margin-bottom:10px}
.pkg-features{list-style:none;text-align:left;font-size:12px;color:#555}
.pkg-features li{margin-bottom:5px}
.pkg-features i{color:var(--secondary);margin-right:5px}

/* Alerts */
.alert{padding:11px 16px;border-radius:9px;margin-bottom:16px;font-size:13px}
.alert-success{background:#d4edda;color:#155724}
.alert-error{background:#f8d7da;color:#721c24}
.alert-warning{background:#fff3cd;color:#856404}
.alert-info{background:#d1ecf1;color:#0c5460}

/* ==============================
   PENDING PAGE
============================== */
.pending-page{min-height:60vh;display:flex;align-items:center;justify-content:center}
.pending-card{text-align:center;padding:55px;background:#fff;border-radius:20px;box-shadow:var(--shadow);max-width:440px;border:1.5px solid var(--border)}
.pending-icon{font-size:60px;color:var(--primary);margin-bottom:18px}

/* ==============================
   ROOM CARD
============================== */
.room-card{display:flex;justify-content:space-between;align-items:flex-start;padding:16px;background:#f8f9fa;border-radius:10px;margin-bottom:10px;border:1.5px solid var(--border);gap:15px}
.room-info h4{font-size:14px;font-weight:600;margin-bottom:4px}
.room-info p{font-size:12px;color:var(--muted)}
.room-price{text-align:right;flex-shrink:0}
.room-price strong{display:block;font-size:15px;color:var(--primary);font-weight:700;margin-bottom:8px}

/* ==============================
   PRODUCT
============================== */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:18px}
.product-card{background:#fff;border-radius:var(--radius);overflow:hidden;border:1.5px solid var(--border);transition:.3s}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--primary)}
.product-img{position:relative}
.product-img img{width:100%;height:190px;object-fit:cover}
.out-of-stock{position:absolute;top:10px;right:10px;background:#e74c3c;color:#fff;padding:3px 9px;border-radius:20px;font-size:11px}
.product-info{padding:14px}
.product-info h3{font-size:13px;font-weight:600;margin-bottom:4px}
.product-info p{font-size:12px;color:var(--muted);margin-bottom:8px}
.product-footer{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.product-price{font-weight:700;color:var(--primary);font-size:15px}
.btn-cart{background:var(--primary);color:#fff;border:none;padding:8px 14px;border-radius:7px;font-size:12px;cursor:pointer;font-family:inherit;transition:.2s;display:flex;align-items:center;gap:5px}
.btn-cart:hover{background:var(--primary-dark)}

/* Social Share */
.share-bar{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:10px;padding-top:10px;border-top:1px solid var(--border)}
.share-bar span{font-size:11px;color:#aaa;font-weight:600;text-transform:uppercase;letter-spacing:.5px}
.share-btn{display:inline-flex;align-items:center;justify-content:center;gap:5px;padding:6px 12px;border-radius:7px;font-size:12px;font-weight:600;text-decoration:none;transition:.2s;white-space:nowrap}
.share-btn:hover{opacity:.85;transform:translateY(-1px)}
.share-fb{background:#1877F2;color:#fff}
.share-wa{background:#25D366;color:#fff}
.share-ig{background:linear-gradient(135deg,#833AB4,#FD1D1D,#F77737);color:#fff}
.share-copy{background:#f0f0f0;color:#555}
.share-copy:hover{background:#e0e0e0}

/* Group share button */
.group-share-btn{display:flex;align-items:center;gap:8px;padding:10px 18px;background:#fff;border:1.5px solid var(--border);border-radius:10px;font-size:13px;font-weight:600;color:#555;cursor:pointer;transition:.2s;font-family:inherit;width:100%}
.group-share-btn:hover{border-color:var(--primary);color:var(--primary)}

/* Share Modal */
.share-modal-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);z-index:9999;align-items:flex-end;justify-content:center}
.share-modal-overlay.open{display:flex}
.share-modal{background:#fff;border-radius:20px 20px 0 0;padding:25px;width:100%;max-width:480px;animation:slideUp .3s ease}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
.share-modal h3{font-size:16px;font-weight:700;margin-bottom:18px;display:flex;justify-content:space-between;align-items:center}
.share-modal-close{background:none;border:none;font-size:22px;cursor:pointer;color:#aaa;line-height:1}
.share-modal-btns{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:16px}
.share-modal-btn{display:flex;flex-direction:column;align-items:center;gap:6px;padding:14px 8px;border-radius:12px;font-size:12px;font-weight:600;text-decoration:none;transition:.2s;border:none;cursor:pointer;font-family:inherit}
.share-modal-btn i{font-size:22px}
.share-modal-btn:hover{transform:translateY(-2px);opacity:.9}
.smb-fb{background:#E8F0FE;color:#1877F2}
.smb-wa{background:#E8FBF0;color:#25D366}
.smb-ig{background:#FCE4EC;color:#E1306C}
.smb-tw{background:#E8F5FE;color:#1DA1F2}
.smb-link{background:#F5F5F5;color:#555}
.smb-more{background:#FFF3E0;color:#f7931e}
.share-copy-input{width:100%;padding:10px 14px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;font-family:inherit;margin-bottom:10px}

@media(max-width:600px){
  .product-footer{flex-direction:column;align-items:flex-start}
  .btn-cart{width:100%;justify-content:center;padding:10px}
}

/* ==============================
   CHAT
============================== */
.chat-wrapper{display:grid;grid-template-columns:260px 1fr;height:calc(100vh - var(--header-h) - 90px);border-radius:var(--radius);overflow:hidden;border:1.5px solid var(--border)}
.chat-sidebar{background:#fff;border-right:1px solid var(--border);overflow-y:auto}
.chat-sidebar h3{padding:16px 18px;border-bottom:1px solid var(--border);font-size:14px;font-weight:600}
.conv-item{display:flex;align-items:center;gap:12px;padding:13px 18px;border-bottom:1px solid #f8f8f8;cursor:pointer;transition:.2s}
.conv-item:hover,.conv-item.active{background:#fff8f0}
.conv-avatar{width:42px;height:42px;border-radius:50%;object-fit:cover;flex-shrink:0}
.conv-info h4{font-size:13px;margin-bottom:2px;font-weight:600}
.conv-info p{font-size:11px;color:#aaa}
.chat-area{display:flex;flex-direction:column;background:#f8f8f8}
.chat-topbar{background:#fff;padding:14px 20px;border-bottom:1px solid var(--border);font-weight:600;font-size:14px}
.chat-messages{flex:1;overflow-y:auto;padding:18px;display:flex;flex-direction:column;gap:12px}
.msg-bubble{max-width:65%;padding:11px 15px;border-radius:14px;font-size:13px;line-height:1.6}
.msg-in{background:#fff;align-self:flex-start;box-shadow:0 2px 8px rgba(0,0,0,0.05)}
.msg-out{background:var(--primary);color:#fff;align-self:flex-end}
.msg-time{font-size:11px;opacity:.55;margin-top:4px;text-align:right}
.chat-input{background:#fff;padding:14px 18px;display:flex;gap:10px;border-top:1px solid var(--border)}
.chat-input input{flex:1;padding:11px 16px;border:1.5px solid var(--border);border-radius:25px;font-size:13px;font-family:inherit;outline:none}
.chat-input input:focus{border-color:var(--primary)}
.chat-input button{background:var(--primary);color:#fff;border:none;padding:11px 18px;border-radius:25px;cursor:pointer;font-size:13px}

/* ==============================
   BADGE STATUS
============================== */
.badge-pending{background:#fff3cd;color:#856404;padding:3px 10px;border-radius:20px;font-size:12px;font-weight:600}
.badge-confirmed,.badge-approved{background:#d4edda;color:#155724;padding:3px 10px;border-radius:20px;font-size:12px;font-weight:600}
.badge-cancelled,.badge-rejected{background:#f8d7da;color:#721c24;padding:3px 10px;border-radius:20px;font-size:12px;font-weight:600}
.badge-completed{background:#e2e3e5;color:#383d41;padding:3px 10px;border-radius:20px;font-size:12px;font-weight:600}
.badge-processing{background:#d1ecf1;color:#0c5460;padding:3px 10px;border-radius:20px;font-size:12px;font-weight:600}

/* ==============================
   FOOTER
============================== */
.site-footer{background:#0f0f1a;color:#aaa;padding-top:60px;margin-top:30px;position:relative;border-top:3px solid transparent;background-image:linear-gradient(#0f0f1a,#0f0f1a),linear-gradient(90deg,var(--primary),#ffb347,var(--primary));background-origin:border-box;background-clip:padding-box,border-box}
.footer-inner{max-width:1400px;margin:auto;padding:0 25px 45px;display:grid;grid-template-columns:1.4fr 1.6fr 1fr 1fr;gap:40px}
.footer-logo{font-size:24px;font-weight:800;margin-bottom:14px}
.footer-logo .logo-mega{color:var(--primary)}.footer-logo .logo-bazar{color:#fff}
.site-footer p{font-size:13.5px;line-height:1.85;color:#8a8a9a}
.footer-col h4{color:#fff;margin-bottom:18px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;position:relative;padding-bottom:10px}
.footer-col h4::after{content:'';position:absolute;left:0;bottom:0;width:28px;height:2px;background:var(--primary);border-radius:2px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:11px}
.footer-col ul li a{color:#888;font-size:13.5px;transition:.2s;display:inline-flex;align-items:center;gap:6px}
.footer-col ul li a::before{content:'';width:0;height:1px;background:var(--primary);transition:.2s;display:inline-block}
.footer-col ul li a:hover{color:#fff;transform:translateX(2px)}
.footer-col ul li a:hover::before{width:8px}
.footer-col:nth-child(2) ul{column-count:2;column-gap:20px}
.footer-col:nth-child(2) ul li{break-inside:avoid;margin-bottom:11px}
.footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;font-size:13.5px;color:#8a8a9a;line-height:1.6}
.footer-contact-item i{color:var(--primary);width:16px;margin-top:2px;flex-shrink:0}
.social-links{display:flex;gap:10px;margin-top:18px}
.social-links a{width:38px;height:38px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#aaa;font-size:15px;transition:.2s}
.social-links a:hover{background:var(--primary);border-color:var(--primary);color:#fff;transform:translateY(-2px)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);text-align:center;padding:20px;font-size:12.5px;color:#666;background:rgba(0,0,0,.15)}

/* ==============================
   RESPONSIVE
============================== */
@media(max-width:1100px){
  .left-sidebar{width:210px}
}
@media(max-width:900px){
  /* Layout */
  .page-wrapper{flex-direction:column;padding:12px}
  .main-content{width:100%;min-width:0}

  /* Hide sidebar on mobile — use hamburger menu instead */
  .left-sidebar{display:none}
  .left-sidebar.open{
    display:flex;flex-direction:column;
    width:100%;position:static;
    max-height:none;gap:12px;
    margin-bottom:15px;
  }

  /* Header */
  .main-nav{display:none}
  .menu-toggle{display:block}
  .header-actions .btn-provider{display:none}
  .header-actions .btn-register{display:none}

  /* Content */
  .detail-body{grid-template-columns:1fr}
  .booking-box{position:static}
  .form-row{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr 1fr}
  .steps-grid::before{display:none}
  .footer-inner{grid-template-columns:1fr 1fr}
  .hero-content h1{font-size:26px}
  .chat-wrapper{grid-template-columns:1fr;height:auto}
  .chat-sidebar{display:none}

  /* Home grid */
  .home-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .category-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:600px){
  .page-wrapper{padding:10px}
  .hero-content h1{font-size:22px}
  .hero-stats{gap:15px}
  .hero-stat strong{font-size:18px}
  .footer-inner{grid-template-columns:1fr}
  .home-grid{grid-template-columns:1fr 1fr}
  .product-grid{grid-template-columns:1fr 1fr}
  .category-grid{grid-template-columns:repeat(3,1fr)}
  .smart-search-row{grid-template-columns:1fr}
  .smart-search-row-2{grid-template-columns:1fr}
  .smart-search-btn{width:100%;justify-content:center}
  .hero-section{padding:35px 20px}
  .categories-section{padding:25px 15px}
  .how-section{padding:25px 15px}
  .home-section{padding:20px 15px}
}

/* Mobile sidebar toggle button */
.mobile-sidebar-toggle{
  display:none;
  width:100%;
  padding:11px 18px;
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  color:#555;
  cursor:pointer;
  font-family:'Poppins',sans-serif;
  text-align:left;
  margin-bottom:12px;
  align-items:center;
  gap:10px;
}
@media(max-width:900px){
  .mobile-sidebar-toggle{display:flex}
}


/* ==============================
   MOBILE HEADER FIX
============================== */
@media(max-width:768px){
  :root { --header-h: 58px; }

  .header-inner{ padding:0 12px; gap:8px; }

  /* Hide nav links on mobile */
  .main-nav{ display:none; }

  /* Show hamburger */
  .menu-toggle{ display:block; flex-shrink:0; }

  /* Logo smaller */
  .logo{ font-size:20px; }

  /* Lang switcher compact */
  .lang-switcher{
    padding:4px 8px;
    font-size:12px;
    gap:4px;
  }

  /* Hide register & provider buttons */
  .btn-provider{ display:none !important; }

  /* Smaller buttons */
  .btn-outline{ padding:6px 12px; font-size:12px; }
  .btn-primary{ padding:6px 12px; font-size:12px; }

  /* No overflow */
  body{ overflow-x:hidden; }
  .header{ overflow:visible; }
}

@media(max-width:400px){
  .logo{ font-size:18px; }
  .btn-outline{ display:none; }
  .lang-switcher{ padding:4px 6px; font-size:11px; }
}

/* ==============================
   BANNER AD SYSTEM
============================== */
.ad-wrapper {
    position: relative;
    margin: 16px 0;
    border-radius: 10px;
    overflow: visible;
}

/* Position-specific styles */
.ad-position-top           { margin: 0 0 20px; }
.ad-position-bottom        { margin: 20px 0 0; }
.ad-position-sidebar       { margin: 0 0 18px; }
.ad-position-content_top   { margin: 0 0 20px; }
.ad-position-content_middle{ margin: 20px 0; }
.ad-position-content_bottom{ margin: 20px 0 0; }

/* Scheduled ad — glowing border */
.ad-scheduled {
    box-shadow: 0 0 0 2px rgba(247,147,30,0.4);
}

/* Default ad */
.ad-default {
    opacity: 0.95;
}

/* Ad content */
.ad-content {
    cursor: pointer;
    transition: opacity 0.2s;
}
.ad-content:hover { opacity: 0.95; }

/* Small "Ad" label */
.ad-label-bottom {
    position: absolute;
    bottom: -18px;
    right: 0;
    font-size: 10px;
    color: #bbb;
    background: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    line-height: 1.6;
    pointer-events: none;
}

/* ==============================
   ADMIN PREVIEW MODE
============================== */
.ad-preview-label {
    background: #1a1a2e;
    color: #fff;
    padding: 7px 14px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
}

.ad-preview-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    white-space: nowrap;
}

.badge-scheduled { background: #27ae60; color: #fff; }
.badge-default   { background: #888;    color: #fff; }

.ad-preview-info {
    color: rgba(255,255,255,0.65);
    font-size: 11px;
}

/* Empty slot (admin preview only) */
.ad-empty {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
}
.ad-empty-slot {
    padding: 25px;
    text-align: center;
    color: #bbb;
}
.ad-empty-slot span  { font-size: 28px; display: block; margin-bottom: 8px; }
.ad-empty-slot p     { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: #888; }
.ad-empty-slot small { font-size: 12px; display: block; margin-bottom:12px; }
.ad-empty-slot a     {
    display: inline-block; padding: 7px 18px;
    background: #f7931e; color: #fff; border-radius: 8px;
    font-size: 12px; font-weight: 600; text-decoration: none;
}

/* Highlighted positions (admin preview toggle) */
.ad-highlight-on .ad-wrapper {
    outline: 3px solid #f7931e;
    outline-offset: 4px;
    border-radius: 10px;
}
.ad-highlight-on .ad-position-top    { outline-color: #e74c3c; }
.ad-highlight-on .ad-position-sidebar{ outline-color: #3498db; }
.ad-highlight-on .ad-position-bottom { outline-color: #27ae60; }
.ad-highlight-on .ad-position-content_middle { outline-color: #9b59b6; }

/* Floating admin toolbar for ad preview */
.ad-admin-toolbar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 9999;
}
.ad-admin-toolbar a {
    color: #f7931e;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 12px;
    background: rgba(247,147,30,0.15);
    border-radius: 6px;
}
.ad-admin-toolbar button {
    background: #f7931e;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   SMART SEARCH (Hero)
============================== */
.hero-smart-search {
    max-width:720px;
    margin:0 auto 32px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:18px;
    padding:14px;
    backdrop-filter:blur(12px);
}

.smart-search-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:10px;
}

.smart-search-row-2 {
    grid-template-columns:1fr auto;
    margin-bottom:0;
    align-items:flex-end;
}

.smart-search-field {
    display:flex;
    flex-direction:column;
    gap:6px;
}

.smart-search-keyword { grid-column: 1; }

.smart-search-field label {
    font-size:11px;
    font-weight:600;
    color:rgba(255,255,255,0.6);
    text-transform:uppercase;
    letter-spacing:.5px;
    padding-left:4px;
}

.smart-search-field input,
.smart-search-field select {
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:10px;
    color:#fff;
    font-size:14px;
    padding:11px 14px;
    font-family:'Poppins',sans-serif;
    transition:.2s;
    width:100%;
}

.smart-search-field select option {
    background:#1a1a2e;
    color:#fff;
}

.smart-search-field input::placeholder { color:rgba(255,255,255,0.4); }
.smart-search-field input:focus,
.smart-search-field select:focus {
    outline:none;
    border-color:var(--primary);
    background:rgba(255,255,255,0.18);
}

/* Divider between rows */
.smart-search-divider {
    height:1px;
    background:rgba(255,255,255,0.1);
    margin:6px 0;
}

.smart-search-btn {
    background:var(--primary);
    color:#fff;
    border:none;
    padding:12px 26px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
    transition:.2s;
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    height:fit-content;
}
.smart-search-btn:hover { background:var(--primary-dark); transform:translateY(-1px); }

/* District dropdown */
#district-dropdown::-webkit-scrollbar { width:4px; }
#district-dropdown::-webkit-scrollbar-thumb { background:#f7931e; border-radius:4px; }

@media(max-width:700px) {
    .smart-search-row { grid-template-columns:1fr; }
    .smart-search-row-2 { grid-template-columns:1fr; }
    .smart-search-btn { width:100%; justify-content:center; }
}

/* ===== FORM SECTION TITLE ===== */
.form-section-title {
    font-size:13px;
    font-weight:700;
    color:#1a1a2e;
    margin:20px 0 14px;
    padding:10px 14px;
    background:#fff8f0;
    border-left:4px solid #f7931e;
    border-radius:0 8px 8px 0;
    display:flex;
    align-items:center;
    gap:8px;
}
.form-section-title i { color:#f7931e; }

/* ==============================
   NEW CATEGORY CARDS WITH ICONS
============================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 14px;
}
.cat-card-new {
    background: #fff;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: all .25s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.cat-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cat-bg);
    opacity: 0;
    transition: opacity .25s;
}
.cat-card-new:hover {
    border-color: var(--cat-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.cat-card-new:hover::before { opacity: 1; }

.cat-icon-new {
    width: 58px;
    height: 58px;
    background: var(--cat-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 12px;
    transition: all .25s;
    border: 2px solid transparent;
    position: relative;
}
.cat-card-new:hover .cat-icon-new {
    background: var(--cat-color);
    border-color: var(--cat-color);
    transform: scale(1.1) rotate(-5deg);
}
.cat-card-new h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    position: relative;
    line-height: 1.3;
}
.cat-card-new p {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.4;
    position: relative;
}
.cat-arrow {
    display: inline-block;
    font-size: 13px;
    color: var(--cat-color);
    margin-top: 8px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-5px);
    transition: all .25s;
    position: relative;
}
.cat-card-new:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==============================
   HOME SECTION (Latest Listings)
============================== */
.home-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 22px;
    border: 1.5px solid var(--border);
}
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.home-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: .3s;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
}
.home-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(247,147,30,0.1);
}
.home-card-img {
    height: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.home-card:hover .home-card-img img { transform: scale(1.05); }
.home-card-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: rgba(26,26,46,0.85);
    color: #fff;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}
.home-card-loc {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(247,147,30,0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}
.home-card-body { padding: 12px; }
.home-card-body h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.home-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}
.home-card-tags span {
    background: #f0f4ff;
    color: #3563e9;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 10px;
}
.home-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}
.home-card-view {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* ==============================
   YOUTUBE VIDEO EMBED
============================== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    border-radius: 12px;
}
.video-section {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    border: 1.5px solid #e8e8e8;
    margin-top: 20px;
}
.video-section h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.video-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #f7931e;
    border-radius: 2px;
}
.video-input-wrap {
    position: relative;
}
.video-input-wrap input {
    padding-left: 40px !important;
}
.video-input-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff0000;
    font-size: 16px;
}
.video-preview-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}
.video-preview-thumb img {
    width: 80px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

/* ==============================
   SHARE BAR (Service Pages)
============================== */
.share-bar-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    margin: 20px 0;
}
.share-bar-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: 4px;
    white-space: nowrap;
}
@media(max-width:600px){
    .share-bar-section { gap: 6px; padding: 12px; }
    .share-btn { padding: 6px 10px; font-size: 11px; }
}

/* ==============================
   SIDEBAR MEGA STORE SECTION
============================== */
.sidebar-store-section {
    border-top: 2px solid #f7931e;
    margin-top: 6px;
    padding-top: 12px;
}
.sidebar-store-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 600;
    background: #fff8f0;
    border: 1.5px solid #f7931e;
    margin-bottom: 10px;
    transition: .2s;
}
.sidebar-store-link:hover,
.sidebar-store-link.active {
    background: #f7931e;
    color: #fff;
}
.sidebar-store-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sidebar-store-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    transition: .2s;
}
.sidebar-store-item img {
    width: 100%;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1.5px solid #e8e8e8;
}
.sidebar-store-item:hover img {
    border-color: #f7931e;
}
.sidebar-store-item:hover span {
    color: #f7931e;
}
/* Dropdown fix */
/* Tag / pill list — used across model, hospital, hotel, parlor, eventstaff, builder, rent-car detail pages */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 6px 0;
}
.tag {
    display: inline-block;
    background: #f0f4ff;
    color: #4a6cf7;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Photo gallery grid — used on model, eventstaff, and other portfolio galleries */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
.photo-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}
.photo-gallery img:hover {
    transform: scale(1.03);
}

/* Homepage per-service rows */
.home-service-row { margin-bottom: 38px; }
.home-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f0f0f0;
    position: relative;
}
.home-row-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1.5px;
    width: 52px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}
.home-row-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-row-more {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    background: #fff8f0;
    border: 1.5px solid #ffe3c2;
    padding: 6px 14px;
    border-radius: 20px;
    transition: .2s;
}
.home-row-more:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.home-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media(max-width:600px){
  .home-row-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-row-grid .home-card:nth-child(n+3) { display: none; }
  .home-row-head h3 { font-size: 15px; }
}
